Search found 30 matches

by uhwok3n
29 Jul 2020, 20:28
Forum: Ask for Help
Topic: Compiling Ahk_h and using a Dynamic Password (v1) Topic is solved
Replies: 29
Views: 17729

Re: Compiling Ahk_h and using a Dynamic Password (v1) Topic is solved

Hey kyuuuri and AutoKeyIt . I created the zip file with the ahk script mentioned before: script:="MsgBox this is a test" VarSetCapacity(var,StrPut(script,"UTF-8")) size:=StrPut(script,&var,"UTF-8") sz:=ZipRawMemory(&var,size, dest, "AutoHotkey") f:=FileOpen("C:\Temp\AHK.zip","w","UTF-8-RAW") f.RawWr...
by uhwok3n
29 Jul 2020, 06:28
Forum: Ask for Help
Topic: Compiling Ahk_h and using a Dynamic Password (v1) Topic is solved
Replies: 29
Views: 17729

Re: Compiling Ahk_h and using a Dynamic Password (v1) Topic is solved

@HotKeyIt What is a good key length if I want to be as secure as possible? I'm using separate math algorithms for alternating characters and booleans to help diversify the password. Can you give me an example of how long I should make my password if I want it really secure? Edit: Right now I'm thin...
by uhwok3n
29 Jul 2020, 05:39
Forum: Ask for Help
Topic: Compiling Ahk_h and using a Dynamic Password (v1) Topic is solved
Replies: 29
Views: 17729

Re: Compiling Ahk_h and using a Dynamic Password (v1) Topic is solved

HotKeyIt What is a good key length if I want to be as secure as possible? I'm using separate math algorithms for alternating characters and booleans to help diversify the password. Can you give me an example of how long I should make my password if I want it really secure? Edit: Right now I'm think...
by uhwok3n
08 Jul 2020, 17:22
Forum: Ask for Help
Topic: Compression, Encryption & MPress Work together?
Replies: 1
Views: 2334

Compression, Encryption & MPress Work together?

Hi I'm using all 3 compile options in the AHK_H compiler and I'm wondering if they work together? or if some options cancel out the others?
My concern is if I use compression and MPress that the resulting exe wont get encryption. Clarification would be appreciated.

compiler_options.png
compiler_options.png (37.56 KiB) Viewed 2334 times
by uhwok3n
28 Jun 2020, 16:49
Forum: Ask for Help
Topic: Error: CONTINUABLE EXCEPTION_ACCESS_VIOLATION Topic is solved
Replies: 8
Views: 5562

Re: Error: CONTINUABLE EXCEPTION_ACCESS_VIOLATION Topic is solved

Well, I'll be damned, I downloaded it. I'm trying to figure out this dynamic password situation so I can kill 2 birds with 1 stone. After I compile, I'll see if it points to the problem so I can actually fix it and I'll update the solution here. Thank you to both of you. :)
by uhwok3n
28 Jun 2020, 16:28
Forum: Ask for Help
Topic: Compiling Ahk_h and using a Dynamic Password (v1) Topic is solved
Replies: 29
Views: 17729

Re: Compiling Ahk_h and using a Dynamic Password (v1) Topic is solved

ERR_PARAM1_REQUIRED is a string used fro errormessage from AutoHotkey. I==1 is the second character, 0 is the first. Why 6*2/2? You can run debugger and see yourself what password it would generate, it was just an example.. I will do this, I'm grateful for the clarification. In your newest AHK_H re...
by uhwok3n
27 Jun 2020, 22:37
Forum: Ask for Help
Topic: Error: CONTINUABLE EXCEPTION_ACCESS_VIOLATION Topic is solved
Replies: 8
Views: 5562

Re: Error: CONTINUABLE EXCEPTION_ACCESS_VIOLATION Topic is solved

I solved the issue, this code works if the file is placed in a different directory it does a soft run that just exits the app, the reason this didn't work before was because I had a try catch statement that was formatted incorrectly, if anyone has this issue in the future you can use this in auto ex...
by uhwok3n
27 Jun 2020, 21:49
Forum: Ask for Help
Topic: Error: CONTINUABLE EXCEPTION_ACCESS_VIOLATION Topic is solved
Replies: 8
Views: 5562

Re: Error: CONTINUABLE EXCEPTION_ACCESS_VIOLATION Topic is solved

If it's caused by your AV then add the file to exceptions. Doesn't seem to be a bug in ahk and disabling those errors is not a "fix". If you still want to disable them then I think there was a way, try checking the docs. I understand this is a part of AV, I just want the message to not appear. I do...
by uhwok3n
27 Jun 2020, 20:25
Forum: Ask for Help
Topic: Error: CONTINUABLE EXCEPTION_ACCESS_VIOLATION Topic is solved
Replies: 8
Views: 5562

Error: CONTINUABLE EXCEPTION_ACCESS_VIOLATION Topic is solved

HotKeyIt I'm having this error when I run my compiled program the first time, My Avast Antivirus stops the execution of my compiled executable and AHK_H has this issue. keyboard_hook_error.png I don't really mind the error, I'd just rather not be able to see it. After the first time the AV scans an...
by uhwok3n
25 Jun 2020, 18:47
Forum: Ask for Help
Topic: Compiling Ahk_h and using a Dynamic Password (v1) Topic is solved
Replies: 29
Views: 17729

