Search found 13 matches

by Ferry
12 Apr 2023, 10:43
Forum: Ask for Help (v2)
Topic: Help with DLLCall and getting information
Replies: 2
Views: 248

Re: Help with DLLCall and getting information

Thanks @swagfag! Tested it and it works like a charm.
by Ferry
12 Apr 2023, 07:22
Forum: Ask for Help (v2)
Topic: Help with DLLCall and getting information
Replies: 2
Views: 248

Help with DLLCall and getting information

Hello, I'm trying to make the first part of getting the buffer size of the GetCurrentApplicationUserModelId to work: https://learn.microsoft.com/en-us/windows/win32/api/appmodel/nf-appmodel-getcurrentapplicationusermodelid The second part already works if i set the buffersize manualy to an appropiat...
by Ferry
20 Mar 2023, 08:05
Forum: Scripts and Functions (v2)
Topic: Appx/MSIX Proces information using AutoHotKey 2
Replies: 0
Views: 286

Appx/MSIX Proces information using AutoHotKey 2

If you are looking for a way to get AppX/MSIX information for your product running within an AppX/MSIX environment (Windows 10 or 11) you can use this AutoHotKey v2 script as a starting point. The script will retrieve information like the Application Id (AppId) so you know what entry point (shortcut...
by Ferry
10 Feb 2023, 05:51
Forum: Scripts and Functions (v1)
Topic: Get AppX/MSIX information by process
Replies: 2
Views: 639

Re: Get AppX/MSIX information by process

Hi Marius, I don't think you can determine if the product is bought but most App-X UWP applications are retrieved from the Microsoft Store. Some of them free and some of them paid. Using MSIX you now have the possibility to create your own UWP application for your own Win32 programs and scripts (Aut...
by Ferry
01 Feb 2023, 05:19
Forum: Scripts and Functions (v1)
Topic: Get AppX/MSIX information by process
Replies: 2
Views: 639

Get AppX/MSIX information by process

So i needed information on how i can get AppX/MSIX package information for existing running processes and the current process when the compiled AutoHotKey script is running within an AppX/MSIX container environment. I came up with the following functions you can use. This script will start Notepad.e...
by Ferry
02 Aug 2018, 02:51
Forum: Scripts and Functions (v1)
Topic: [Game] AHK Klondike Solitaire
Replies: 18
Views: 6245

Re: [Game] AHK Klondike Solitaire

Great script!!! Can you build in an "undo" (last set) option? :-)
by Ferry
28 Feb 2018, 16:41
Forum: Scripts and Functions (v1)
Topic: GUID & UUID
Replies: 19
Views: 14795

Re: GUID & UUID

You also can use COM :D

Code: Select all

GenerateGUID()
	{
	TypeLib := ComObjCreate("Scriptlet.TypeLib")
	RANDOMGUID := TypeLib.Guid
	Transform, RANDOMGUID, deref, %RANDOMGUID%
	ObjRelease(TypeLib)
	Return RANDOMGUID
	}
by Ferry
25 Sep 2015, 09:42
Forum: Scripts and Functions (v1)
Topic: Examples of Non-Standard GUIs (ActiveX, GDI, etc.)
Replies: 391
Views: 243195

Re: Examples of Non-Standard GUIs (ActiveX, GDI, etc.)

Windows 8 Look a like gui's can be created using the following functions: LinearGradient (http://ahkscript.org/boards/viewtopic.php?f=6&t=3593) Class_ImageButton (http://ahkscript.org/boards/viewtopic.php?f=6&t=1103) I am using the "TechSmith SnagIt" setup application as an example. http://i60.tinyp...
by Ferry
02 Apr 2015, 01:38
Forum: Scripts and Functions (v1)
Topic: Circle progress bar
Replies: 32
Views: 21744

Re: Circle progress bar

FanaticGuru wrote:
Ferry wrote:Nice! but it is not working on Unicode 64 bit for now.
You just need the 64 bit version of gdip.

https://www.dropbox.com/s/0e9gdfetbfa8v0o/Gdip_All.ahk

You have to rename that to Gdip.ahk and put in your lib folder.

FG
That did the trick. Thanks!
by Ferry
01 Apr 2015, 09:39
Forum: Scripts and Functions (v1)
Topic: Circle progress bar
Replies: 32
Views: 21744

Re: Circle progress bar

Nice! but it is not working on Unicode 64 bit for now.
by Ferry
18 Feb 2015, 15:11
Forum: Ask for Help (v1)
Topic: False positive on antivirus programs
Replies: 3
Views: 8705

Re: False positive on antivirus programs

Hi Gio, Thanks for your reply. I will do some tests regarding the use of mpress.exe. Is it possible to still use UPX.exe? Are there any other alternatives for mpress or upx? I'm not really worried about the code being visable or not but i'am worried about false positives and people claiming your pro...
by Ferry
18 Feb 2015, 14:22
Forum: Ask for Help (v1)
Topic: False positive on antivirus programs
Replies: 3
Views: 8705

False positive on antivirus programs

Hello, I'm using Autohotkey for serveral years now and i have build numerous applications/tools for both private and business environments. Let me be clear, i do not build virus or mallware like applications and i compile my programs on a clean (virtual) computer that is not connected to the interne...
by Ferry
22 Sep 2014, 09:21
Forum: Scripts and Functions (v1)
Topic: Set permissions for registry, files and folders
Replies: 4
Views: 4647

Set permissions for registry, files and folders

Just something i would like to share with you all :) ;ComObjError(false) ;AccessMask: 2032127 = FULL | 1179817 = READ | 1179958 = WRITE | 1245631 = CHANGE ;Flags: 0 = This folder only | 1 = This folder and files | 2 = This folder and subfolders | 3 = This folder, subfolders and files ;Examples SetSe...

Go to advanced search