有没有办法通过 Powershell 获取远程计算机上所有本地用户帐户的列表?
最佳答案
您可以通过 WMI 查询获得此信息。
function Get-LocalUser ($Computername = $env:COMPUTERNAME) {
Get-WmiObject -Query "Select * from Win32_UserAccount Where LocalAccount = 'True'" -ComputerName $ComputerName |
Select-Object -ExpandProperty Name
}
Get-LocalUser -ComputerName "TestPC1"
关于windows - 如何通过Powershell获取所有远程计算机的用户名?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22740863/