C windows system32 config systemprofile appdata roaming

Appdata is used for per user configuration and data stores, to achieve a degree of user isolation. The system profile is not a template, it is the profile directory for the system user account, which is the user running the root IIS process host instance (note w3wp processes are run under the identity associated with an app pool not the root IIS process, and are not run from within a service host process).

check out this example using PSEXEC to login as system. just as %appdata% resolves to the logged in users ~\AppData\ directory, so to does it work for the System account:

    Windows PowerShell
    Copyright (C) 2009 Microsoft Corporation. All rights reserved.

    PS C:\Windows\system32> psexec -s \\localhost cmd

    PsExec v1.98 - Execute processes remotely
    Copyright (C) 2001-2010 Mark Russinovich
    Sysinternals - www.sysinternals.com


    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation.  All rights reserved.

    C:\Windows\system32>whoami
    nt authority\system

    C:\Windows\system32>cd %appdata%

    C:\Windows\System32\config\systemprofile\AppData\Roaming>


Я использую сервис, который хранит данные на диске. Служба работает как «локальная системная учетная запись».

Где хранятся данные для этого пользователя системы?

Я думаю о, C:\Documents and Settings\Default Userно я не уверен в этом.

Кто-нибудь может это подтвердить?

Ответы:


Данные, которые вы ищете, по умолчанию не должны находиться в папке «C: \ Documents and Settings \ Default User». Это местоположение профиля пользователя по умолчанию, который является шаблоном для новых профилей пользователей. Его единственная функция — копировать в новую папку для использования в качестве профиля пользователя, когда пользователь впервые заходит на компьютер.

Если служба следует указаниям Microsoft, она будет хранить данные в папке данных приложения (% APPDATA%) или в локальной папке данных приложения (% LOCALAPPDATA% в Windows Vista и более поздних версиях). Он не должен использовать папки «Мои документы» или «Документы», но вы можете проверить их там.

В типичной установке Windows XP или Windows Server 2003 проверьте следующие данные приложений для программ, работающих в локальной системе (NT AUTHORITY \ SYSTEM):

  • C: \ Windows \ system32 \ config \ systemprofile \ Application Data \ Vendor \ Program
  • C: \ Windows \ system32 \ config \ systemprofile \ Local Settings \ Application Data \ Vendor \ Program
  • C: \ Windows \ system32 \ config \ systemprofile \ Мои документы

В типичной установке Windows Vista и более поздних версий проверьте следующие данные приложений для программ, работающих как локальная система (NT AUTHORITY \ SYSTEM):

  • C: \ Windows \ system32 \ config \ systemprofile \ AppData \ Roaming \ Vendor \ Program
  • C: \ Windows \ system32 \ config \ systemprofile \ AppData \ Local \ Vendor \ Program
  • C: \ Windows \ system32 \ config \ systemprofile \ AppData \ LocalLow \ Vendor \ Program
  • C: \ Windows \ System32 \ Config \ systemprofile \ Documents

Конечно, замените подходящее название поставщика и название программы на Vendor и Program .

[Правка — для bricelam] Для 32-битных процессов, работающих в 64-битных окнах, это будет в SysWOW64 .

  • C: \ Windows \ SysWOW64 \ Config \ systemprofile \ AppData



Пункт назначения меняется во времени. В Windows 10:

  • %systemroot%\ServiceProfiles

Например:

  • C:\Windows\ServiceProfiles\LocalService
  • C:\Windows\ServiceProfiles\NetworkService


Зайдите в Sysinternals и загрузите procmon. Вам нужно будет знать имя исполняемого файла, с которым работает служба. Затем вы можете использовать фильтр в procmon, чтобы перечислить только те действия, которые генерирует это приложение.

Теперь вы сможете просмотреть список и определить, какой файл использует это приложение (ПРИМЕЧАНИЕ. После нескольких минут регистрации вы можете использовать меню файлов, чтобы остановить мониторинг)

Весь комплект Sysinternal можно загрузить в виде одного zip-файла, и вы можете найти в нем другие утилиты, которые могут оказаться полезными.


Я использовал службу, работающую в качестве учетной записи «Локальная система», а пользовательские данные хранятся в:

