Advertisement
Guest User

Brandon's Desktop Boot Script

a guest
Nov 9th, 2012
413
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; Move Digsby buddy list
  2. IfWinExist Buddy List
  3. {
  4.     WinMove,Buddy List,,3619,0,220,998
  5. }
  6.  
  7. ; Move Steam friends list
  8. IfWinExist Friends
  9. {
  10.     WinMove,Friends,,3368,0,250,998
  11. }
  12.  
  13. ; Move Skype contact list
  14. IfWinExist ahk_class tSkMainForm
  15. {
  16.     WinMove,ahk_class tSkMainForm,,3082,0,285,998
  17. }
  18.  
  19. ; Open and move HWMonitor
  20. IfWinExist CPUID Hardware Monitor
  21. {
  22.     WinMove,CPUID Hardware Monitor,,-1910,10,520,900
  23. }
  24. Else
  25. {
  26.     SetWorkingDir D:\Dropbox\Programs\Diagnostic Tools
  27.     Run,HWMonitor64.exe
  28.     WinWait,CPUID Hardware Monitor
  29.     ; WinActivate
  30.     WinMove,CPUID Hardware Monitor,,-1910,10,520,900
  31. }
  32.  
  33. ; Open and move TweetDeck
  34. IfWinExist TweetDeck
  35. {
  36.     WinMove,TweetDeck,,-1380,10,1320,980
  37. }
  38. Else
  39. {
  40.     SetWorkingDir C:\Program Files (x86)\TweetDeck
  41.     Run,TweetDeck.exe
  42.     WinWait,TweetDeck
  43.     ; WinActivate
  44.     WinMove,TweetDeck,,-1380,10,1320,980
  45. }
  46.  
  47. ; Open and move mIRC
  48. IfWinExist ahk_class mIRC
  49. {
  50.     WinMove,ahk_class mIRC,,1930,10,1022,700
  51. }
  52. Else
  53. {
  54.     SetWorkingDir C:\Program Files (x86)\mIRC
  55.     Run,mirc.exe
  56.     WinWait,ahk_class mIRC
  57.     WinActivate
  58.     WinMove,ahk_class mIRC,,1930,10,1022,700
  59.     Send {Enter}
  60. }
  61.  
  62. ; Open and move Ventrilo
  63. IfWinExist Ventrilo
  64. {
  65.     WinMove,Ventrilo,,2962,0,405,998
  66. }
  67. Else
  68. {
  69.     SetWorkingDir C:\Program Files\Ventrilo
  70.     Run,Ventrilo.exe
  71.     WinWait,Ventrilo
  72.     WinActivate
  73.     WinMove,Ventrilo,,2962,0,405,998
  74.    
  75.     ; Connect to KBMOD Ventrilo and join AFK channel
  76.     Send !{O}
  77.     Sleep,500
  78.     Send {TAB}
  79.     Send {TAB}
  80.     Send {TAB}
  81.     Send {TAB}
  82.     Send {TAB}
  83.     Send {TAB}
  84.     Send {TAB}
  85.     Send {TAB}
  86.     Send {TAB}
  87.     Send {A}
  88.     Send {Enter}
  89. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement