more strongly typed

This commit is contained in:
2020-09-26 12:33:52 -04:00
parent 95abcf57c4
commit f3b3552726
+1 -1
View File
@@ -216,4 +216,4 @@ switch ( $(Get-CimInstance -ClassName Win32_OperatingSystem -Property OSArchitec
## Function to determine if the Powershell process is 64-bit or not
Function Is64bitShell
{ If ( [Environment]::Is64BitProcess ) { Return $true } Else { Return $false } }
{ If ( [System.Environment]::Is64BitProcess ) { Return $true } Else { Return $false } }