c:\Documents and Settings\LocalService

Это скрытая папка, и мне понадобилось время, чтобы найти ее. Надеюсь это поможет.


Из реального процесса, работающего как SYSTEM ( S-1-5-18).

  • GetUserName :SYSTEM
  • Sid пользователя :S-1-5-18
  • GetUserNameEx (NameFullyQualifiedDN) :CN=HYDROGEN,CN=Computers,DC=stackoverflow,DC=com
  • GetUserNameEx (NameSamCompatible) :STACKOVERFLOW\HYDROGEN$
  • GetUserNameEx (NameDisplay) :HYDROGEN$
  • GetUserNameEx (NameUniqueId) :{b413b030-8e9a-49d2-9157-20afd58792dd}
  • GetUserNameEx (NameCanonical) :stackoverflow.com/Computers/HYDROGEN
  • GetUserNameEx (NameUserPrincipal) :USER-PC02$@stackoverflow.com
  • GetUserNameEx (NameCanonicalEx) :stackoverflow.com/ComputersHYDROGEN
  • GetUserNameEx (NameServicePrincipal) : нет данных
  • GetTempPath :C:\WINDOWS\TEMP\
  • CSIDL_APPDATA :C:\WINDOWS\system32\config\systemprofile\AppData\Roaming
  • CSIDL_LOCAL_APPDATA :C:\WINDOWS\system32\config\systemprofile\AppData\Local
  • CSIDL_COMMON_APPDATA :C:\ProgramData
  • CSIDL_PROFILE :C:\WINDOWS\system32\config\systemprofile
  • CSIDL_PERSONAL : нет

Местная служба

  • GetUserName :LOCAL SERVICE
  • Sid пользователя :S-1-5-1
  • GetUserNameEx (NameFullyQualifiedDN) : нет данных
  • GetUserNameEx (NameSamCompatible) :NT AUTHORITY\LOCAL SERVICE
  • GetUserNameEx (NameDisplay) : н / д
  • GetUserNameEx (NameUniqueId) : нет данных
  • GetUserNameEx (NameCanonical) : нет данных
  • GetUserNameEx (NameUserPrincipal) : н / п
  • GetUserNameEx (NameCanonicalEx) : н / д
  • GetUserNameEx (NameServicePrincipal) : нет данных
  • GetTempPath :C:\WINDOWS\SERVIC~3\LOCALS~1\AppData\Local\Temp\
  • CSIDL_APPDATA :C:\WINDOWS\ServiceProfiles\LocalService\AppData\Roaming
  • CSIDL_LOCAL_APPDATA :C:\WINDOWS\ServiceProfiles\LocalService\AppData\Local
  • CSIDL_COMMON_APPDATA :C:\ProgramData
  • CSIDL_PROFILE :C:\WINDOWS\ServiceProfiles\LocalService
  • CSIDL_PERSONAL :C:\WINDOWS\ServiceProfiles\LocalService\Documents

Сетевой сервис

  • GetUserName : «HYDROGEN $`
  • Пользовательский Sid : S-1-5-2`
  • GetUserNameEx (NameFullyQualifiedDN) :CN=HYDROGEN,CN=Computers,DC=avatopia,DC=com
  • GetUserNameEx (NameSamCompatible) :AVATOPIA\HYDROGEN$
  • GetUserNameEx (NameDisplay) :HYDROGEN$
  • GetUserNameEx (NameUniqueId) :{b413b030-8e9a-49d2-9157-20afd58792dd}
  • GetUserNameEx (NameCanonical) :stackoverflow.com/Computers/HYDROGEN
  • GetUserNameEx (NameUserPrincipal) :USER-PC02$@stackoverflow.com
  • GetUserNameEx (NameCanonicalEx) :stackoverflow.com/ComputersHYDROGEN
  • GetUserNameEx (NameServicePrincipal) : нет данных
  • GetTempPath :C:\WINDOWS\SERVIC~3\NETWOR~1\AppData\Local\Temp\
  • CSIDL_APPDATA :C:\WINDOWS\ServiceProfiles\NetworkService\AppData\Roaming
  • CSIDL_LOCAL_APPDATA :C:\WINDOWS\ServiceProfiles\NetworkService\AppData\Local
  • CSIDL_COMMON_APPDATA :C:\ProgramData
  • CSIDL_PROFILE :C:\WINDOWS\ServiceProfiles\NetworkService
  • CSIDL_PERSONAL :C:\WINDOWS\ServiceProfiles\NetworkService\Documents


