Changeset 104532 in vbox for trunk/src/VBox
- Timestamp:
- May 7, 2024 3:09:15 PM (7 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/common/utils.py
r103724 r104532 348 348 # Python platform.release() is not reliable for newer server releases 349 349 if oOsVersion.wProductType != 1: 350 if oOsVersion.dwMajorVersion == 10 and oOsVersion.dwMinorVersion == 0: 351 sVersion = '2016Server'; 350 if oOsVersion.dwMajorVersion == 10 and oOsVersion.dwMinorVersion == 0 \ 351 and oOsVersion.dwBuildNumber == 17763: 352 sVersion = '2019Server' 353 elif oOsVersion.dwMajorVersion == 10 and oOsVersion.dwMinorVersion == 0: 354 sVersion = '2016Server'; #todo: should probably add dwBuildNumber for it as well.. 352 355 elif oOsVersion.dwMajorVersion == 6 and oOsVersion.dwMinorVersion == 3: 353 356 sVersion = '2012ServerR2';
Note:
See TracChangeset
for help on using the changeset viewer.