Search found 1125 matches

by TAC109
Today, 00:02
Forum: Ask for Help (v2)
Topic: FileInstall not working
Replies: 3
Views: 143

Re: FileInstall not working

Under error handling for FileInstall it says Any case where the file cannot be written to the destination is considered failure. For example: The destination file already exists and the Overwrite parameter was 0 or omitted. … Edit: Error handling is the same regardless of whether the script is run d...
by TAC109
Yesterday, 21:49
Forum: Ask for Help (v2)
Topic: FileInstall not working
Replies: 3
Views: 143

Re: FileInstall not working

The icon may already exist at the destination location. In this case set the 'overwrite' parameter to 1.

Cheers
by TAC109
Yesterday, 18:38
Forum: AutoHotkey Development
Topic: Load time warnings not captured by /ErrorStdOut
Replies: 1
Views: 492

Re: Load time warnings not captured by /ErrorStdOut

lexikos Any thoughts on this? As it stands at present any load-time warnings will be carried forward into the compiled .exe so that whenever this is run, the warnings will appear. It would be better if Ahk2Exe was able to trap load-time warnings and allow the user to continue the compile or abandon...
by TAC109
Yesterday, 17:34
Forum: Scripts and Functions (v1)
Topic: ScriptGuard: Helps Protect Compiled Scripts from Decompilation
Replies: 77
Views: 21363

Re: ScriptGuard: Helps Protect Compiled Scripts from Decompilation

ScriptGuard is about as safe as any other method of encrypting the source. The random password is stored as a binary blob embedded in the generated machine code. Additionally there is a string of random data that is used to prime the algorithm prior to source encryption.

Cheers
by TAC109
16 May 2024, 23:30
Forum: Scripts and Functions (v1)
Topic: Upcoming Ahk2Exe Changes (2024)
Replies: 630
Views: 186150

Re: Upcoming Ahk2Exe Changes (2024)

Thanks @JoeWinograd.

I have set up an Mpress binary release on GitHub and now download it from there to avoid the recent problems with the AutoHotkey web site.

Cheers
by TAC109
16 May 2024, 20:38
Forum: Ask for Help (v2)
Topic: Send the output of program execution to a variable Topic is solved
Replies: 8
Views: 480

Re: Send the output of program execution to a variable Topic is solved

Thank you! But there is something I don't understand. If I run these instructions (with correct ip address), I would have hoped that the response from the ftp server would end up in the Clipboard Clipboard := "" ipAdr := '??.??.??.??' Run A_ComSpec " /c ftp " ipAdr " | clip " MsgBox A_Clipboard But...
by TAC109
16 May 2024, 19:41
Forum: Scripts and Functions (v1)
Topic: Upcoming Ahk2Exe Changes (2024)
Replies: 630
Views: 186150

Re: Upcoming Ahk2Exe Changes (2024)

Update - 1.1.37.02a0, 17 May 2024
  • Get Mpress more reliably in the Updater.
  • Fix addition of new base file in the GUI.
See this post for download details.
by TAC109
03 May 2024, 05:21
Forum: Ask for Help (v2)
Topic: v2 encryptor Topic is solved
Replies: 13
Views: 966

Re: v2 encryptor Topic is solved

so if i didn't misunderstand. 1. when i copy the snippet in summary, by default it does not allow uncompile script if its compressed with upx.?? 2. if its done with mpress same thing?? ScriptGuard encrypts the script so that the script cannot be viewed in the compiled .exe. Additionally, if you the...
by TAC109
02 May 2024, 17:37
Forum: Ask for Help (v2)
Topic: v2 encryptor Topic is solved
Replies: 13
Views: 966

Re: v2 encryptor Topic is solved

1. what is the ;@[something here] for?? This is the format for Compiler Directives, which have meaning to the Ahk2Exe compiler but are ignored when the script is run directly. See this link for more information. 2. is the scripguard1.ahk code v1 code or can i run it with v2 executable? The ScriptGu...
by TAC109
01 May 2024, 20:32
Forum: Ask for Help (v2)
Topic: v2 encryptor Topic is solved
Replies: 13
Views: 966

