首页 电脑 电脑学堂 查看内容

重新安装ie的一个vbs

2009-9-23 15:47 1104 0

摘要:   对于版本有点老,所以建议学习使用,不要随便直接运行。   代码如下:   'run_ie_reinstall.vbs - Runs the Internet Explorer Setup  ...

  对于版本有点老,所以建议学习使用,不要随便直接运行。   代码如下:   '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
声明:文章版权归原作者所有 部分文章转自互联网 如有侵权请联系 [邮箱地址] 删除

路过

雷人

握手

鲜花

鸡蛋

最新评论

返回顶部