刪除變數

要從記憶體中刪除變數,可以使用 Remove-Item cmdlet。注意:變數名稱不包含 $

Remove-Item Variable:\foo

Variable 有一個提供程式,允許大多數* -item cmdlet 像檔案系統一樣工作。

刪除變數的另一種方法是使用 Remove-Variable cmdlet 及其別名 rv

$var = "Some Variable" #Define variable 'var' containing the string 'Some Variable'
$var #For test and show string 'Some Variable' on the console

Remove-Variable -Name var
$var 

#also can use alias 'rv'
rv var