close
由於加入新公司MichaelSoft 開始研究PowerShell,這次分享如何使用"PowerSehll_ISE"以及"編寫與呼叫PowerShell腳本"。
Windows PowerShell 整合式指令碼環境 (ISE)
Windows PowerShell 整合式指令碼環境 (ISE) 是 Windows PowerShell 的主應用程式,我覺得它非常好用你可以在上方直接編寫腳本,下方直接運行腳本。
如何開啟?
按下開始的圖形搜尋: "Windows PowerShell ISE" 即可開啟。 運行後如下圖。
編寫PowerSehll以及傳入參數給PowerShell腳本
腳本程式碼:
Param($inputPar1,$inputPar2)
write-host "Hello $inputPar1"
write-host "Hello $inputPar2"
在PowerShell呼叫腳本
D:\PowerSehllTestingScript.ps1 Melo Meilin
備註:
1.D:\PowerSehllTestingScript.ps1 為我存放腳本之路徑
2.Melo Meilin接在呼叫腳本指令後 為傳入參數1及2
結果如下圖:
文章標籤
全站熱搜