Are you calling the command from a .bat file or directly on the program command line?
If you are using a .bat you need to wrap it in quotes and put %~dp0 in front of it to call the current directory. Daniel Ratliff From: [email protected] [mailto:[email protected]] On Behalf Of Kevin Johnston Sent: Thursday, August 15, 2013 8:35 PM To: '[email protected]' Subject: [mssms] Office 2007 uninstall, office 2010 using script So I was given another challenge, and that is to start the rollout of upgrading our Office 2007 clients to Office 2010. I have read that it is possible to have some issues with uninstalling 2007 so people do the OffScrub07.vbs trick, and I figured that is probably the best way to do this. I would like to make the install as clean as possible. So I have a .bat file that is in the root of my Office 2010 install. The file is to run the offscrub07.vbs script first, then run setup.exe for office 2010 after. My question is I am not sure if I need to put the full path to the server. It seems that everyone does that, but I am wondering what the point is, if the files are copied locally, why does it need to talk back to the server to run the script? This is what I have: call cscript \\server\Office2010\Offscrub07.vbs<file:///\\server\Office2010\Offscrub07.vbs> ALL /bypass 1 /q /s /NoCancel start /wait \\server\Office2010\setup.exe<file:///\\server\Office2010\setup.exe> /adminfile \\server\Office2010\Office2010RollOut.msp<file:///\\server\Office2010\Office2010RollOut.msp> Is there a way to call the script and point locally? Like: call cscript ..\Offscrub07.vbs ALL /bypass 1 /q /s /NoCancel Or something.... I am not very good with scripting :) Has anyone worked with doing it this way or maybe another way aside from the "get Office 2010 to do the uninstall" as I find it leaves left over files. Thanks, Kevin The information transmitted is intended only for the person or entity to which it is addressed and may contain CONFIDENTIAL material. If you receive this material/information in error, please contact the sender and delete or destroy the material/information.

