PowerShellから WSUSの更新を自動承認する

2009/07/08

Categories: powershell wsus

同期される更新全部に対し、受け入れるか否かを検証・判断するのは専属の要員をアサイン出来ないなら無理だな、と思う。
そういうわけで、一定の更新クラス(セキュリティ問題の修正プログラム、修正プログラム集、重要な更新)に対して自動承認を行っている。

これらの自動承認とは別に「ルート証明書の更新プログラム」を自動承認したい。

WSUS APIを参照すると、IUpdateのApproveメソッドで承認できるらしい。
http://msdn.microsoft.com/en-us/library/aa354567(VS.85).aspx

ということで↓のスクリプトをPowerShellで書いてみた。
すべてのコンピュータ、を指すIComputerTargetGroupを得る
$all_computers_group = $update_server.GetComputerTargetGroup([Microsoft.UpdateServices.Administration.ComputerTargetGroupId]::AllComputers)
$target_computer_group = new-object Microsoft.UpdateServices.Administration.ComputerTargetGroupCollection
$target_computer_group.Add($all_computers_group) | out-null

更新に対する検索条件。Title以外にも適用されるらしいので、これだと余計なhitがあるかも。。
$update_scope = new-object Microsoft.UpdateServices.Administration.UpdateScope
$update_scope.TextIncludes = "ルート証明書の更新プログラム"

IUpdateを列挙。拒否済み、最新リビジョンでないものはスキップ
foreach($update in $update_server.GetUpdates($update_scope) | sort ArrivalDate)
{
if($update.IsDeclined -or -not $update.IsLatestRevision)
{
# 既に拒否済みのもの
# 最新リビジョンでないもの
# は相手にしない
continue
}

適用したいコンピュータグループの数だけ承認メソッド呼び出し
  foreach($target_group in $target_computer_group)
{
$update.Approve(
[Microsoft.UpdateServices.Administration.UpdateApprovalAction]::Install,
$target_group) | out-null
}



いつもどおり無保証。どのような結果についても責任を負いかねます。利用は自己責任で。

trap [Exception] {
$t = $error[0].ToString().Trim() + "`n" + $error[0].InvocationInfo.PositionMessage.Trim()
[Diagnostics.EventLog]::WriteEntry("approve_update", $t, "Error", 1)
}

[reflection.assembly]::LoadWithPartialName("Microsoft.UpdateServices.Administration") | out-null
$update_server = [Microsoft.UpdateServices.Administration.AdminProxy]::GetUpdateServer()
$update_server.PreferredCulture ="ja"

$all_computers_group = $update_server.GetComputerTargetGroup([Microsoft.UpdateServices.Administration.ComputerTargetGroupId]::AllComputers)
$unassigned_computers_group = $update_server.GetComputerTargetGroup([Microsoft.UpdateServices.Administration.ComputerTargetGroupId]::UnassignedComputers)

$target_computer_group = new-object Microsoft.UpdateServices.Administration.ComputerTargetGroupCollection
$target_computer_group.Add($all_computers_group) | out-null

# 更新に対する条件
$update_scope = new-object Microsoft.UpdateServices.Administration.UpdateScope
$update_scope.TextIncludes = "ルート証明書の更新プログラム"


foreach($update in $update_server.GetUpdates($update_scope) | sort ArrivalDate)
{
if($update.IsDeclined -or -not $update.IsLatestRevision)
{
# 既に拒否済みのもの
# 最新リビジョンでないもの
# は相手にしない
continue
}
$rev_id = $update.Id
write-host ($update.ArrivalDate.ToLocalTime(), $rev_id.UpdateId, $rev_id.RevisionNumber, $update.Title)
foreach($app in $update.GetUpdateApprovals() | sort CreationDate)
{
$target_group = $app.GetComputerTargetGroup()
write-host ("`t", $app.CreationDate.ToLocalTime(), $app.Action.ToString(), $target_group.Name)
}

foreach($target_group in $target_computer_group)
{
$update.Approve(
[Microsoft.UpdateServices.Administration.UpdateApprovalAction]::Install,
$target_group) | out-null
}
}

Windows Server 2008
WSUS 3.0 SP1
PowerShell 1.0

>> Home