From f3b355272654d536c3af48209cdbd5dce1cc36fe Mon Sep 17 00:00:00 2001 From: dyoder Date: Sat, 26 Sep 2020 12:33:52 -0400 Subject: [PATCH] more strongly typed --- Tools.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools.ps1 b/Tools.ps1 index 96dce06..a9d0cdd 100644 --- a/Tools.ps1 +++ b/Tools.ps1 @@ -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 } }