Jump to content

Opening .RARS


Recommended Posts

Hello all,

I have some problems with the script

I wanted to have

Run("Program name")

But the program is inside an RAR file.. It just cant find the file inside the rar..

How can i make it works without extratcting the file out?

THank you ,

CrazeStar1074

Link to comment
Share on other sites

  • Developers

doubt that you can...... the system will always need to extract it first to be able to run the program ...

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

It's impossible in common case, I think. You should extract file (maybe as temporary one) and after then launch it. One note to consider this conclusion: Any executive started is blocked by Windows, so you can't delete it before it's ending.

If I'm wrong then any remarks will be appreciated.

The point of world view

Link to comment
Share on other sites

Is there a script to auto-extract the file from the RAR ?

$ScriptDir = @ScriptDir 
$dirFileRaR = @ScriptDir & "\dirFileRaR\"
$temp = @ScriptDir & "\temp"
$file = "file.rar "
$command = $ScriptDir & "\rar.exe E " & $dirFileRaR & $file & $temp
Run(@ComSpec & " /c " & $command, "", @SW_HIDE)
Edited by wolf9228

صرح السماء كان هنا

 

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