На XP есть «Профиль системы», расположенный в C: \ WINDOWS \ system32 \ config \ systemprofile

Я думал, что именно там находится локальная система действий. Учетные записи сетевых служб и локальных служб имеют скрытые профили в папке «Документы и настройки».

Папка пользователя по умолчанию обычно используется в качестве базовой папки, из которой создаются новые учетные записи пользователей. Так что, если новый пользователь должен был войти в систему в первый раз. Их настройки будут изначально скопированы из профиля пользователя по умолчанию.

1 Answer. 1. The %systemroot%\System32\config\systemprofile is the %USERPROFILE% equivalent for the system user nt authority\system : e.g. if you run command line as the system user, cd %AppData% will change to directory C:\Windows\System32\config\systemprofile\AppData\Roaming .

What is Systemprofile folder?

On Windows 7 the system account’s profile folder lives in “.. \System32\config\systemprofile”. It is also redirected when accessed from a 32-bit process. This has a direct affect on packages that are run under the system account (many software distribution systems), but perform operations on the user profile.

How do you fix C :\ Windows system32 Config Systemprofile Desktop is unavailable?

Fix 1: Restart your computer You are likely to run into the “C:\Windows\system32\config\systemprofile\Desktop is unavailable” error if the Windows update is not successfully installed on your PC. In this case, try restarting your computer a few times to complete the update installation.

How do I open system32 config?

All replies

  1. Run -> type C:\Windows\System32\config\systemprofile\AppData\Roaming {press Enter}
  2. Browse through the folder Winkey + e – > c: -> Windows -> system32 -> config -> systemprofile -> Appdata -> Roaming.

How do I restore my system profile?

Method 1: Restore the Default Path

  1. Press the Win + E keys at the same time on your keyboard to open Windows Explorer.
  2. Click This PC to expand the list, right-click Desktop and choose Properties.
  3. Go to the Location tab, click the Restore Default button.
  4. Click Apply and then OK to save the change.

How do I fix my Desktop not accessible?

Access is denied.

  1. Desktop is not accessible.
  2. Running CMD as an administrator.
  3. Choose the option at the bottom for a non-Microsoft account.
  4. How to successfully restart ‘explorer.exe’
  5. Choose Upgrade This PC Now for an in-place upgrade.
  6. Opening Local Disk inside Thic PC.
  7. Reveal and open the Default folder.

How do I find System Profile?

How do I generate a Windows system profile?…

  1. Press Windows Key+Q and, type System Information in the search bar.
  2. When System Information appears in the search results, press Enter/Return.
  3. Click File > Save and save your system profile.

How do I fix Windows System32 Config system?

Fix #2: Check the disk file system with CHKDSK utility

  1. Insert the Windows XP installation CD.
  2. Restart the computer and boot from the CD.
  3. Press any key to boot from the CD.
  4. Press R when the Windows Options menu is loaded to access Repair Console.
  5. Enter the Administrator password.

Does System Restore recover user profiles?

Method 1: Use System Restore Point Usually, you might have a system restore point created before the user profile deletion. If you do, use the system restore point to recover the user profiles, follow the steps: Select Restore system files and settings from a restore point in the results.

The data you are looking should not, by default, be located in «C:\Documents and Settings\Default User». That is the location of the default user profile, which is the template for new user profiles. Its only function is to be copied to a new folder for use as a user profile when a user logs onto the computer for the first time.

If the service is following Microsoft’s guidelines, it will be storing data in
the application data folder (%APPDATA%) or the local application data folder (%LOCALAPPDATA% on Windows Vista and later). It should not use the My Documents or Documents folders, but you might want to check there as well.

On a typical installation of Windows XP or Windows Server 2003, check the following locations for application data for programs running as Local System (NT AUTHORITY\SYSTEM):

  • C:\Windows\system32\config\systemprofile\Application Data\Vendor\Program
  • C:\Windows\system32\config\systemprofile\Local Settings\Application Data\Vendor\Program
  • C:\Windows\system32\config\systemprofile\My Documents

