Queener Posted May 15, 2013 Posted May 15, 2013 Is it just me or everybody else is getting this too? When I run this, with an interface. As soon as I type my command to $input1 and press the button; the command prompt open and close in 1sec. Anyways to make it stay? ;where $input1 I can type the command line I want; RunWait(@ComSpec & " /c " & "net send * " & GUICtrlRead($input1)) Msgbox(0, "Hate", "Just hate it when I post a question and find my own answer after a couple tries. But if I don't post the question, I can't seem to resolve it at all.")
Moderators JLogan3o13 Posted May 15, 2013 Moderators Posted May 15, 2013 Yes, change your " /c " to " /k " "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!
water Posted May 15, 2013 Posted May 15, 2013 /c stands for "close" and /k for "keep". My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
Queener Posted May 16, 2013 Author Posted May 16, 2013 (edited) thanks, was going to ask that... I have a script to change the pc name. I haven't try it so won't know for sure if it work, but planning to test it in a bit. Still thinking how it works... $NewName = GUICtrlRead($ChangeName) ;What you want to change to $RemotePC = GUICtrlRead($CheckName) ; Current PC Name RunWait(@ComSpec & " /k " & "netdom renamecomputer " & $RemotePC & " /newname:" & $NewName & "/userd whocare\aq47 /passwordd Immortal /reboot 03 /FORCE") If anybody got a better ideas, post it here. EDIT: Nope, it doesn't work. Seems like it doesn't take multiple quotes and &. Edited May 16, 2013 by asianqueen Msgbox(0, "Hate", "Just hate it when I post a question and find my own answer after a couple tries. But if I don't post the question, I can't seem to resolve it at all.")
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