Search found 1021 matches

by Grovkillen
Thu Feb 22, 2024 12:06 pm
Forum: Technical / Scripting
Topic: Can HTMLViewer dialog component display a clickable link?
Replies: 13
Views: 12670

Re: Can HTMLViewer dialog component display a clickable link?

New code: Dialog>Dialog1 object Dialog1: TForm ClientWidth = 250 ClientHeight = 120 object MSHTMLViewer1: tMSHTMLViewer Left = 0 Top = 0 Width = 250 Height = 120 end end EndDialog>Dialog1 LabelToVar>form_html,TEMP_html,1,1,*/ SetDialogProperty>Dialog1,MSHTMLViewer1,HTML,TEMP_html AddDialogHandler>Di...
by Grovkillen
Mon Feb 12, 2024 8:25 am
Forum: Technical / Scripting
Topic: Windows Defender Hates My Executables
Replies: 4
Views: 3560

Re: Windows Defender Hates My Executables

For my own and other's knowledge; here's how I create certificates using PowerShell: Let>NAME_OF_CERTIFICATE=test Let>EXPIRE_OF_CERTIFICATE_IN_YEARS=99 Let>EXPORT_CERTIFICATE_TO=%SCRIPT_DIR%\%NAME_OF_CERTIFICATE%.cert Let>RP_CAPTURESTDOUT=1 Let>POWERSHELL_COMMAND=New-SelfSignedCertificate -DnsName %...
by Grovkillen
Fri Feb 09, 2024 6:53 pm
Forum: Enhancement Suggestions
Topic: [added 15.0.23] Run command, capture STDOUT
Replies: 29
Views: 73545

Re: [added 15.0.23] Run command, capture STDOUT

I've been running the latest version for some days now and no crash yet. Thanks for the help. 8)
by Grovkillen
Fri Feb 09, 2024 6:30 pm
Forum: Technical / Scripting
Topic: Windows Defender Hates My Executables
Replies: 4
Views: 3560

Re: Windows Defender Hates My Executables

We recently had a huge problem with our approach. The excluded files was captured and removed by windows defender. However, we did find a way to manually sign the exe files and add this signature file to Intune. It's free of charges but is only recommended to be used in development purposes. I feel ...
by Grovkillen
Fri Feb 09, 2024 9:55 am
Forum: Technical / Scripting
Topic: VirtualKey for Gamepad/Joystick input
Replies: 10
Views: 6106

Re: VirtualKey for Gamepad/Joystick input

Here's some AutoHotKey discussions regarding XInput: https://www.autohotkey.com/board/topic/ ... oller-api/
by Grovkillen
Fri Feb 09, 2024 9:46 am
Forum: Technical / Scripting
Topic: VirtualKey for Gamepad/Joystick input
Replies: 10
Views: 6106

Re: VirtualKey for Gamepad/Joystick input

They are not serial as in COM, they are part of the USB standard and are identified as XInput devices. As long as a controller/gamepad/joystick comply to this standard no drivers are needed. It's been this way since the Xbox 360 got introduced. I just happened to see that the VK enums contained the ...
by Grovkillen
Thu Feb 08, 2024 7:31 pm
Forum: Technical / Scripting
Topic: VirtualKey for Gamepad/Joystick input
Replies: 10
Views: 6106

Re: VirtualKey for Gamepad/Joystick input

I'm wondering if this would be considered to be added?
by Grovkillen
Tue Feb 06, 2024 2:32 pm
Forum: Enhancement Suggestions
Topic: [added 15.0.23] Run command, capture STDOUT
Replies: 29
Views: 73545

Re: [added 15.0.23] Run command, capture STDOUT

I just updated and will wait and see. Sounds like it's fixed then :)

The update notes could be a tad more informative in this particular case, the "minor fixes" didn't sound too important for me to test :oops: :roll: :)
by Grovkillen
Sat Feb 03, 2024 6:12 pm
Forum: General Discussion
Topic: IF with AND
Replies: 2
Views: 588

Re: IF with AND

Code: Select all

If>{(%cnr% = 1) AND (%dir% = -1)}
And if you are comparing other types:

Code: Select all

If>{(%cnr% = %first%) OR (%cnr% = %another%)}

Code: Select all

If>{(%cnr% = "one") AND (%dir% = "minus one")}
by Grovkillen
Fri Feb 02, 2024 7:21 pm
Forum: Enhancement Suggestions
Topic: [added 15.0.23] Run command, capture STDOUT
Replies: 29
Views: 73545

Re: [added 15.0.23] Run command, capture STDOUT

I just wonder if this is planned to be implemented or if I should not expect it to be addressed?
by Grovkillen
Thu Jan 18, 2024 8:35 pm
Forum: General Discussion
Topic: Unable to Search Website
Replies: 4
Views: 1155

Re: Unable to Search Website

This one?

search.php
by Grovkillen
Wed Jan 17, 2024 5:11 pm
Forum: Scripts and Tips
Topic: Only run script when pc is locked (lock screen)
Replies: 2
Views: 1956

Only run script when pc is locked (lock screen)

Here's a proof of concept to have a script run only when the pc is locked. I just look for the process "LogonUI.exe" which is the lock screen. If it's running then the pc is locked. I hope it's help someone. OnEvent>CUSTOM,LOOP_TO_CHECK_IF_LOCKED_WORKSTATION,LOGONUI_IS_ACTIVE,RUN_THIS_ONLY_WHEN_SCRE...
by Grovkillen
Tue Jan 16, 2024 12:26 pm
Forum: Enhancement Suggestions
Topic: [added 15.0.23] Run command, capture STDOUT
Replies: 29
Views: 73545

Re: [added 15.0.23] Run command, capture STDOUT

Nothing is shared. There shouldn't be a clash. Today the clash happened. A compile script crashed and was started up again. The crash happened during the run command and thus the " output.tmp " file was created in the ...AppData\Local\Temp folder. When the newly started script tried to do a RP_STDO...
by Grovkillen
Wed Jan 10, 2024 6:50 am
Forum: Scripts and Tips
Topic: Random Serial Code Generator
Replies: 6
Views: 9775

Re: Random Serial Code Generator

Thanks Marcus for this code snippet! Came really handy today.
Sign up to our newsletter for free automation tips, tricks & discounts