标签: powershell
我昨天刚开始学习powershell。非常新的PowerShell。我为测试目的创建了很多变量。以下是关于变量的问题
答案 0 :(得分:4)
如何列出我之前创建的所有变量?
Get-Variable -name <name without $>
如何清除变量的所有内容?
Clear-Variable -name <name without $>
Remove-Variable -name <name without $>