Advertisement
Advertisement
| 06.24.2008 at 01:43PM PDT, ID: 23512576 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
|
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: |
Dim objShell, RegLocate
'''Create Message Box Dialog
msgbox "Beginning the Zone Labs uninstall and VPN Client 5 install", 0, "Zone Labs Uninstall"
Set objShell = WScript.CreateObject("WScript.Shell")
'''Close Specific Applications
On error resume next
objShell.run("tskill iclient /a"), 0, True
objShell.run("tskill vsmon /a"), 0, True
'''Zone Labs Uninstall
objShell.run("msiexec.exe /X{45295FCF-B5D0-415E-8348-5C60BEE2A903} INSTALLPASSWORD=dakota1 REBOOTPROMPTWITHSILENT=NO REBOOT=R /qb!"), 0, True
'''Delete 2 Folders VPNClient4x and Zone Labs)
Set objFSO = CreateObject ("Scripting.FileSystemObject")
objFSO.DeleteFolder("C:\VPNClient4x")
objFSO.DeleteFolder("C:\Program Files\Zone Labs")
'''Copy New VPN Client to Laptop
Const OverWriteFiles = True
objFSO.CopyFolder "VPNClient5x" , "C:\VPNClient5x" , OverWriteFiles
'''msgbox "The Uninstall Process Is Complete Please press OK to start installing the VPN Client", 0, "Completed"
'''Install VPN 5
objShell.run("c:\VPNClient5x\vpnclient_setup.exe /passive"), 0, True
WScript.Quit
|