Jump to content

ShellExecute & FileInstall..?


Recommended Posts

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")

Link to comment
Share on other sites

$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...

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...