- 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.
previous post
next post