Search found 1118 matches

by TAC109
Yesterday, 05:21
Forum: Ask for Help (v2)
Topic: v2 encryptor
Replies: 13
Views: 776

Re: v2 encryptor

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
Replies: 13
Views: 776

Re: v2 encryptor

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
Replies: 13
Views: 776

Re: v2 encryptor

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: 7
Views: 689

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: 7
Views: 689

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: 7
Views: 689

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: 193

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: 74
Views: 20581

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: 74
Views: 20581

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: 74
Views: 20581

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: 74
Views: 20581

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: 64

Re: ahk compile

You can: Cheers
by TAC109
10 Apr 2024, 21:35
Forum: Visual Studio Code
Topic: Compile Error No default Base file specified on VSCode AutoHotKey Plus Plus Extension
Replies: 1
Views: 173

Re: Compile Error No default Base file specified on VSCode AutoHotKey Plus Plus Extension

The error message is trying to help you with this problem. Press the Windows key and select Ahk2Exe to open the Ahk2Exe GUI (graphical user interface). In the 'base file' drop-down select the 'v2.0.12 U64 AutoHotkey64.exe' entry (for example). (You can select any other options you wish to use as def...
by TAC109
02 Apr 2024, 19:02
Forum: Scripts and Functions (v1)
Topic: ScriptGuard: Helps Protect Compiled Scripts from Decompilation
Replies: 74
Views: 20581

Re: ScriptGuard: Helps Protect Compiled Scripts from Decompilation

Update 03 Apr 2024

Document that ScriptGuard can be used with AutoHotkey_H v2.
by TAC109
30 Mar 2024, 22:04
Forum: Ask for Help
Topic: can't compile with ahk2exe_h but works fine with normal
Replies: 17
Views: 595

Re: can't compile with ahk2exe_h but works fine with normal

thqby wrote:
30 Mar 2024, 20:41
@TAC109

In my tests, ScriptGuard2 also works for ahk_h.
Well, I didn’t know that! Thanks for letting me know.

Cheers
by TAC109
30 Mar 2024, 17:40
Forum: Ask for Help
Topic: can't compile with ahk2exe_h but works fine with normal
Replies: 17
Views: 595

Re: can't compile with ahk2exe_h but works fine with normal

Trying to encrypt the compiled version. So I followed the steps to set the password in C++ with Visual Studio Rather than trying to convert your scripts to AutoHotkey_H so as to allow encryption of your source, you could instead try ScriptGuard which also encrypts compiled scripts and works with re...
by TAC109
30 Mar 2024, 17:29
Forum: General Discussion
Topic: How many have Spinning HDs vs SSDs?
Replies: 12
Views: 333

Re: How many have Spinning HDs vs SSDs?

Thanks for the feedback. Windows caches access to permanent disks anyway. Are you sure it will help performance to write your own caching scheme as well? I'm actually not sure... My main reason for doing this is because I just think it might be annoying to people if their HD has to wake up and spin...
by TAC109
29 Mar 2024, 21:15
Forum: General Discussion
Topic: How many have Spinning HDs vs SSDs?
Replies: 12
Views: 333

Re: How many have Spinning HDs vs SSDs?

Windows caches access to permanent disks anyway. Are you sure it will help performance to write your own caching scheme as well?

Cheers
by TAC109
28 Mar 2024, 20:35
Forum: Ask for Help
Topic: can't compile with ahk2exe_h but works fine with normal
Replies: 17
Views: 595

Re: can't compile with ahk2exe_h but works fine with normal

You should post this question in the AutoHotkey_H section of the forums.

Cheers

Go to advanced search