36 lines
1014 B
AutoHotkey
36 lines
1014 B
AutoHotkey
; --------------------------------------------------
|
|
; Unattended package deployment
|
|
; 2018-11-15 joe.tretter@kcc.com Implmentation
|
|
; --------------------------------------------------
|
|
|
|
SendMode Input
|
|
CoordMode, Mouse, Window
|
|
CoordMode, Pixel, Window
|
|
|
|
;; If the deployment manager is already open, close it
|
|
;IfWinExist, Accenture CAS Deployment Manager
|
|
;{
|
|
; WinActivate, Accenture CAS Deployment Manager
|
|
; send, !{f4}
|
|
; ; wait 3 sec for the deployment manager to fully shut down
|
|
; sleep, 3000
|
|
;}
|
|
|
|
|
|
Run, %1%casDeploymentManager.exe,%1%
|
|
|
|
; wait long -- we are not in a hurry..
|
|
sleep 10000
|
|
|
|
;WinWait, Accenture CAS Deployment Manager
|
|
;WinActivate, Accenture CAS Deployment Manager
|
|
;sleep 1000
|
|
;ControlClick,x35 y85,Accenture CAS Deployment Manager
|
|
|
|
ControlSend,,{tab}{space},Accenture CAS Deployment Manager
|
|
|
|
; wait long -- we are not in a hurry..
|
|
sleep 30000
|
|
;ControlClick,x95 y80,Accenture CAS Deployment Manager
|
|
ControlSend,,{tab}{tab}{space},Accenture CAS Deployment Manager
|