|
Hello, I am completely new to scripting, however I am trying to write uninstall scripts to run out of Desktop Authority for my workplace. After doing as much reading as I could I took a crack at one and would like to know if I did correctly even on the most remedial level. I used Kixtarter v4.10.0 to write it. I basically followed the initial prompts in Kixtarter and then coded what I thought I'd need. The script is below:
;************************************************************************* ; Script Name: Limewire Removal ; Author: Erik Dunbar ; Date: 3/23/2009 ; Description: ;************************************************************************* ;Script Options $SO=SETOPTION("Explicit", "ON") $SO=SETOPTION("NoMacrosInStrings", "ON") $SO=SETOPTION("NoVarsInStrings", "ON") BREAK ON
Shell "C:\Program Files\LimeWire\uninstall.exe" $=SetFocus ("LimeWire 5.1.2 Uninstall") $=SendKeys (N) $=SendKeys (U) $=SendKeys (F)
|