jonny
Joined: 13 Nov 2004 Posts: 3004 Location: Minnesota
|
Posted: Wed Feb 02, 2005 10:38 pm Post subject: |
|
|
[link]
The short story is rundll32 runs dlls. Here are some examples, that I actually use on a daily basis:
Folder Options (ME and XP):
rundll32 shell32.dll,Options_RunDLL
Folder Options (2k):
rundll32 shell32.dll,Control_RunDLL appwiz.cpl,@1
Shutdown:
rundll32 user.exe,exitwindows
Restart Windows (9x):
rundll32 user.exe,ExitWindowsExec
Reboot:
rundll32 shell32.dll,SHExitWindowsEx 2
Log off (no confirmation):
rundll32 shell32.dll,SHExitWindowsEx
If you haven't figured this out already, "rundll32" is a command, and thus can be run using AHK's "Run" function. |
|