おそらく、これに対する本当に簡単な答えです。書き込み進行状況を機能させるのに問題があります。問題は自分の変数にあると確信していますが、何が原因なのか正確にはわかりません。
それが今行うことは、出力ファイルが存在しない場合の最初の実行での爆弾です。それは私に教えてくれます:
Write-Progress : Cannot validate argument on parameter 'PercentComplete'. The 300 ar
gument is greater than the maximum allowed range of 100. Supply an argument that is
less than 100 and then try the command again.
それが言及する「300引数」は、毎回異なる乱数です。
livepcs.txt が存在する状態でスクリプトを再度実行すると、動作する場合と動作しない場合があります。たとえそうであっても、プログレスバーは途中から始まります。
write-progress を機能させようとするのはこれが初めてなので、おそらく非常に単純なことですが、まだ何を探すべきかわかりません。アドバイスをいただければ幸いです。
最終コード:
#Import active directory module
Import-Module active*
#Query AD for all computers by name filter, AND that have an IP listed in AD, store in variable (use line 10)
$PCs = Get-ADComputer -Properties * -Filter {name -like "PCNameDomainPrefix*"} | Where-Object {$_.Ipv4Address -ne $null} | select name,ipv4address
#Dump list of PCs into CSV
$PCs | Export-Csv c:\script\pcs.csv
#Begin foreach loop to see which servers are alive
$i = 0
$livePCs = ForEach($name.name in $PCs) #specify the name string using .name after the variable
{
$entry = Test-Connection $name.name -count 1 -quiet #Test-connection pings. The -quiet parameter forces a boolean result (True/False).
if ($entry -eq "True") {out-file -InputObject $name.name -Encoding ASCII -Width 50 -Append c:\script\livepcs.txt ; Write-Host "$name.name pings"}
else { write-host "server $name could not be contacted"}
$i++
Write-Progress -activity "Pinging servers . . ." -status "Pinged: $i of $($PCs.Count)" -percentComplete (($i / $PCs.Count) * 100)
}
#Announce WMI portion of script, clear host to get rid of status bar
Clear-Host
Write-Host
Write-Host
Write-Host
Write-Host "Beginning WMI scans. Please wait..."
Write-Host
Write-Host
Write-Host
$livePCs = Get-Content C:\script\livepcs.txt
#Begin foreach loop to query each live machine using WMI.
$i = 0
foreach($livePC in $livePCs)
{
$entry = Get-WmiObject win32_product -computername $livePC -Filter "Name LIKE '%db2%'"
# do the work
if ($entry -ne $null)
{
$livePc,$entry | out-file c:\script\db2pcs.txt -Encoding ASCII -Width 50 -Append
Write-Host "$livePC has DB2 installed"
}
else
{
write-host "$livePC does not have DB2 installed"
}
# update counter and write progress
$i++
Write-Progress -activity "Scanning WMI . . ." -status "Scanned: $i of $($livePCs.Count)" -percentComplete (($i / $livePCs.Count) * 100)
}