1
環境変数$Env:ProgramFiles(x86)
を使用すると、開き括弧の前にスペース文字はありません。 PowerShellに必要な領域を生成させるにはどうすればよいですか? PSVersion 5.0.10586.117環境変数が正しく認識されない
PS C:\src\powershell\t> "$Env:ProgramFiles(x86)"
C:\Program Files(x86)
PS C:\src\powershell\t> Get-ChildItem "$Env:ProgramFiles(x86)"
Get-ChildItem : Cannot find path 'C:\Program Files(x86)' because it does not exist.
At line:1 char:1
+ Get-ChildItem "$Env:ProgramFiles(x86)"
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (C:\Program Files(x86):String) [Get-ChildItem]
, ItemNotFoundException
+ FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.GetChildItemCommand
ありがとうございました。私は今参照してください。 – lit