Jump to content

Recommended Posts

Posted

Is it possible at all to do something like this..??

ShellExecute(FileInstall("C:\0\Calc.exe", @ScriptDir&"\Calc.exe"))

Where it Drops the file and ShellExecutes it..??

or do i just have to do it like this..

FileInstall("C:\0\Calc.exe", @ScriptDir&"\Calc.exe")

ShellExecute(@ScriptDir&"\Calc.exe")

Posted

$path = @ScriptDir&"\Calc.exe"

FileInstall("C:\0\Calc.exe", $path)

ShellExecute($path)

Read the helpfile a bit more. Hopefully you will workout why. But I cannot see why you need have it all on one line. other than sheer laziness...

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
×
×
  • Create New...