In the powershell script to install pool on Windows, the system tries to find the system architecture with
$osArch = [System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture
but this isn't always available. If you change it to
$osArch = [System.Runtime.InteropServices.RuntimeInformation,mscorlib]::OSArchitecture.ToString().ToLower()
then you should be able to get an architecture back 99% of the time.
In the powershell script to install pool on Windows, the system tries to find the system architecture with
but this isn't always available. If you change it to
then you should be able to get an architecture back 99% of the time.