Set objSession = createObject(“Microsoft.Update.Session”)

Set objSearcher = objSession.CreateUpdateSearcher

Set objResults = objSearcher.Search(“Type=’Software'”)

Set colUpdates = objResults.Updates

For i = 0 to colUpdates.Count – 1

   ‘ If colUpdates.Item(i).Title = _

       ‘ “Security Update for Windows XP (KB899587)” Then

        ‘If colUpdates.Item(i).IsInstalled <> 0 Then

            ‘Wscript.Echo “This update is installed.”

           ‘ Wscript.Quit

        ‘Else

            ‘Wscript.Echo “This update is not installed.”

          ‘ Wscript.Quit

        ‘End If

   ‘ End If

   wscript.echo colUpdates.Item(i).Title

Next

‘Wscript.Echo “This update is not installed.”

如何关闭 Windows XP Service Pack 2 防火墙?

Set objFirewall = CreateObject(“HNetCfg.FwMgr”)Set objPolicy = objFirewall.LocalPolicy.CurrentProfile

objPolicy.FirewallEnabled = FALSESet objFirewall = CreateObject(“HNetCfg.FwMgr”)Set objPolicy = objFirewall.LocalPolicy.CurrentProfile

objPolicy.FirewallEnabled = FALSE

声明:本站(华域联盟www.cnhackhy.com)所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。