0

我是PowerShell的新手。我在 www.powershell.com 上阅读了一些内容。现在我需要你的帮助来解决一个问题。我想从网络中的客户端读取 UUID。因此,我创建了一个文档“pcs.txt”,其中存储了所有 PC。

$pc = Get-Content pcs.txt #Read content of file
$cred = Get-Credential “domain\user” 

for ($i=0; $i -lt $pc.length; $i++)     {

    $Result=test-connection -ComputerName $pc[$i] -Count 1 -Quiet
    If ($Result -eq 'True')
    { 
        $uuid = (Get-WmiObject Win32_ComputerSystemProduct -ComputerName $pc[$i] -Credential $cred).UUID 
        $Ausgabe=$pc[$i] + ';'+$uuid
        $Ausgabe  


    } 
    else
    {

        $Ausgabe=$pc[$i] + '; UUID nicht erhalten'
        $Ausgabe 
    }

}

首先我测试 ping 是否有效。当 ping 正常工作时,我尝试获取 uuid。有时即使 ping 有效,我也无法获得 uuid。所以我想编写一个超时代码,也就是说 -> 当你在 2 秒后没有 uuid 时转到下一台电脑。

你能帮我吗?

4

2 回答 2

0

Get-WmiObject唉, commandlet没有超时参数。MS Connect中有一个功能请求,但它来自 2011 年并且仍然开放。

使用System.Management. _ 如果链接失效,我会在这里复制并粘贴它。(而且我讨厌只包含指向可能存在或不存在的资源的链接的答案......)

Function Get-WmiCustom([string]$computername,[string]$namespace,[string]$class,[int]$timeout=15){
$ConnectionOptions = new-object System.Management.ConnectionOptions
$EnumerationOptions = new-object System.Management.EnumerationOptions 

$timeoutseconds = new-timespan -seconds $timeout
$EnumerationOptions.set_timeout($timeoutseconds) 

$assembledpath = "\\" + $computername + "\" + $namespace
#write-host $assembledpath -foregroundcolor yellow 

$Scope = new-object System.Management.ManagementScope $assembledpath, $ConnectionOptions
$Scope.Connect() 

$querystring = "SELECT * FROM " + $class
#write-host $querystring 

$query = new-object System.Management.ObjectQuery $querystring
$searcher = new-object System.Management.ManagementObjectSearcher
$searcher.set_options($EnumerationOptions)
$searcher.Query = $querystring
$searcher.Scope = $Scope 

trap { $_ } $result = $searcher.get() 

return $result
}
于 2012-09-07T10:47:13.023 回答
0

我找到了一个很好的解决方法!

http://theolddogscriptingblog.wordpress.com/2012/05/11/wmi-hangs-and-how-to-avoid-them/

这是我的工作代码:

$pc = Get-Content pcs.txt #FILE FROM THE HARDDISK
$cred = Get-Credential “DOMAIN\USER” #

for ($i=0; $i -lt $pc.length; $i++) 
{
$Result=test-connection -ComputerName $pc[$i] -Count 1 -Quiet 
If ($Result -eq 'True')
{ 
    $WMIJob = Get-WmiObject Win32_ComputerSystemProduct -ComputerName $pc[$i] -Credential $cred -AsJob     
    $Timeout=Wait-Job -ID $WMIJob.ID -Timeout 1 # the Job times out after 1 seconds.   
    $uuid = Receive-Job $WMIJob.ID

    if ($uuid -ne $null)
    {
        $Wert =$uuid.UUID 
        $Ausgabe=$pc[$i] + ';'+$Wert
        $Ausgabe  
    }

    else
    {
    <#$b = $error | select Exception       
    $E = $b -split (:)     
    $x = $E[1]   
    $Error.Clear()      #>
    $Ausgabe=$pc[$i] + '; got no uuid'
    $Ausgabe 
    }



} 
else
{
    $Ausgabe='PC not reached through ping.'
    $Ausgabe 
}


}

我希望我能帮助某人

于 2012-09-07T12:29:57.457 回答