IslandStyle Posted October 15, 2013 Posted October 15, 2013 I'm new to autoscript, and was hoping there is a way to compile an executable that will be able to be deployed and run in silently on a few machines in our oganization. In essence, I would need to execute C:WINDOWSst6unst.exe -n "C:Program Files<SOME PROGRAM>ST6UNST.LOG" -f -q and then delete the remaining folder C:Program Files<SOME PROGRAM> I did find this old post, but not sure if that is all there is to it? Hopefully there is a way to script this that I can deploy it to the machines that have the software? If someone can point me in the direction of creating an autoscript it would be greatly appreciated. Thanks in advance for any info.
Moderators JLogan3o13 Posted October 15, 2013 Moderators Posted October 15, 2013 When you say deploy, are you using some management suite like Altiris or SCCM? Or do you mean you want to use AutoIt to search out which machines have this particular piece of software, and then silently uninstall? Keep in mind either way is plausible, just looking for clarification "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
Bert Posted October 15, 2013 Posted October 15, 2013 Also, does the installer support command line? If yes then you can use the /q to do the quiet install or uninstall. The Vollatran project My blog: http://www.vollysinterestingshit.com/
jdelaney Posted October 16, 2013 Posted October 16, 2013 (edited) Event if there are no quiet uninstalls, you can run the script through the SYSTEM session (session 0), and perform controlclicks, winwaits, etc. The windows will not display on any user login sessions. That's how I do our deploys of new software versions. 'Quite' params will make life easy You can create scheduled tasks on all stations that run the scripts, and then execute those tasks remotely...or use psexec, or paexec to copy over/initiate. Edited October 16, 2013 by jdelaney IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now