积极答复者
有办法查看win 7的SID号吗?

问题
答案
-
查看方法:在命令提示符里输入whoami /user
修改的话,我刚才用NEWSID测试了,不行。
尝试用sysprep.exe /oobe看看吧。
兴趣是老师,成功需坚持- 已标记为答案 Anfield.KOP 2010年4月16日 5:35
全部回复
-
查看方法:在命令提示符里输入whoami /user
修改的话,我刚才用NEWSID测试了,不行。
尝试用sysprep.exe /oobe看看吧。
兴趣是老师,成功需坚持- 已标记为答案 Anfield.KOP 2010年4月16日 5:35
-
通過 PowerShell 查看用戶 SID.
$objUser = New-Object System.Security.Principal.NTAccount('要查詢用戶名')
$strSID = $objUser.Translate([System.Security.Principal.SecurityIdentifier])
$strSID.Value上述三段代碼引用至:
http://www.microsoft.com/technet/scriptcenter/resources/pstips/feb08/pstip0201.mspx修改的話, 可以嘗試通過 NewSID.
NewSID v4.10
http://technet.microsoft.com/en-us/sysinternals/bb897418.aspx
Folding@Home -
通過 PowerShell 查看用戶 SID.
$objUser = New-Object System.Security.Principal.NTAccount('要查詢用戶名')
$strSID = $objUser.Translate([System.Security.Principal.SecurityIdentifier])
$strSID.Value上述三段代碼引用至:
http://www.microsoft.com/technet/scriptcenter/resources/pstips/feb08/pstip0201.mspx修改的話, 可以嘗試通過 NewSID.
NewSID v4.10
http://technet.microsoft.com/en-us/sysinternals/bb897418.aspx
Folding@Home
正如huangns所说我也试了下NewSID的确没成功。但仍然非常感谢!
在IT的路上,You'll never walk alone