AutoHotkey: Shutdown computer after download or copy: Difference between revisions

From TotalcmdWiki
Jump to navigation Jump to search
No edit summary
m (Syntax highlighting :-))
Line 1: Line 1:
This script waits for the Background Transfer Manager to close, and then shuts the computer down.
<font color="green">; This script waits for the Background Transfer Manager to close,
 
; and then shuts the computer down.
  WinWaitClose ahk_class DOWNDLGLIST2, Speed limit
; Remark: It will work only with the english version of TC, for other languages
  Shutdown 1
;        you will have to adjust the text "Speed limit"</font>
  <b><font color="blue">WinWaitClose</font></b> <i><font color="darkblue">ahk_class</font></i> DOWNDLGLIST2, Speed limit
  <b><font color="blue">Shutdown</font></b> <font color="red">1</font>


Back to [[AutoHotkey]]
Back to [[AutoHotkey]]


[[de:AutoHotkey: Herunterfahren des PC nach Schließen des Hintergrund Transfer Managers]]
[[de:AutoHotkey: Herunterfahren des PC nach Schließen des Hintergrund Transfer Managers]]

Revision as of 14:05, 12 April 2006

; This script waits for the Background Transfer Manager to close,
; and then shuts the computer down.
; Remark: It will work only with the english version of TC, for other languages
;         you will have to adjust the text "Speed limit"

WinWaitClose ahk_class DOWNDLGLIST2, Speed limit
Shutdown 1

Back to AutoHotkey