[Memo]第一次就上手 PowerShell

[Memo]第一次就上手 PowerShell

雖然 Power Shell 出來了很久,也大概知道是什麼。但總是一直沒有什麼機會去使用,能用別的方式搞定就用別的方法。

 

不過,這次沒有現成的項目,又不想要用 bat 檔的寫法 或是 .NET 。所以還是乖乖用 PS

 

這次最主要是希望可以判斷是否有目錄存在,並且可以從外面帶參數。

 

外面帶參數的用法和 .net 的用法很接近都是 $args 的方式來接收 ,而 路徑判斷則是用 Test-Path 這個 Method

 

雖然用 Notepad 也可以編譯修改,但建議還是用 PowerShell ISE 工具來編輯,有不同的顏色標示總是比較好看 微笑

image

 

存檔成 ps1 後,就可以直接在 power shell command console 中直接執行

 

.\Test.ps1 目錄錄徑

 

 

參考

http://blog.darkthread.net/post-2007-11-23-my-first-powershell-script.aspx

http://technet.microsoft.com/en-us/library/ee177003.aspx

http://www.microsoft.com/taiwan/technet/columns/profwin/28-monad.mspx