Recently, I had the pleasure to work with a client on a backup issue (coincidently, I love Backup Exec). But their was a problem... When installing Veritas Backup Exec CPS Server 11D make sure that Symantec AV is version 10 or greater before running the upgrade. When SAV 9 is installed the CPS server installation fails and your systems is left in a foul state. The best thing to do is to remove CPS and NAV, then start over. You will also lose your backup jobs if this is done. So, save yourself the headache and make sure you always have up-to-date software installed!
If you are having trouble removing nav try NoNAV.exe from Symantec. It rips out all of the junk left over by a failed NAV install and leaves your system is a pre-NAV state.
Hey guy, I a couple scripts that could user your expert design skills. Very easy to do, but I am not sure how to go about it. Shoot me an email so I can get your email address updated. I dont have your new one. Thanks man. I also have a puzzling Exchange issue that you me be able to enlighten me on
This script I am trying to call a computer, then call a Product and remotely uninstall it. I am pretty new and scripting VB from scratch so here is what I have so far...LOL....its not working. I also want it to notify me when I am done. Can you help a brother out.
Dim objWMIService, objWMIService1
Dim strComputer
strComputer = InputBox("Enter the name of the target computer here!"
strProgram = InputBox("Enter the name of Program here!"
Set objWMIService1 = GetObject("winmgmts:" & & #34;{impersonationLe
vel=impersonate}!\\" & strProgram & "\root\cimv2"
Set colSoftware = objWMIService.ExecQuery _
("Select * from Win32_Product Where Name = '" & strProgram & "'"
For Each objSoftware in colSoftware
objSoftware.Uninstall()
Next