Powershell从注册表获取用户配置


支持所有版本。
要获得本地用户的配置文件,可以使用这个脚本:

$path = 'Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList\*'

Get-ItemProperty -Path $path |
  Select-Object -Property PSChildName, ProfileImagePath

这将获得ProfileList下所有的键值并筛选出其中的SID和相应配置路径。

PSChildName                              ProfileImagePath                        
-----------                              ----------------                        
S-1-5-18                                 C:\WINDOWS\system32\config\systemprofile
S-1-5-19                                 C:\Windows\ServiceProfiles\LocalService 
S-1-5-20                                 C:\Windows\ServiceProfiles\NetworkSer...
S-1-5-21-1907506615-3936657230-268413... C:\Users\Tobias                         
S-1-5-80-3880006512-4290199581-164872... C:\Users\MSSQL$SQLEXPRESS                
 

原文地址: Read User Profiles from Registry

本文链接: https://www.pstips.net/read-user-profiles-from-registry.html
请尊重原作者和编辑的辛勤劳动,欢迎转载,并注明出处!

发表评论

您的电子邮箱地址不会被公开。 必填项已用 * 标注