Jump to content

Recommended Posts

Posted

i wanna run a script like

hideme commandline1 commandline2 but my script isnt working

Run($CmdLine[1] "" $cmdline[2] & "" , "", @SW_HIDE )

Posted (edited)

Use spaces between parameters. Or make 2 Run functions.

Tip:

Use $CmdLineRaw: Run($CmdLineRaw , "", @SW_HIDE)

<{POST_SNAPBACK}>

Also, the syntax you have for your run statement is off...

Run($cmdline[1] & " " & $cmdline[2] & " ","",@SW_HIDE)

note the spaces inside the quotes before the first comma, and of course, the ampersands.

Ampersands link variables and strings together within the same grouping and function reference.

Edited by Blue_Drache

Lofting the cyberwinds on teknoleather wings, I am...The Blue Drache

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
  • Recently Browsing   0 members

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