0

我的 powershell 脚本确定远程 Windows 7 计算机的当前用户并将输出

userId=DOMAIN\username

如果当前没有用户登录,脚本将输出

userId=No One Currently Logged In

如果脚本无法访问远程计算机的 WMI,脚本会输出

userId=CannotConnectToWMI

我在运行 WBEMTEST 的同时运行了该脚本,以确认是否可以在远程计算机上访问 WMI。

我真的很困惑,因为昨天下午,我可以在几台远程机器上访问 WMI,而今天早上,我不能。下面是一张图表:

脚本和 WBEMTEST 的结果

为什么会这样?如何确保 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地址正在切换到不同的计算机。我将根据完全限定域名进行比较。

4

2 回答 2

0

我目前正在测试几个 Windows 7 的 IP 地址。当我远程访问其中一个麻烦的 IP 地址时,我注意到它变成了 Windows XP。然后我意识到计算机的IP地址每隔几天就会改变一次,所以10.10.10.10可能有一天属于ComputerA.contoso.com,几天后可能属于ComputerB.contoso.com。

现在在我对一堆电脑做任何测试之前,我会根据他们的完全限定域名,然后在进行任何测试之前找到对应的IP地址。

于 2013-10-18T13:48:27.507 回答
0

添加Test-Connection到您的脚本并仅在 ping 主机成功时尝试 WMI。

于 2013-10-17T13:32:13.660 回答