| Author |
Message |
Forum: Support Topic: Change Windows Vista theme |
| donv |
|
Posted: May 10th, 2011, 5:11 pm
|
|
Replies: 17 Views: 3155
|
| ; substitute a valid theme name for landscapes.theme, and you can change themes on-the-fly. ; this doesnt supress the themes dialog, but closes it automatically ;#NoEnv SendMode Input SetWorkingDir %A_ScriptDir% do=C:\Windows\Resources\Themes\landscapes.theme run, %do%, , UseErrorLevel Winwait, Pers... |
|
 |
Forum: Offtopic Topic: Why isn't anybody helping Chris with the original branch? |
| donv |
|
Posted: August 13th, 2010, 2:46 pm
|
|
Replies: 45 Views: 2765
|
| Seems to me that we should define the vision of AHK2 in business terms and objectives - taking cues from projects which have survived the test of time and which have been adopted as successful languages. We should agree on the core charter of the AHK2, what are the core paradigms of it’s existence, ... |
|
 |
Forum: Support Topic: Simple comspec based command fails in Windows 7 |
| donv |
|
Posted: March 30th, 2010, 9:20 pm
|
|
Replies: 1 Views: 439
|
| I have seen several posts for UAC support in AHK. However my goal is simple. Within a Windows 7 based system: 1. Run a compiled script as non-administrative user. 2. Have the script (using stored credentials - and with no user input) be able to execute a runas, and run commands as administrator. The... |
|
 |
Forum: Support Topic: Simple comspec based command fails in Windows 7 |
| donv |
|
Posted: March 30th, 2010, 5:48 pm
|
|
Replies: 1 Views: 439
|
This works fine in XP but fails in Windows 7
-----
RunAs, %abc%, %def%
RunWait, %comspec% /c dir c:\ > c:\temp\testfile.txt, , Hide UseErrorLevel
-----
Anyone have any thoughts on using comspec in windows 7?
Thanks in advance.
Don |
|
 |
Forum: Scripts Topic: Tool to delete (log) files older than specified date. |
| donv |
|
Posted: April 15th, 2009, 10:38 pm
|
|
Replies: 6 Views: 6432
|
| Hello, OVERVIEW: I have needed a utility to do this for awhile, and was writing another AHK app which generates log files, and thought it would be nice to have a utility to delete files older than a certian date. This utility can be run from a command line, or can be configured as a scheduled task i... |
|
 |
Forum: Scripts Topic: [function] httpQuery GET and POST requests - update 0.3.6 |
| donv |
|
Posted: March 5th, 2009, 9:56 pm
|
|
Replies: 232 Views: 82639
|
| Could anyone give me a quick example syntax of how to use httpQuery against a server using HTTPS instead of http. i read the docs, and read the code and i dont get it. I tried this and results come back empty. REPORTURL = "https://www.amazon.com" length := httpQuery(htmlx,REPORTURL,POSTdat... |
|
 |
Forum: Scripts Topic: [script] Connectivity monitoring utility |
| donv |
|
Posted: February 4th, 2009, 6:09 pm
|
|
Replies: 10 Views: 3142
|
hide doesnt work in win98. i think that is a known issue.. time to upgrade..  |
|
 |
Forum: Scripts Topic: [script] Connectivity monitoring utility |
| donv |
|
Posted: February 4th, 2009, 4:23 pm
|
|
Replies: 10 Views: 3142
|
| I tested the new version and it seems to work. Havent tested long enough to really understand how it works but wanted to say 'thanks' and wanted to let you know it does work. Imagine an internet connection monitoring tool that works like this: 1. Tool runs when computer starts up (with no user inter... |
|
 |
Forum: Scripts Topic: [script] Connectivity monitoring utility |
| donv |
|
Posted: January 29th, 2009, 7:53 pm
|
|
Replies: 10 Views: 3142
|
anyone have any idea why i get the error:
Error: Call to non existent function?
i have StdoutToVar.ahk in the same dir as my .ahk file.
sorry if this seems stupid.. but i played with this awhile and cant get it to run.
thanks.
-d |
|
 |
Forum: Scripts Topic: Bored At Work |
| donv |
|
Posted: January 6th, 2009, 9:25 pm
|
|
Replies: 12 Views: 2656
|
| I wrote this quick ROT13 converter, and also wrote one to do ROT47. Kindof fun super-basic obfuscation.. -d ; got the idea here: ; http://www.autohotkey.com/forum/viewtopic.php?t=3191&highlight=aes #MaxThreadsPerHotkey 20 #MaxThreadsBuffer On #MaxHotkeysPerInterval 200 SetKeyDelay -1 ; ROT13 Typ... |
|
 |
Forum: Support Topic: encrypt AES decrypt PHP |
| donv |
|
Posted: December 19th, 2008, 5:16 pm
|
|
Replies: 19 Views: 27024
|
| I am interested in implementing public/private key encryption using AHK.. May be really beneficial if i could see what you have completed. Thank you in advance. |
|
 |
Forum: Support Topic: Has anyone implemented public-private key encryption in AHK? |
| donv |
|
Posted: December 12th, 2008, 4:06 am
|
|
Replies: 1 Views: 492
|
| Any thoughts on this? this is a sample script which is just proof of concept that a key could be securely generated and exchanged with another computer across the public Internet. I got the idea for this (three pass key exchange) here: http://en.wikipedia.org/wiki/Public-key_cryptography /snip from ... |
|
 |
Forum: Support Topic: Has anyone implemented public-private key encryption in AHK? |
| donv |
|
Posted: December 11th, 2008, 5:39 pm
|
|
Replies: 1 Views: 492
|
| Hello, I have searched the AHK forums and have seen several encryption and obfuscation functions and utilities written in AHK but i am specifically interested to know if anyone has implemented public/private key encryption/decryption using AHK. Any thoughts or input would really be appreciated. Than... |
|
 |
Forum: Support Topic: help sending ctrl alt break |
| donv |
|
Posted: November 11th, 2008, 11:02 pm
|
|
Replies: 2 Views: 2114
|
| i used: #InstallKeybdHook #UseHook #KeyHistory 100 ;msgbox, 0, , start, ;sleep 10000 ;keyhistory to find the keycodes sent by pressing {Ctrl} {Alt} {Break} which resulted in me finding: VK SC Type Up/Dn Elapsed Key Window ------------------------------------------------------------------------------... |
|
 |
Forum: Support Topic: help sending ctrl alt break |
| donv |
|
Posted: November 11th, 2008, 10:20 pm
|
|
Replies: 2 Views: 2114
|
| to test this, open a microsoft terminal services connection to any server (in full screen mode) then hit ctrl alt break. i noticed that pressing: the {Ctrl} key and the {Break} key followed by the {Alt} key does not work to close terminal services. I noticed that you have to press {Ctrl} and {Alt} a... |
|
 |
| Sort by: |