亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

用vbs判斷系統(tǒng)補(bǔ)丁的腳本

 更新時(shí)間:2008年04月14日 21:30:35   作者:  
來自微軟腳本專家的可以查看系統(tǒng)中安裝了,哪些補(bǔ)丁的vbs腳本
 

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."


如何關(guān)閉 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

相關(guān)文章

最新評(píng)論