Technology Computer & Networking security

How to Uninstall Software With a VB Script

    • 1). Click the Windows "Start" button and select "All Programs." Select "Accessories" and choose "Notepad" from the menu list.

    • 2). Call the Windows Installer application. The Windows Installer controls the list of programs that show in the "Add/Remove Programs" section of the Control Panel. Calling the applications gives you the ability to silently uninstall applications using VB Script.
      strmyComputer = "myComputerName"
      Set objWMICall = GetObject("winmgmts:" & "{impersonationLevel=impersonate}!\\" & strmyComputer & "\root\cimv2")

    • 3). Select the software to uninstall. The Windows Installer uses SQL language to select the software application. The following code selects "Microsoft Office 2007" from the Installer to uninstall:
      Set theSoftware = objWMICall.ExecQuery ("Select * from Win32_Product Where Name = 'Microsoft Office 2007'")

    • 4). Uninstall the software and any dependent components. The following code uses the WMI object to uninstall the software:
      For Each SoftwareComponent in theSoftware
      SoftwareComponent.Uninstall()
      Next

    • 5). Click the "File" menu in Notepad and select "Save As." Save the file with a .vbs extension. This file extension triggers windows to run the VB Script compiler when run.

Related posts "Technology : Computer & Networking security"

Secure Your Computer For Safe Internet Usage

Security

Everything You Need to Know About Online Data Backup

Security

Benefits of Online Data Backup

Security

Does a Data Recovery Service Provider Be Required for Our Data Loss Problems?

Security

My Computer Keeps Freezing - How Can I Fix It?

Security

Not All Is Lost When Your Data Goes Missing

Security

Hiring Professional Hard Drive Data Recovery Services

Security

Help! I STILL Can't Remove Malware From My Computer!

Security

What Is Adt Home Security

Security

Leave a Comment