Jump to content

FileINstall Error!


Recommended Posts

as i'm trying to install files for the last hour and don't succeed i've deccided to show you guys and hope for some help !!!

#1:

$ret = FileInstall("AntiCaptcha.exe",@TempDir,1)
    If $ret = 0 Then MsgBox(4144,"DecryptionCheck "&$Version,"Methode File Is Missing at #0 location")oÝ÷ Ûrvazk ni¢÷Ó~«zoÝ÷ ÚØZµÚ²}ý¶·­º¹ô}¨¥º·ºØ­v¬m{kiËmçâëh¶¢W^­è­ê÷Þ+fjG¬iø¥zv¦yÚ®¢Ù^¶×«²«¨¶)ì×·ô-=ÛbË^iÚ«âayø¥zg§¶*'yا²'^iØ«{"uç7jëh×6$ret = FileInstall("method-29.7.07-sk.dat","c:\letters\method-29.7.07-sk.dat",1)
    If $ret = 0 Then MsgBox(4144,"DecryptionCheck "&$Version,"Methode File Is Missing at #2 location")

that one gives me the error again :)

Please Help !

[u]My Au3 Scripts:[/u]____________(E)Lephant, A Share download manager (RS/MU etc)Http1.1 Console, The Ez Way!Internet Reconnection Automation Suite & A Macro Recording Tool.SK's Alarm Clock, Playing '.MP3 & .Wav' Files._________________Is GOD a mistake of the Humanity Or the Humanity is a mistake of GOD ?!

Link to comment
Share on other sites

as i'm trying to install files for the last hour and don't succeed i've deccided to show you guys and hope for some help !!!

#1:

$ret = FileInstall("AntiCaptcha.exe",@TempDir,1)
    If $ret = 0 Then MsgBox(4144,"DecryptionCheck "&$Version,"Methode File Is Missing at #0 location")oÝ÷ Ûrvazk ni¢÷Ó~«zoÝ÷ ÚØZµÚ²}ý¶·­º¹ô}¨¥º·ºØ­v¬m{kiËmçâëh¶¢W^­è­ê÷Þ+fjG¬iø¥zv¦yÚ®¢Ù^¶×«²«¨¶)ì×·ô-=ÛbË^iÚ«âayø¥zg§¶*'yا²'^iØ«{"uç7jëh×6$ret = FileInstall("method-29.7.07-sk.dat","c:\letters\method-29.7.07-sk.dat",1)
    If $ret = 0 Then MsgBox(4144,"DecryptionCheck "&$Version,"Methode File Is Missing at #2 location")

that one gives me the error again :)

Please Help !

My hunch is that you didn't read the example in the help file.

$ret=FileInstall("AntiCaptcha.exe",@TempDir & "\AntiCaptcha.exe" ,1)

The destination has to include the path AND filename

George

Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.

Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.***

The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.

Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else.

"Old age and treachery will always overcome youth and skill!"

Link to comment
Share on other sites

look:

$ret = FileInstall("C:\SK'S-SHIT\AU3 in progress\method-29.7.07-sk.dat",@TempDir&'\letters\method-29.7.07-sk.dat',1)
    If $ret = 0 Then MsgBox(4144,"DecryptionCheck "&$Version,"Methode File Is Missing at #1 location")

$ret = FileInstall("C:\SK'S-SHIT\AU3 in progress\letters-29.7.07-sk.opt",@TempDir&'\letters\letters-29.7.07-sk.opt',1)
    If $ret = 0 Then MsgBox(4144,"DecryptionCheck "&$Version,"Methode File Is Missing at #2 location")

both returning errors !!! (the msgboxes jump...)

-->EDIT:

these Open the msgboxes AND-> creates the DIR but without the files in it :)

- almost 2 hours on that thing ... FFS !

Edited by Armand

[u]My Au3 Scripts:[/u]____________(E)Lephant, A Share download manager (RS/MU etc)Http1.1 Console, The Ez Way!Internet Reconnection Automation Suite & A Macro Recording Tool.SK's Alarm Clock, Playing '.MP3 & .Wav' Files._________________Is GOD a mistake of the Humanity Or the Humanity is a mistake of GOD ?!

Link to comment
Share on other sites

Like this. You can also use a relative path with the source file if convenient.

$Version = '?'
$extractDir = @TempDir & '\letters\'

If DirCreate($extractDir) Then
    If Not FileInstall("C:\SK'S-SHIT\AU3 in progress\method-29.7.07-sk.dat", $extractDir, 1) Then
        MsgBox(4144, "DecryptionCheck " & $Version, "Methode File Is Missing at #1 location")
    EndIf
    If Not FileInstall("C:\SK'S-SHIT\AU3 in progress\letters-29.7.07-sk.opt", $extractDir, 1) Then
        MsgBox(4144, "DecryptionCheck " & $Version, "Methode File Is Missing at #2 location")
    EndIf
EndIf

:)

Link to comment
Share on other sites

:)

OH, oh. Me bad.

George

Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.

Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.***

The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.

Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else.

"Old age and treachery will always overcome youth and skill!"

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