Jump to content

Command lines


Recommended Posts

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.")
Link to comment
Share on other sites

/c stands for "close" and /k for "keep".

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.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 (NEW 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

 

Link to comment
Share on other sites

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 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.")
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...