我的 powershell 脚本确定远程 Windows 7 计算机的当前用户并将输出
userId=DOMAIN\username
如果当前没有用户登录,脚本将输出
userId=No One Currently Logged In
如果脚本无法访问远程计算机的 WMI,脚本会输出
userId=CannotConnectToWMI
我在运行 WBEMTEST 的同时运行了该脚本,以确认是否可以在远程计算机上访问 WMI。
我真的很困惑,因为昨天下午,我可以在几台远程机器上访问 WMI,而今天早上,我不能。下面是一张图表:
为什么会这样?如何确保 WMI 始终可访问?我昨天发布了另一个关于 WMI 的问题,https://stackoverflow.com/questions/19409747/wbemtest-to-windows-7-says-the-rpc-server-is-unavailable
请帮忙
@vonPryz
该脚本具有测试连接。下面是整个脚本
$line_array = @()
$multi_array = @()
[hashtable]$my_hash = @{}
$Sender_IP = $NULL
$bios = $NULL
$wmi = $NULL
foreach ($i in $args){
$line_array+= $i.split(" ")
}
foreach ($j in $line_array){
$multi_array += ,@($j.split("="))
}
foreach ($k in $multi_array){
$my_hash.add($k[0],$k[1])
}
$Sender_IP = $my_hash.Get_Item("sender-ip")
try{
Test-Connection $Sender_IP -count 1 -ErrorAction Stop | out-null
}
catch [Exception]
{
$userId = "userId=CannotPing"
return $userId
}
try{
$wmi = gwmi -class win32_computerSystem -computer $Sender_IP -ErrorAction Stop
}
catch [Exception]{
$userId = "userId=CannotConnectToWMI"
return $userId
}
try{
$userId = ($wmi).username
}
catch [Exception]{
$userId = "userId=CannotFindLastUserLoggedOn"
return $userId
}
if ($userId -ne $NULL){
$userID = "userId="+$userId
return $userId
}
elseif ($userID -eq $NULL)
{
$userId = "userId=No One Currently Logged In"
return $userId
}
编辑
我正在远程访问这些计算机以检查 DCOM 权限,然后我意识到其中一台变成了 Windows XP。似乎IP地址正在切换到不同的计算机。我将根据完全限定域名进行比较。