PeterHansen 0 Posted November 15, 2012 Hi, Im trying to make a script to remove old printer / drivers from our workstations as were about to upgrade. first i run the spooler as admin then i want the script to locate user name and ask for password in order to delete drivers using a vbs- got so fat to asking for password but then it comes back unknown user / password as if it dosent copy over the password then it should run as admin again to complete the removal from regdb as a vbs. All 3 work by themself. But i cannot get it to retieve the local user account halting it all ;Set the RunAs parameters to use adminstrator account $user = "*********" $domain = "********" $passwd = "*********" RunAsSet($user, $domain, $passwd) ;------------------------------------------------ ; FjernDrivere.cmd ;------------------------------------------------ $val1 = RunWait("\\nasshare\SwInstall\FjernAllePrintere\FjernDrivere.cmd", @TempDir, @SW_MINIMIZE) If $val1 = 0 then MsgBox(0, "Successfull Installation", "Success",5) Else MsgBox(16, "Failure during Installation", "Error") Endif ;_____________________________________________________________________________________________________________________________ ;Set the RunAs parameters to use adminstrator account $user = "%username%" $domain = "*******" $passwd = "" RunAsSet($user, $domain, $passwd) ;------------------------------------------------ ; FjernDrivere.cmd ;------------------------------------------------ IF $passwd="" Then $passwd= Inputbox("Fill in account/password", "Please fill in your password" ) then $val1 = Runwait("\\nasshare\SwInstall\FjernAllePrintere\FjernDrivere1.cmd", @TempDir, @SW_MINIMIZE) if $val1 = 0 then MsgBox(0, "Successfull Installation", "Success",5) Else MsgBox(16, "Failure during Installation", "Error") Endif ;_____________________________________________________________________________________________________________________________ ;Set the RunAs parameters to use adminstrator account $user = "***********" $domain = "*********" $passwd = "***********" RunAsSet($user, $domain, $passwd) ;------------------------------------------------ ; FjernDrivere.cmd ;------------------------------------------------ $val1 = RunWait("\\nasshare\SwInstall\FjernAllePrintere\FjernDrivere2.cmd", @TempDir, @SW_MINIMIZE) If $val1 = 0 then MsgBox(0, "Successfull Installation", "Success",5) Else MsgBox(16, "Failure during Installation", "Error") Endif Share this post Link to post Share on other sites
BrewManNH 1,304 Posted November 15, 2012 (edited) What version of AutoIt are you using? Because RunAsSet was removed about 4 years ago.Removed: RunAsSet(). (Replaced with RunAs() and RunAsWait()) Edited November 15, 2012 by BrewManNH If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way!I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Share this post Link to post Share on other sites
PeterHansen 0 Posted November 15, 2012 Indeed a old version 3.0.102 as you can see its a long time since i've done something with this sw but have to bypass our globally gpo's and this is a way Share this post Link to post Share on other sites
JLogan3o13 1,624 Posted November 15, 2012 WHy are you trying to write a script to bypass global group policy, rather than obtaining the access you need? It is a good way to find yourself looking for work "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! Share this post Link to post Share on other sites
PeterHansen 0 Posted November 15, 2012 Beause we have an stupid central IT function that wont push out what we need by GPO and dont want to give us access to do so, so my manager asked me to find a way to bypass it. 's odd working in an IT dept. working against the GPO set from central point Share this post Link to post Share on other sites