Advertisement
Advertisement
| 07.17.2008 at 12:02PM PDT, ID: 23574506 |
|
[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: |
- copy of script -
c:
cd\
:check for flag
if exist "c:\flags\office uninstall.txt" GOTO END
if NOT exist c:\flags md c:\flags
copy "\\server\CG-DATA\IT\Flags\office uninstall.txt" "c:\flags\office uninstall.txt"
:FLAGCHECK
if exist "c:\flags\office uninstall.txt" GOTO office uninstall
if NOT exist c:\flags md c:\flags
copy "\\server\CG-DATA\IT\Flags\office uninstall.txt" "c:\flags\office uninstall.txt"
GOTO FLAGCHECK
:Office uninstall
msiexec /x {90110409-6000-11D3-8CFE-0150048383C9} /qb-
:Restart PC
shutdown /r /c "The uninstallation of office 2003 is complete and the system is restarting."
GOTO END
:END
EXIT
- Script end -
|