Re: Compiling Ahk_h and using a Dynamic Password (v1) Topic is solved

Thanks for responding HotKeyIt so in the first if (i ==0) the error param_required pulls what characters? in else if (i == 1) Does it pull the first character? with(+i) so 'a' in else if (i > 5) if i == 5 that would be 5 * 2 which == 10 / i (10/ 2) == 5 which would be 'o'? and when i is 6 it would b...
by uhwok3n
25 Jun 2020, 13:37
Forum: Ask for Help
Topic: Compiling Ahk_h and using a Dynamic Password (v1) Topic is solved
Replies: 29
Views: 17729

Re: Compiling Ahk_h and using a Dynamic Password (v1) Topic is solved

You can do things like this: pw = *(_T("akllerUiuzugz")+6); How does the code mentioned by HotKeyIt work? With the example given by both HotKeyIt and kyuuuri would you replace: TCHAR MyPasswordFunction(int i) { TCHAR pw; if (i == 0) { pw = *(ERR_PARAM1_REQUIRED + i * 2); } else if (i == 1) { pw = '...
by uhwok3n
24 Jun 2020, 00:25
Forum: AutoHotkey_H
Topic: [Guide] Compiling Ahk_h's source step by step Topic is solved
Replies: 51
Views: 49317

Re: [Guide] Compiling Ahk_h's source step by step Topic is solved

HotKeyIt Thank you for taking the time to respond to this, Can I replace all `\0`characters with `\000`manually? Do I have to add anything particular for it to create the correct password regardless of numbers, letters or unicode characters? On another note, I was hoping you could provide some insi...
by uhwok3n
13 Jun 2020, 03:57
Forum: Ask for Help (v1)
Topic: Make script only with very specific SID?
Replies: 7
Views: 1338

Re: Make script only with very specific SID?

@FanaticGuru I use it in several scripts to encrypt passwords in those scripts using the computer's UUID as the key. Then the script will only decrypt the password information correctly on a specific computer. I can then be very lax with my scripts as all the important information in them is safe u...
by uhwok3n
01 Jun 2020, 05:48
Forum: Ask for Help (v1)
Topic: Make script only with very specific SID?
Replies: 7
Views: 1338

Re: Make script only with very specific SID?

While that is nice and pretty damn cool, I'm looking for something that deals with multiple IDs. Their processor, hard drive, windows ID, and other hardware IDs to create a unique ID when the script is ran... If it matches a verification string in script, then run script. I don't want to rely on a s...
by uhwok3n
31 May 2020, 16:36
Forum: Ask for Help (v1)
Topic: Make script only with very specific SID?
Replies: 7
Views: 1338

Make script only with very specific SID?

I can't find much information about using a specific SID(username, hardware IDs(hard drive, processor, ram, other peripherals)) from a user's pc as a requirement to start a script. I.e. if user's computer SID matches a value in array, let user use script, else ExitApp. Can anyone direct me to the co...
by uhwok3n
31 May 2020, 16:30
Forum: Ask for Help
Topic: AHK Compiler <error>
Replies: 24
Views: 10410

Re: AHK Compiler <error>

No, I tried using ahk_h v2 but received that error, it was due to another ahk script(written for v1) that was required for my script to function(v2). I switched back to ahk_h v1 now. No more errors. Thanks for your help @HotKeyIt!
by uhwok3n
30 May 2020, 15:25
Forum: Ask for Help
Topic: AHK Compiler <error>
Replies: 24
Views: 10410

Re: AHK Compiler <error>

I was using another script that wasn't ahk v2 compatible. I really wanted to switch over to V2(I just ended coding naturally with that syntax) but this script is so necessary for what I'm trying to do. Is there any way to run ahk v1 scripts with v2 via emulation?@HotKeyIt
by uhwok3n
30 May 2020, 15:17
Forum: AutoHotkey_H
Topic: How to change file details with AHK_H?
Replies: 9
Views: 2851

Re: How to change file details with AHK_H?

Thank you @HotKeyIt
by uhwok3n
29 May 2020, 05:07
Forum: Ask for Help
Topic: AHK Compiler <error>
Replies: 24
Views: 10410

Re: AHK Compiler <error>

Hello @HotKeyIt! I'm having an issue when I'm compiling my script with V2. Here is a screenshot:
compiler_error.png
compiler_error.png (18.1 KiB) Viewed 6927 times
How can I go about fixing this?
by uhwok3n
26 May 2020, 18:39
Forum: AutoHotkey_H
Topic: How to change file details with AHK_H?
Replies: 9
Views: 2851

Re: How to change file details with AHK_H?

Bump(Woopsies): HotKeyIt So I tried using a space, it doesn't work. Is there a name I can use instead that may trigger this result, i.e. 'null' so that it will do this? Or maybe this functionality can be added to the compiler? Example: ;@Ahk2Exe-SetName null ;@Ahk2Exe-SetDescription null ;@Ahk2Exe-S...

Go to advanced search