PowerShell
執行 PowerShell 腳本
Last updated
執行 PowerShell 腳本
Last updated
在 Low-Code 編輯器中撰寫 PowerShell 腳本並執行,其執行產生的標準文字輸出會寫入工作資料夾 output.txt 檔案中。關於 PowerShell 腳本用法請參考連結。
版本 2.2.20230225 以上,在 PowerShell 腳本中支援文檔變數 %FILENAME%。開啟後可在 PowerShell script 中以工作資料夾中 [FILENAME].txt 的內容置換 script 中的 %FILENAME% 字串。
在開啟 %VAR% 功能下,應避免在腳本註解(# 開頭)中出現百分比符號%。Low-Code 編輯器只支援命令(Cmdlet)序列執行,即從上至下按照順序逐行命令執行。如果需要進一步達成流程控制例如 for, foreach, if, switch, while, until 等指令,需要將腳本存成 ps1 檔案,再於 Low-Code 中呼叫:
Windows PowerShell 預設限制呼叫 ps1 檔案,此時可在 Windows 上利用管理員身分(Run as Administrator)啟動 Windows PowerShell 終端機模式,以 Set-ExecutionPolicy 命令更新設定為 RemoteSigned 即可:
PowerShell Low-Code 可以用來自動化 MS Office 的各種應用軟體,例如執行某個 Excel 檔案中的 VBA 巨集: