Jump to content

DOS command Output to Variable?


Guest PJ2000
 Share

Recommended Posts

Guest PJ2000

Hi all,

Have a question.

How can I put console command output to variable?

For example echo or dir command.

Thank You

Link to comment
Share on other sites

Something like this?

$Command="cmd /c dir c: /s";<-Your command
RunWait($command & ">" & @scriptdir & "\output.txt","",@sw_hide)
$OutPut = FileRead( @scriptdir & "\output.txt",FileGetSize(@scriptdir & "\output.txt"))
FileDelete( @scriptdir & "\output.txt")

;$Output now contain the Console output of $Command
Edited by ezzetabi
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...