請問如何在ahk的內容直接包覆一段bat或vbs語法
舉例
透過ahk要寫成這樣才能執行五個功能,而且變成快閃5個視窗
run powercfg -x -monitor-timeout-ac 15
run powercfg -x -disk-timeout-ac 0
run powercfg -x -standby-timeout-ac 0
run powercfg -x -hibernate-timeout-ac 0
run netsh advfirewall set allprofiles state off
如果是bat,同個視窗就可以完成5件事
powercfg -x -monitor-timeout-ac 15
powercfg -x -disk-timeout-ac 0
powercfg -x -standby-timeout-ac 0
powercfg -x -hibernate-timeout-ac 0
netsh advfirewall set allprofiles state off
ahk有類似語法可以把整段bat或vbs的內容整合在ahk內嗎
上面只是舉例,主要是bat有用到for if等等功能,沒時間再研究ahk要怎麼寫
只好整合現有的批次檔
而不用在呼叫外部的bat或vbs檔案
謝謝