Re: v2 encryptor Topic is solved

I don’t know if you have looked at ScriptGuard (link in my sig), but it is a straightforward way of encrypting a script during the Ahk2Exe compilation process.

Cheers
by TAC109
01 May 2024, 00:51
Forum: Bug Reports
Topic: Error trying to download the V1 and V2 files with current version number
Replies: 21
Views: 2021

Re: Error trying to download the V1 and V2 files with current version number

Thanks for looking into this @joedf.
I’m also having problems using UrlDownloadToFile on https://www.autohotkey.com/mpress/mpress.219.zip, used in the Ahk2Exe Updater.

Cheers
by TAC109
30 Apr 2024, 18:35
Forum: Bug Reports
Topic: Error trying to download the V1 and V2 files with current version number
Replies: 21
Views: 2021

Re: Error trying to download the V1 and V2 files with current version number

@joedf Do you still have some Cloudflare restrictions in place? UrlDownloadToFile from the AutoHotkey site is still not working.

Cheers
by TAC109
29 Apr 2024, 17:45
Forum: Bug Reports
Topic: Error trying to download the V1 and V2 files with current version number
Replies: 21
Views: 2021

Re: Error trying to download the V1 and V2 files with current version number

Problems like this occur when the AutoHotkey administrators turn on Cloudflare monitoring, which can inject ‘I am not a robot' code into the interaction.

All should return to normal when the Cloudflare monitoring is switched off.

Cheers
by TAC109
20 Apr 2024, 20:35
Forum: Ask for Help (v1)
Topic: Can you set working directory to one level up in a easy way? Topic is solved
Replies: 2
Views: 221

Re: Can you set working directory to one level up in a easy way? Topic is solved

The .. syntax in a path takes you up one directory, so if your current directory is Tools then the following code will take you to the Settings directory:

Code: Select all

SetWorkingDir ..\Settings
Cheers
by TAC109
14 Apr 2024, 17:04
Forum: Scripts and Functions (v1)
Topic: ScriptGuard: Helps Protect Compiled Scripts from Decompilation
Replies: 77
Views: 21363

Re: ScriptGuard: Helps Protect Compiled Scripts from Decompilation

helloicanseeu ScriptGuard should work with all recent versions of AutoHotkey v1.1 and v2, so I suspect that something else is going on here. Could you please supply more details about the problem you experienced, including a screenshot of Ahk2Exe with parameters supplied, and the ;@Ahk2Exe- lines i...
by TAC109
14 Apr 2024, 03:21
Forum: Scripts and Functions (v1)
Topic: ScriptGuard: Helps Protect Compiled Scripts from Decompilation
Replies: 77
Views: 21363

Re: ScriptGuard: Helps Protect Compiled Scripts from Decompilation

helloicanseeu It looks like you usually compile with a *.bin base file. Have you inadvertently tried to compile using a *.exe base file? If you wish to continue to compile against an *.exe base file in future you will need to change the relevant ;@Ahk2Exe- lines in your script. (See the summary in ...
by TAC109
12 Apr 2024, 20:44
Forum: Scripts and Functions (v1)
Topic: ScriptGuard: Helps Protect Compiled Scripts from Decompilation
Replies: 77
Views: 21363

Re: ScriptGuard: Helps Protect Compiled Scripts from Decompilation

@jsong55 Could you explain the reason for your request, please.

Cheers
by TAC109
11 Apr 2024, 23:14
Forum: Scripts and Functions (v1)
Topic: ScriptGuard: Helps Protect Compiled Scripts from Decompilation
Replies: 77
Views: 21363

Re: ScriptGuard: Helps Protect Compiled Scripts from Decompilation

guest3456 There is a disadvantage with AutoHotkey_H in that to change the password used, it is necessary to modify it in the AHK_H source and recompile to generate a new AutoHotkey_H executable. With ScriptGuard a different random password key is automatically generated to encode the source, each t...
by TAC109
10 Apr 2024, 23:50
Forum: Ask for Help (v1)
Topic: ahk compile
Replies: 2
Views: 86

Re: ahk compile

You can: Cheers

Go to advanced search