On a typical installation of Windows Vista and later versions, check the following locations for application data for programs running as Local System (NT AUTHORITY\SYSTEM):

  • C:\Windows\system32\config\systemprofile\AppData\Roaming\Vendor\Program
  • C:\Windows\system32\config\systemprofile\AppData\Local\Vendor\Program
  • C:\Windows\system32\config\systemprofile\AppData\LocalLow\Vendor\Program
  • C:\Windows\system32\config\systemprofile\Documents

Of course, substitute the appropriate vendor name and program name for Vendor and Program.

[Edit — for bricelam]
For 32 bit processes running on 64 bit windows, it would be in SysWOW64.

  • C:\Windows\SysWOW64\config\systemprofile\AppData

RRS feed

  • Remove From My Forums
  • Question

  • Hi,

    When I am trying to open any file in any browser in ‘C:\Windows\System32\config\systemprofile\AppData\Roaming’, the windows file cant open message is shown.

    I am using Windows 2012.

    This is also seen in Windows 8.

    Any ideas guys. Please Help

    • Moved by
      Santosh Bhandarkar
      Thursday, November 1, 2012 4:36 AM
      WS 2012 related (From:General)

All replies

  • I could open ‘C:\Windows\System32\config\systemprofile\AppData\Roaming‘ without issues ! on WS 2012.

    I tried 3 methods and all worked

    1. Run -> type
    C:\Windows\System32\config\systemprofile\AppData\Roaming
    {press Enter}

    2. Browse through the folder  Winkey + e — > c: -> Windows -> system32 -> config -> systemprofile -> Appdata ->
    Roaming 

    3. Open up IE 10, copy C:\Windows\System32\config\systemprofile\AppData\Roaming
    and paste it in address bar, {hit enter}

    Thanks


    Regards, Santosh

    I do not represent the organisation I work for, all the opinions expressed here are my own.

    This posting is provided «AS IS» with no warranties or guarantees and confers no rights.

    Whenever you see a helpful reply, click on Alternate Text Vote As Helpful & click on
    Alternate Text Mark As Answer if a post answers your question.

  • Hi Santosh,

    Actually there is a db file in C:\Windows\System32\config\systemprofile\AppData\Roaming\database
    folder. I can open it from Windows Explorer. However, when I am trying to open it from any browser plugin, the db file is not shown in Roaming i.e. the database folder in Roaming is not shown.

    Thanks,

    Bechakm7

  • Hi Santosh,

    Actually there is a db file in C:\Windows\System32\config\systemprofile\AppData\Roaming\database
    folder. I can open it from Windows Explorer. However, when I am trying to open it from any browser plugin, the db file is not shown in Roaming i.e. the database folder in Roaming is not shown.

    Thanks,

    Bechakm7

    :-))

    Could be a permission issue !

    Give Everyone read permission (NTFS Folder security permissions) on the  C:\Windows\System32\config\systemprofile\AppData\Roaming\database
    folder and see if that makes any difference.

    Or it could be a bug in the browser plugin which is being used. Did you check with vendor or developer if that plugin supports WS 2012 or Win 8 ?

    Thanks


    Regards, Santosh

    I do not represent the organisation I work for, all the opinions expressed here are my own.

    This posting is provided «AS IS» with no warranties or guarantees and confers no rights.

    Whenever you see a helpful reply, click on Alternate Text Vote As Helpful & click on
    Alternate Text Mark As Answer if a post answers your question.

  • The databse folder the db file has permission. Also the plugin is just trying to open the file. It is a firefox/ chrome plugin.

    Even if I dont use plugin and try to open it from browser like IE, FF and chrome the files are just not shown. I have even tried running the browsers from RUN AS ADMINISTRATOR. Still the same issue. 

  • C windows installer можно ли удалить содержимое
  • C windows system32 config systemprofile appdata local tiledatalayer database edb log
  • C windows system32 cleanmgr exe
  • C windows installer inprogressinstallinfo ipi 2147287037
  • C windows system32 config sam