亚洲免费乱码视频,日韩 欧美 国产 动漫 一区,97在线观看免费视频播国产,中文字幕亚洲图片

      1. <legend id="ppnor"></legend>

      2. 
        
        <sup id="ppnor"><input id="ppnor"></input></sup>
        <s id="ppnor"></s>

        重新安裝ie的一個vbs

        字號:


            對于版本有點(diǎn)老,所以建議學(xué)習(xí)使用,不要隨便直接運(yùn)行。
            代碼如下:
            'run_ie_reinstall.vbs - Runs the Internet Explorer Setup
            '?Doug Knox - 4/10/2002
            'Downloaded from www.dougknox.com
            X = MsgBox("Do you want to reinstall Internet Explorer?", vbYesNo, "Prompt!")
            Y = MsgBox("Do you want to reinstall Outlook Express?", vbYesNo, "Prompt!")
            Set WshShell = WScript.CreateObject("WScript.Shell")
            If X = 6 Then
            WshShell.RegWrite "HKLM\SOFTWARE\Microsoft\Active Setup\Installed Components\{89820200-ECBD-11cf-8B85-00AA005B4383}\IsInstalled", 0, "REG_DWORD"
            End If
            If Y = 6 Then
            WshShell.RegWrite "HKLM\SOFTWARE\Microsoft\Active Setup\Installed Components\{44BBA840-CC51-11CF-AAFA-00AA00B6015C}\IsInstalled", 0, "REG_DWORD"
            End If
            If X = 6 OR Y = 6 Then
            WshShell.Run ("rundll32.exe setupapi,InstallHinfSection DefaultInstall 132 %windir%\Inf\ie.inf")
            Else
            MsgBox "You chose not to reinstall IE or OE. No changes were made." & vbCR & vbCR & "Copyright 2003 - Doug Knox",vbOkOnly, "User Cancelled"
            End If