|
cmd中可以查看Windows PowerShell中自动化变量:
C:\Users\test>PowerShell (Get-Variable ShellId).value ShellId是自动化变量
Microsoft.PowerShell
cmd中如何才能查看Windows PowerShell中自定义的变量?
在PowerShell 中设置了自定义变量:
PS C:\Users\test> $tesst=100
cmd中查看Windows PowerShell中自定义变量:
C:\Users\test>PowerShell (Get-Variable tesst).value
Get-Variable : 找不到名为“tesst”的变量。
所在位置 行:1 字符: 14
+ (Get-Variable <<<< tesst).value
+ CategoryInfo : ObjectNotFound: (tesst:String) [Get-Variable], I
temNotFoundException
+ FullyQualifiedErrorId : VariableNotFound,Microsoft.PowerShell.Commands.G
etVariableCommand
|
|