PowerShell Quick Tip: Accessing the ProgramFiles(x86) Environment Variable
Accessing environment variables in PowerShell is easy, either:
direnv:
to view all of them, or:
direnv:ProgramFiles
to access a specific one. However, if you try that for the ProgramFiles(x86) environment variable you are greeted with the following error:view sourceprint?
PSC:\> direnv:ProgramFiles(x86)
x86 : The term 'x86'is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the
Leave a Reply