Debugging why sys.getwindowsversion() does not work with frozen app.

pull/1550/head
grossmj 5 years ago
parent 4d9728b6f5
commit d506962bdb

@ -57,7 +57,7 @@ class HyperVGNS3VM(BaseGNS3VM):
raise GNS3VMError("Hyper-V is only supported on Windows")
if sys.getwindowsversion().major < 10:# or sys.getwindowsversion().build < 14393:
raise GNS3VMError("Windows 10/Windows Server 2016 or a later version is required to run Hyper-V with nested virtualization enabled")
raise GNS3VMError("Windows 10/Windows Server 2016 or a later version is required to run Hyper-V with nested virtualization enabled (version {} detected)".format(sys.getwindowsversion().major))
try:
conn = wmi.WMI()

Loading…
Cancel
Save