tonycst Posted March 14, 2016 Share Posted March 14, 2016 I have this script that (when ran at least once) adds its self to registry so it would run at start up. When it runs after computer restarts, it does not complete its task. It completes the task only when i run it manually (double clicking the executable) Task is very simple: Delete previous network drive and assign a new one. This script was made because windows 7 does not connect to network drive at start up no matter what i try so i needed a script to take care of the problem. It works like a charm only when i manually lunch it, but fails on second command when it runs by its self after restart. Here is the code: Thanks ! expandcollapse popup#RequireAdmin #Region ;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_Icon=Devcom-Network-Wifi-modem-Vista.ico #AutoIt3Wrapper_Outfile=Network Drive Startup.exe #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI **** #include <GUIConstantsEx.au3> $Address = FileReadLine ("Address.txt",1) If $Address = "" Then FileDelete ("Address.txt") FileWrite ("Address.txt","192.168.1.1" & @CRLF & "Avobe address is used to connect to network drive") MsgBox (16,"Error","No valid address was found." & @CRLF & "New Address.txt file was written. Please edit it for correct address and restart this application.") Exit EndIf $Gui = GUICreate ("Network Drive Startup",200,100) $TimeoutInput = GUICtrlCreateInput ("3000",10,20,190,20) $AddressInput = GUICtrlCreateInput ($Address,10,40,190,20) GUISetState (@SW_SHOW) Sleep (GUICtrlRead ($TimeoutInput)) $Start = TimerInit() While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then Exit $Timeout = GUICtrlRead ($TimeoutInput) $AddresstoPing = "192.168.1.1" $Difference = TimerDiff($Start) If $Difference > $Timeout then Exit $Ping = Ping ($AddresstoPing) If $Ping > 0 Then _Connect() EndIf WEnd Func _Connect() RunWait('"' & @ComSpec & '" /C NET USE N: /DELETE', '', @SW_SHOW) ;RunWait('"' & @ComSpec & '" /C NET USE N: \\192.168.1.1\N-Network /user:owner password', '', @SW_SHOW) RunWait('"' & @ComSpec & '" /K NET USE N: ' & $Address, '', @SW_SHOW) RegWrite ("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run","Network Drive StartUp","REG_SZ",@ScriptFullPath) Exit EndFunc Link to comment Share on other sites More sharing options...
mLipok Posted March 14, 2016 Share Posted March 14, 2016 You should wait for all other services and intefaces should be successfuly started. Signature beginning:* Please remember: "AutoIt"..... * Wondering who uses AutoIt and what it can be used for ? * Forum Rules ** ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Code * for other useful stuff click the following button: Spoiler Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind. My contribution (my own projects): * Debenu Quick PDF Library - UDF * Debenu PDF Viewer SDK - UDF * Acrobat Reader - ActiveX Viewer * UDF for PDFCreator v1.x.x * XZip - UDF * AppCompatFlags UDF * CrowdinAPI UDF * _WinMergeCompare2Files() * _JavaExceptionAdd() * _IsBeta() * Writing DPI Awareness App - workaround * _AutoIt_RequiredVersion() * Chilkatsoft.au3 UDF * TeamViewer.au3 UDF * JavaManagement UDF * VIES over SOAP * WinSCP UDF * GHAPI UDF - modest begining - comunication with GitHub REST API * ErrorLog.au3 UDF - A logging Library * Include Dependency Tree (Tool for analyzing script relations) * Show_Macro_Values.au3 * My contribution to others projects or UDF based on others projects: * _sql.au3 UDF * POP3.au3 UDF * RTF Printer - UDF * XML.au3 UDF * ADO.au3 UDF * SMTP Mailer UDF * Dual Monitor resolution detection * * 2GUI on Dual Monitor System * _SciLexer.au3 UDF * SciTE - Lexer for console pane * Useful links: * Forum Rules * Forum etiquette * Forum Information and FAQs * How to post code on the forum * AutoIt Online Documentation * AutoIt Online Beta Documentation * SciTE4AutoIt3 getting started * Convert text blocks to AutoIt code * Games made in Autoit * Programming related sites * Polish AutoIt Tutorial * DllCall Code Generator * Wiki: * Expand your knowledge - AutoIt Wiki * Collection of User Defined Functions * How to use HelpFile * Good coding practices in AutoIt * OpenOffice/LibreOffice/XLS Related: WriterDemo.au3 * XLS/MDB from scratch with ADOX IE Related: * How to use IE.au3 UDF with AutoIt v3.3.14.x * Why isn't Autoit able to click a Javascript Dialog? * Clicking javascript button with no ID * IE document >> save as MHT file * IETab Switcher (by LarsJ ) * HTML Entities * _IEquerySelectorAll() (by uncommon) * IE in TaskScheduler * IE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) * PDF Related: * How to get reference to PDF object embeded in IE * IE on Windows 11 * I encourage you to read: * Global Vars * Best Coding Practices * Please explain code used in Help file for several File functions * OOP-like approach in AutoIt * UDF-Spec Questions * EXAMPLE: How To Catch ConsoleWrite() output to a file or to CMD *I also encourage you to check awesome @trancexx code: * Create COM objects from modules without any demand on user to register anything. * Another COM object registering stuff * OnHungApp handler * Avoid "AutoIt Error" message box in unknown errors * HTML editor * winhttp.au3 related : * https://www.autoitscript.com/forum/topic/206771-winhttpau3-download-problem-youre-speaking-plain-http-to-an-ssl-enabled-server-port/ "Homo sum; humani nil a me alienum puto" - Publius Terentius Afer"Program are meant to be read by humans and only incidentally for computers and execute" - Donald Knuth, "The Art of Computer Programming" , be and \\//_. Anticipating Errors : "Any program that accepts data from a user must include code to validate that data before sending it to the data store. You cannot rely on the data store, ...., or even your programming language to notify you of problems. You must check every byte entered by your users, making sure that data is the correct type for its field and that required fields are not empty." Signature last update: 2023-04-24 Link to comment Share on other sites More sharing options...
tonycst Posted March 14, 2016 Author Share Posted March 14, 2016 Increasing delay does not help. I went as much as 10 seconds. How ever, i traced the problem with execution level or what you call it. Its not the first script i make that does not work the same when it starts by its self. Autoit has a problem with permissions or execution or something like that. Otherwise why it works with double click and does not work when its added to start up ? I cant find another explanation. #requireadmin does not help. Changing execution level does not help. Something is wrong with autoit at the execution and it needs to be fixed. I confirm that its autoit issue by placing the shortcut to complied executable into startup folder instead of registry. Script executed and everything worked well. I am getting very tired of execution issues with autoit. Link to comment Share on other sites More sharing options...
mLipok Posted March 14, 2016 Share Posted March 14, 2016 Try task sheduler, run after User login. Signature beginning:* Please remember: "AutoIt"..... * Wondering who uses AutoIt and what it can be used for ? * Forum Rules ** ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Code * for other useful stuff click the following button: Spoiler Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind. My contribution (my own projects): * Debenu Quick PDF Library - UDF * Debenu PDF Viewer SDK - UDF * Acrobat Reader - ActiveX Viewer * UDF for PDFCreator v1.x.x * XZip - UDF * AppCompatFlags UDF * CrowdinAPI UDF * _WinMergeCompare2Files() * _JavaExceptionAdd() * _IsBeta() * Writing DPI Awareness App - workaround * _AutoIt_RequiredVersion() * Chilkatsoft.au3 UDF * TeamViewer.au3 UDF * JavaManagement UDF * VIES over SOAP * WinSCP UDF * GHAPI UDF - modest begining - comunication with GitHub REST API * ErrorLog.au3 UDF - A logging Library * Include Dependency Tree (Tool for analyzing script relations) * Show_Macro_Values.au3 * My contribution to others projects or UDF based on others projects: * _sql.au3 UDF * POP3.au3 UDF * RTF Printer - UDF * XML.au3 UDF * ADO.au3 UDF * SMTP Mailer UDF * Dual Monitor resolution detection * * 2GUI on Dual Monitor System * _SciLexer.au3 UDF * SciTE - Lexer for console pane * Useful links: * Forum Rules * Forum etiquette * Forum Information and FAQs * How to post code on the forum * AutoIt Online Documentation * AutoIt Online Beta Documentation * SciTE4AutoIt3 getting started * Convert text blocks to AutoIt code * Games made in Autoit * Programming related sites * Polish AutoIt Tutorial * DllCall Code Generator * Wiki: * Expand your knowledge - AutoIt Wiki * Collection of User Defined Functions * How to use HelpFile * Good coding practices in AutoIt * OpenOffice/LibreOffice/XLS Related: WriterDemo.au3 * XLS/MDB from scratch with ADOX IE Related: * How to use IE.au3 UDF with AutoIt v3.3.14.x * Why isn't Autoit able to click a Javascript Dialog? * Clicking javascript button with no ID * IE document >> save as MHT file * IETab Switcher (by LarsJ ) * HTML Entities * _IEquerySelectorAll() (by uncommon) * IE in TaskScheduler * IE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) * PDF Related: * How to get reference to PDF object embeded in IE * IE on Windows 11 * I encourage you to read: * Global Vars * Best Coding Practices * Please explain code used in Help file for several File functions * OOP-like approach in AutoIt * UDF-Spec Questions * EXAMPLE: How To Catch ConsoleWrite() output to a file or to CMD *I also encourage you to check awesome @trancexx code: * Create COM objects from modules without any demand on user to register anything. * Another COM object registering stuff * OnHungApp handler * Avoid "AutoIt Error" message box in unknown errors * HTML editor * winhttp.au3 related : * https://www.autoitscript.com/forum/topic/206771-winhttpau3-download-problem-youre-speaking-plain-http-to-an-ssl-enabled-server-port/ "Homo sum; humani nil a me alienum puto" - Publius Terentius Afer"Program are meant to be read by humans and only incidentally for computers and execute" - Donald Knuth, "The Art of Computer Programming" , be and \\//_. Anticipating Errors : "Any program that accepts data from a user must include code to validate that data before sending it to the data store. You cannot rely on the data store, ...., or even your programming language to notify you of problems. You must check every byte entered by your users, making sure that data is the correct type for its field and that required fields are not empty." Signature last update: 2023-04-24 Link to comment Share on other sites More sharing options...
JohnOne Posted March 14, 2016 Share Posted March 14, 2016 1 hour ago, tonycst said: I confirm that its autoit issue by placing the shortcut to complied executable into startup folder instead of registry. Script executed and everything worked well. How exactly does that confirm an AutoIt issue? AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
tonycst Posted March 14, 2016 Author Share Posted March 14, 2016 (edited) Very eazy. Script executes a CMD.exe When autoit executed via double click passes arguments to CMD, CMD executes the command as it should. When autoit executed at start up via registry key (Run. Regardless if Local Machine or Current User or administrator account or not) it passes arguments to CMD and CMD fails to execute it. When autoit executed at start up via shortcut located in StartUp folder (instead of registry) arguments passed down to CMD executed and everything works. My script is simple: RunWait('"' & @ComSpec & '" /C NET USE N: /DELETE', '', @SW_SHOW) RunWait('"' & @ComSpec & '" /C NET USE N: ' & $Address, '', @SW_SHOW) Thats it. There is nothing to fail except one thing. Autoit does not pass arguments to CMD as it should. Or rather it passes them down WRONG or in a screwed up level of permissions or execution lever etc (not sure which one to blame) All i know is that this is common issue on many of my scripts that run at start up. They simply dont work. Some of my scripts fail to export registry keys unless i run then with double click instead of start up via registry link, some fail to read etc. Some of my scripts that run at startup via registry do not work right, but they work fine when i execute them with double click. This tells me that executing application with double click is not the same as executing it (lets say) via command line or tell Windows to execute it when it logs in. Something clearly is wrong with autot because i dont see any other explanation. EDIT: To add more details on this issue, i think that when arguments passed down to regedit or CMD (or what ever it may be) at start up, autoit does not know where it is. I can trace it by looking at the error that either regedit or CMD shows. It mostly complains about "not found" or "unknown" etc all related to the regedit or CMD unable to locate the file which needs to be executed as per arguments inside autoit script. For example: $RegFile = '"' & @ScriptDir & '\ALOptions.reg"' $RegKey = '"HKEY_CURRENT_USER\Software\Advanced Launcher"' ;Quoted already Autoit says: RunWait(@WindowsDir & "\regedit.exe /S " & $RegFile) Pretty simple right ? WRONG. This will not work properly if this script ran at start up defined in registry. Regedit will not know where the file is and give you errors. I tried addind #requireadmin etc but it would work on Windows 7 but not on windows 10 and the other way around. So i think that its a path related issue in some cases, but in my case above its much worse because my network related arguments have no path in them (with the exception to specify what path to assign, is exactly where it fails) Edited March 14, 2016 by tonycst Link to comment Share on other sites More sharing options...
tonycst Posted March 14, 2016 Author Share Posted March 14, 2016 1 hour ago, mLipok said: Try task sheduler, run after User login. Dont want to try anything but a basic registry trick. The problem with autoit execution. Some of my scripts dont read or export registry keys when they are started at logon via registry. This problem is very old and it drives me nuts. Link to comment Share on other sites More sharing options...
Juvigy Posted March 14, 2016 Share Posted March 14, 2016 Instead of RunWait - have you tried Shellexecute ? Link to comment Share on other sites More sharing options...
JohnOne Posted March 14, 2016 Share Posted March 14, 2016 54 minutes ago, tonycst said: related to the regedit or CMD unable to locate the file which needs to be executed as per arguments inside autoit script. That would indicate a windows component problem to me, one which you would need to code around. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
ViciousXUSMC Posted March 14, 2016 Share Posted March 14, 2016 You could just use a .bat file for this, adding Autoit to the mix is sort of a moot point if all you're doing is CMD stuff. If you think this is permissions related try adding #RequireAdmin to your script, also have you tried PERSISTENT: YES that is the flag to make a drive stay between reboots and such. Link to comment Share on other sites More sharing options...
tonycst Posted March 14, 2016 Author Share Posted March 14, 2016 9 hours ago, JohnOne said: That would indicate a windows component problem to me, one which you would need to code around. It worked like a charm couple of years ago. Its recent autoit changes that prevent it from working. I have not updated windows 7 SP1 in long time and codes like this worked but not anymore (since who knows when, i dont keep track) 8 hours ago, ViciousXUSMC said: You could just use a .bat file for this, adding Autoit to the mix is sort of a moot point if all you're doing is CMD stuff. If you think this is permissions related try adding #RequireAdmin to your script, also have you tried PERSISTENT: YES that is the flag to make a drive stay between reboots and such. I said #RequireAdmin does not help. In fact, adding #RequireAdmin screws everything up if user is not hidden administrator but a standard user with admin rights, or the other way around (not sure) I try to keep script as simple as i can. Dont want to generate files and run them. Plus why do you think it will work any different ? Passing over execution permissiosn from Windows to autoit script is already a problem in my case, and on top of that it will screw up passing them even down to a .bat which passes it down to the actual executable such as regedit or CMD. Thats too many hoops to jump VS go directly to the executable and pass just the arguments. Link to comment Share on other sites More sharing options...
spudw2k Posted March 14, 2016 Share Posted March 14, 2016 (edited) Does the GUi launch for the user at least, but the NET USE command(s) fail...or just the GUI never show? Edited March 14, 2016 by spudw2k Spoiler Things I've Made: Always On Top Tool ◊ AU History ◊ Deck of Cards ◊ HideIt ◊ ICU ◊ Icon Freezer ◊ Ipod Ejector ◊ Junos Configuration Explorer ◊ Link Downloader ◊ MD5 Folder Enumerator ◊ PassGen ◊ Ping Tool ◊ Quick NIC ◊ Read OCR ◊ RemoteIT ◊ SchTasksGui ◊ SpyCam ◊ System Scan Report Tool ◊ System UpTime ◊ Transparency Machine ◊ VMWare ESX Builder Misc Code Snippets: ADODB Example ◊ CheckHover ◊ Detect SafeMode ◊ DynEnumArray ◊ GetNetStatData ◊ HashArray ◊ IsBetweenDates ◊ Local Admins ◊ Make Choice ◊ Recursive File List ◊ Remove Sizebox Style ◊ Retrieve PNPDeviceID ◊ Retrieve SysListView32 Contents ◊ Set IE Homepage ◊ Tickle Expired Password ◊ Transpose Array Projects: Drive Space Usage GUI ◊ LEDkIT ◊ Plasma_kIt ◊ Scan Engine Builder ◊ SpeeDBurner ◊ SubnetCalc Cool Stuff: AutoItObject UDF ◊ Extract Icon From Proc ◊ GuiCtrlFontRotate ◊ Hex Edit Funcs ◊ Run binary ◊ Service_UDF Link to comment Share on other sites More sharing options...
Juvigy Posted March 15, 2016 Share Posted March 15, 2016 Have you tried Shellexecute or not ? Link to comment Share on other sites More sharing options...
rudi Posted March 15, 2016 Share Posted March 15, 2016 You are not really answering the questions people asked you, to be able to help you. Well, I can confirm, that it's *NOT* an autoit issue. For a customer I used an Autoit Script placed in startupcommondir for exatly the same purpose with no issues at all. expandcollapse popup#Region ;**** Directives created by AutoIt3Wrapper_GUI **** #AutoIt3Wrapper_Outfile=\\10.27.1.51\nw06data1\bat\mapdrives-ip.exe #AutoIt3Wrapper_Compression=3 #AutoIt3Wrapper_Res_Fileversion=2.0.1.1 #AutoIt3Wrapper_Res_Fileversion_AutoIncrement=y #AutoIt3Wrapper_Res_SaveSource=y #AutoIt3Wrapper_Res_Language=1031 #AutoIt3Wrapper_Res_requestedExecutionLevel=asInvoker #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI **** If $cmdline[0] = 1 And StringInStr($cmdline[1], "debug") Then $debug = True Else $debug = False EndIf $ResTxt = "Ergebnis der Aktionen: " & @CRLF & "---------------------" & @CRLF Dim $aMap[4][2] = [[3], _ ["h:", "\\10.27.1.51\nw06data1"], _ ["u:", "\\10.27.1.51\userhomevol\userhome"], _ ["z:", "\\10.27.1.51\nw06data1\bat"]] For $i = 1 To $aMap[0][0] $ResTxt &= @CRLF $type = DriveGetType($aMap[$i][0]) $ResTxt &= "Vorgesehene Zuordnung: " & $aMap[$i][0] & "=" & $aMap[$i][1] & @CRLF $ResTxt &= @TAB & $aMap[$i][0] & ", DriveType = '" & $type & "'" & @CRLF if $debug then tooltip($ResTxt, 20, 20, "Map Drives") If $type = "network" Then $MyCmd = "net use " & $aMap[$i][0] & " /del /y" ; /y erzwingt die Trennung auch bei aktiv genutzem Mapping $ResTxt &= @TAB & $MyCmd & @CRLF if $debug then tooltip($ResTxt,20, 20, "Map Drives") $result = RunWait($MyCmd, @TempDir, @SW_HIDE) $ResTxt &= @TAB & "ExitCode Trennen Netzlaufwerk = " & $result & " (" & $MyCmd & ")" & @CRLF if $debug then tooltip($ResTxt,20, 20, "Map Drives") EndIf $type = DriveGetType($aMap[$i][0]) If $type = "" Then $MyCmd = "net use " & $aMap[$i][0] & " " & $aMap[$i][1] $result = RunWait($MyCmd, @TempDir, @SW_HIDE) If $result Then MsgBox(48, "Fehler", "Konnte Mapping nicht abschließen:" & @CRLF & _ $MyCmd & @CRLF & _ "Fehlercode = " & $result) $ResTxt &= "Error " & $result & ", Befehl: " & $MyCmd & @CRLF if $debug then tooltip($ResTxt,20, 20, "Map Drives") Else $ResTxt &= "Mapping OK (" & $MyCmd & ")" & @CRLF if $debug then tooltip($ResTxt,20, 20, "Map Drives") EndIf Else MsgBox(48, "Fehler", "Der Laufwerksbuchstabe ist nicht frei für " & $aMap[$i][0] & @CRLF & _ "DriveType=" & $type) $ResTxt &= "Type = " & $type & " für Laufwerk " & $aMap[$i][0] & ", Laufwerksbuchstabe ist also *NICHT* verfügbar!" & @CRLF if $debug then tooltip($ResTxt,20, 20, "Map Drives") EndIf Next If $debug Then Tooltip("") MsgBox(0, "MapDrives.exe Ergebnis", $ResTxt) ClipPut($ResTxt) EndIf Please use google translate yourself to get the German strings translated. ;-) Regards, Rudi. Earth is flat, pigs can fly, and Nuclear Power is SAFE! Link to comment Share on other sites More sharing options...
pixelit Posted March 15, 2016 Share Posted March 15, 2016 I can't help too much, but once I had the same problem and I solve it throught the "easy way". Creating a vbs script which launch the program: Set UAC = CreateObject("Shell.Application") UAC.ShellExecute "c:\path\to\you\script.exe", "", "", "runas", 1 To be honest I have no idea of what caused the problem or what does exactly this vbscript, it seems that it runs the .exe as admin. Link to comment Share on other sites More sharing options...
AdamUL Posted March 15, 2016 Share Posted March 15, 2016 Have a look at this thread. It should help you out. @pixelit the code that you have, can be done with AutoIt native functions. This will cause the script to re-execute itself to request the Admin Token, if it does not have it. If Not IsAdmin() Then ShellExecute(@ScriptFullPath, "", "", "runas") Adam Link to comment Share on other sites More sharing options...
tonycst Posted March 16, 2016 Author Share Posted March 16, 2016 On 3/14/2016 at 1:09 PM, spudw2k said: Does the GUi launch for the user at least, but the NET USE command(s) fail...or just the GUI never show? GUI has little to nothing to do with the script. It shows and servers as a visual reference for the delay and address. Command is executed both time correctly, it just does not work when its executed by adding it to the registry. It only works when its executed by a shortcut placed into start menu under startup folder. 17 hours ago, rudi said: Well, I can confirm, that it's *NOT* an autoit issue. For a customer I used an Autoit Script placed in startupcommondir......................... startupcommondir ? BINGO !!!!!!!!!!!!!!!!!!!!! Now try to make your script run from HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run at startup instead. 22 hours ago, Juvigy said: Have you tried Shellexecute or not ? I dont want to try shellexecute, i have not tried in in years and it worked just fine. Like i said, windows is not updated in years, only autoit was updated. I restore windows to original state often and i have this script on more then one computer and both have same issue. Link to comment Share on other sites More sharing options...
Juvigy Posted March 16, 2016 Share Posted March 16, 2016 You updated autoit - some things have changed. So either you go back to the prev. version of Autoit you were using, or you change the code a little bit. Choose wisely. Link to comment Share on other sites More sharing options...
spudw2k Posted March 16, 2016 Share Posted March 16, 2016 7 hours ago, tonycst said: GUI has little to nothing to do with the script. It shows and servers as a visual reference for the delay and address. Yea..I got that part. 7 hours ago, tonycst said: Command is executed both time correctly, it just does not work when its executed by adding it to the registry. What do you mean by "both time correctly"? Sounds like the GUI does in fact show and the NET USE command runs but fails? What is the error message is displayed on the CMD /k window? Spoiler Things I've Made: Always On Top Tool ◊ AU History ◊ Deck of Cards ◊ HideIt ◊ ICU ◊ Icon Freezer ◊ Ipod Ejector ◊ Junos Configuration Explorer ◊ Link Downloader ◊ MD5 Folder Enumerator ◊ PassGen ◊ Ping Tool ◊ Quick NIC ◊ Read OCR ◊ RemoteIT ◊ SchTasksGui ◊ SpyCam ◊ System Scan Report Tool ◊ System UpTime ◊ Transparency Machine ◊ VMWare ESX Builder Misc Code Snippets: ADODB Example ◊ CheckHover ◊ Detect SafeMode ◊ DynEnumArray ◊ GetNetStatData ◊ HashArray ◊ IsBetweenDates ◊ Local Admins ◊ Make Choice ◊ Recursive File List ◊ Remove Sizebox Style ◊ Retrieve PNPDeviceID ◊ Retrieve SysListView32 Contents ◊ Set IE Homepage ◊ Tickle Expired Password ◊ Transpose Array Projects: Drive Space Usage GUI ◊ LEDkIT ◊ Plasma_kIt ◊ Scan Engine Builder ◊ SpeeDBurner ◊ SubnetCalc Cool Stuff: AutoItObject UDF ◊ Extract Icon From Proc ◊ GuiCtrlFontRotate ◊ Hex Edit Funcs ◊ Run binary ◊ Service_UDF Link to comment Share on other sites More sharing options...
tonycst Posted March 19, 2016 Author Share Posted March 19, 2016 On 3/16/2016 at 9:30 AM, spudw2k said: Yea..I got that part. What do you mean by "both time correctly"? Sounds like the GUI does in fact show and the NET USE command runs but fails? What is the error message is displayed on the CMD /k window? I mean that NET.exe gets executed as it should. But when script is defined in registry to run at start up, net command returns error 67 (i looked it up) which means absolutely nothing wrong with the arguments, its the level at which the arguments are being passed down is the problem. Here is another example that i HOPE will clear things out. Run script at start up by placing shortcut in Start menu/All Programs/Startup folder. Computer starts. Batman logs in. Script starts. Autoit speaks to the CMD.exe and says "I am the Batman" and here are my arguments. CMD says "OK, i know who you are" and tells NET.exe "Batman says... do this and that". Net.exe says "Oh, ok. DONE !" Run script at start up be defining a registry key under "run" Computer starts. Batman logs in. Script starts. Autoit speaks to the CMD.exe and says "I am the User with rights" and here are my arguments. CMD says "OK, i dont know who you are but i see you have rights so i will pass your word down" and tells NET.exe "Some jerk with rights says... do this and that". Net.exe says "I will execute the command but it will fail because windows components i modify dont care if you have rights or not, they want you to be a known user" So in the end, in both cases command is executed as intended, but only in one case executed command actually work. Perhaps i should try to talk to net.exe directly and not thru CMD ? Link to comment Share on other sites More sharing options...
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