Tuesday, August 26, 2014

Running 32bit powershell on a 64bit server from c# - Stack Overflow

It is possible to get a Powershell  to check to see what platform is running: 21 or 64-bit.

if ([System.IntPtr]::Size -eq 8) {'64-bit'} else {'32-bit'}


Running 32bit powershell on a 64bit server from c# - Stack Overflow

No comments: