We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5b6933 commit 15dff7aCopy full SHA for 15dff7a
Source/EnablePython.psd1
@@ -12,7 +12,7 @@
12
RootModule = 'EnablePython.psm1'
13
14
# Version number of this module.
15
-ModuleVersion = '2.0.0'
+ModuleVersion = '2.0.1'
16
17
# ID used to uniquely identify this module
18
GUID = '20232e29-56bc-4024-823b-afe3994c9365'
Source/EnablePython.psm1
@@ -396,7 +396,7 @@ function getPythonVersion([System.Management.Automation.ApplicationInfo]$executa
396
397
function is64Bit {
398
# Check if this machine is 64-bit
399
- ((Get-WmiObject Win32_OperatingSystem).OSArchitecture -match '64-bit')
+ ((Get-CimInstance Win32_OperatingSystem).OSArchitecture -match '64-bit')
400
}
401
402
Export-ModuleMember "*-*"
0 commit comments