Determine if current PowerShell Process is 32-bit or 64-bit?

If you’re shell is running on .NET 4.0 (PowerShell 3.0):

PS> [Environment]::Is64BitProcess
True

Leave a Comment