powershellスクリプトはそのまま動作しますが、それはそれがインストールされているDCのみを表示し、それを見逃しているDCを追加しません(パッチ)。パッチがない場合でもDC名を追加するコードをどのように追加できますか?DCのget-hotfixとそれを見せていないDCを表示
$default_log = $env:userprofile + "\Desktop\report_dc_installed_Hotfixes.csv"
$KBPatch = Read-Host "Enter the KB Number"
get-hotfix -id $KBPatch -ComputerName ((get-adforest).globalcatalogs) | `select @{name='ServerName';expression={$_.CSName}},HotFixID,InstalledBy,InstalledOn | `export-csv $default_log -append –NoTypeInformation
どうすればいいですか? GCサーバのリストを反復するようにコードを書き直し、もし修正されていれば '$ true'を、そうでなければ' $ false'を出力してください。 –