| Author |
Message |
Forum: Scripts Topic: generate GUID |
| Ferry |
|
Posted: March 20th, 2012, 3:58 pm
|
|
Replies: 7 Views: 454
|
|
 |
Forum: Scripts Topic: generate GUID |
| Ferry |
|
Posted: March 20th, 2012, 2:54 pm
|
|
Replies: 7 Views: 454
|
Probably the shortest script ever but it can be very usefull.
Code: TypeLib := ComObjCreate("Scriptlet.TypeLib") NewGUID := TypeLib.Guid MsgBox %NewGUID%
|
|
 |
Forum: Support Topic: Group Description / User Full Name (Local) |
| Ferry |
|
Posted: March 17th, 2012, 2:51 pm
|
|
Replies: 11 Views: 250
|
| GlxyDs, You should be more clear on what you mean by full username. Autohotkey only provides the username by default (%A_UserName%). Also groupnames are not automatically retrieved by Autohotkey itself. Fortunately using AHK COM you can use LDAP to get the information you probably want. The followin... |
|
 |
Forum: Scripts Topic: AD: Enumerate the groups a user/computer belongs to. |
| Ferry |
|
Posted: February 25th, 2012, 11:10 pm
|
|
Replies: 0 Views: 128
|
| Just someting i would like to share with you all. This AHK script is created using the following VB script: http://www.rlmueller.net/Programs/EnumUserGroups.txt ComObjError(false) objSysInfo := ComObjCreate("ADSystemInfo") UserNameDN := objSysInfo.UserName If !UserNameDN ... |
|
 |
Forum: Scripts Topic: Read basic information from a Windows Installer File (*.msi) |
| Ferry |
|
Posted: January 25th, 2012, 10:46 pm
|
|
Replies: 0 Views: 461
|
| Just something i created to do my job a little easier and i wanted to share this script with you all. Use it with AutoHotkey 1.1.05.06. /* Script: MSI Information Info: Displays basic Windows Installer File (*.msi) information Author: Ferry van Gelderen Date: 25-01-2012 */ #SingleInstance of... |
|
 |
Forum: Scripts Topic: Handy AD Group Membership script (recrusive). |
| Ferry |
|
Posted: January 19th, 2012, 8:59 pm
|
|
Replies: 5 Views: 733
|
| Xanthus, thanks for your code. I'am still using the following VBS script to get all nested groups from the user running the VBS script. I know it is possible to translate this VBS code to Autohotkey but unfortunatly i am not getting the results (nested groups) i want in autohotkey. The 'IsUserOfGrou... |
|
 |
Forum: Scripts Topic: Service() - Function set for Handling Windows Services |
| Ferry |
|
Posted: November 28th, 2011, 10:13 pm
|
|
Replies: 15 Views: 5702
|
| This is EXACTLY what i needed. I'm implementing an application on my work and i needed it to run both logged- and not logged in. However, i have a small problem with it. I tried making it an automatic service, but it simply adds it as a manual one. And the second problem is when i start it, it will... |
|
 |
Forum: Scripts Topic: mp3 player using bass.dll with option to set Album Cover Art |
| Ferry |
|
Posted: May 17th, 2011, 9:55 pm
|
|
Replies: 10 Views: 1545
|
Looks really cool. I was looking for a way to get back to the main screen after adjusting the volume. Took me some time to understand that i had to move the mousepointer from the player.
Apart from that i really love this little mp3 player.  |
|
 |
Forum: Scripts Topic: Drag & Drop ListView items (feed the animals) |
| Ferry |
|
Posted: May 16th, 2011, 8:51 pm
|
|
Replies: 0 Views: 764
|
| This is something i would like to share with you. I was looking for a way to drag & drop listview items since Autohotkey is not supporting this by default. Searching this forum i found that drag & drop between a treeview and listview can be done but dropping on listview items still seems to ... |
|
 |
Forum: Scripts Topic: LDAP Wrapper Functions |
| Ferry |
|
Posted: May 4th, 2011, 7:45 pm
|
|
Replies: 11 Views: 2165
|
| It would be great is someone with knowledge about dllcalls and ldap would continue this. If someone want to test the ldap functions it is also possible to setup a Windows 2000/2003/2008 server with Active Directory enabled. Connecting to the AD ldap database works fine using these functions. I tried... |
|
 |
Forum: Offtopic Topic: Autohotkey group on LinkedIn.com |
| Ferry |
|
Posted: August 27th, 2010, 10:53 pm
|
|
Replies: 2 Views: 562
|
I did see an AutoIt group on LinkedIn but i am missing an Autohotkey group. I think it would be nice if the owner of the Autohotkey site can create this group.  |
|
 |
Forum: Scripts Topic: System + Network monitor - with net history graph |
| Ferry |
|
Posted: October 3rd, 2009, 8:23 pm
|
|
Replies: 2 Views: 1364
|
Very nice! Thanks for sharing.  |
|
 |
Forum: Support Topic: StringReplace tab |
| Ferry |
|
Posted: September 28th, 2009, 3:12 pm
|
|
Replies: 2 Views: 322
|
StringReplace, MyVar, MyVar, %A_Tab%, `,, All
Works!
 |
|
 |
Forum: Support Topic: StringReplace tab |
| Ferry |
|
Posted: September 28th, 2009, 2:44 pm
|
|
Replies: 2 Views: 322
|
| The string MyVar contains multiple tabs and linefeeds. If i replace all linefeeds with commas it works fine using the command: StringReplace, MyVar, MyVar, `n, `,, All But when i want to replace all tabs with commas it looks like the following command is not working: StringReplace, MyVar, MyVar, `t,... |
|
 |
Forum: Support Topic: Editbox list, how to read each line? |
| Ferry |
|
Posted: September 25th, 2009, 2:59 pm
|
|
Replies: 5 Views: 427
|
| Oke forget my previous post. Something like this? Gui, Add, Text,, List the incidents to be closed: Gui, Add, Edit, xm w180 h140 vToClose Gui, Add, Button, default, OK Gui, Show,, Close Incidents return ButtonOK: GuiControlGet, ToClose Loop, parse, ToClose, `n { MsgBox, Line %A_Index% is %A_Loo... |
|
 |
| Sort by: |