Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to reinstall ie using vbs

2025-03-31 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article will explain in detail how to use vbs to reinstall ie, Xiaobian thinks it is quite practical, so share it for everyone to make a reference, I hope you can gain something after reading this article.

The code is as follows:

'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

About "how to use vbs to reinstall ie" this article is shared here, I hope the above content can be of some help to everyone, so that you can learn more knowledge, if you think the article is good, please share it to let more people see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report