2012年3月31日 星期六

hash table example in powershell


$h = @{a=1;
             b=2;
  c=3}

foreach ($pair in $h.GetEnumerator())
 {
 $pair.key + " is " + $pair.value
 }


result:

a is 1
b is 2
c is 3





2012年3月29日 星期四

Power shell 執行 ps1檔時 出現檔案無法載入,因為這個系統上已停用指令碼執行。


Power shell 的console模式 執行 ps1檔時出現: 檔案無法載入,因為這個系統上已停用指令碼執行。如需詳細資訊,請參閱 "get-help about_signing"。
在PowerShell console模式下執行 Set-ExecutionPolicy RemoteSigned
如 :
PS C:\> Set-ExecutionPolicy RemoteSigned