; ; AutoHotkey Version: 1.x ; Language: English ; Platform: Win9x/NT ; ; ; Script Function: ; Change the location of the Default Desktop Folder through right-click menu on the systray icon. ; #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. #Persistent HotKey, #1, DIR1 HotKey, #2, DIR2 HotKey, #3, DIR3 HotKey, #4, DIR4 TRAYMENU: Menu,Tray,NoStandard Menu,Tray,DeleteAll Menu,Tray,Add,Desktop &1,DIR1 Menu,Tray,Add,Desktop &2,DIR2 Menu,Tray,Add,Desktop &3,DIR3 Menu,Tray,Add,Desktop &4,DIR4 Menu,Tray,Add,&Reload,RELOAD Menu,Tray,Add,E&xit,EXIT Menu,Tray,Tip,%A_ScriptName% Return DIR1: RunWait, junction.exe -d desktop,c:\documents and settings\jhelm,Hide RunWait, junction.exe Desktop Desktop1,c:\documents and settings\jhelm,Hide DllCall("Shell32\SHChangeNotify", UInt, 0x08000000, UInt, 0, UIntP, 0, UIntP, 0) Reload Return DIR2: RunWait, junction.exe -d desktop,c:\documents and settings\jhelm,Hide RunWait, junction.exe Desktop Desktop2,c:\documents and settings\jhelm,Hide DllCall("Shell32\SHChangeNotify", UInt, 0x08000000, UInt, 0, UIntP, 0, UIntP, 0) Reload Return DIR3: RunWait, junction.exe -d desktop,c:\documents and settings\jhelm,Hide RunWait, junction.exe Desktop Desktop3,c:\documents and settings\jhelm,Hide DllCall("Shell32\SHChangeNotify", UInt, 0x08000000, UInt, 0, UIntP, 0, UIntP, 0) Reload Return DIR4: RunWait, junction.exe -d desktop,c:\documents and settings\jhelm,Hide RunWait, junction.exe Desktop Desktop4,c:\documents and settings\jhelm,Hide DllCall("Shell32\SHChangeNotify", UInt, 0x08000000, UInt, 0, UIntP, 0, UIntÅ, 0) Reload Return RELOAD: Reload Return EXIT: ExitApp