Changeset 46838 in vbox
- Timestamp:
- Jun 27, 2013 12:27:48 PM (11 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Installer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditions.nsi
r45952 r46838 654 654 655 655 ; Which OS are we using? 656 ; @todo Use logic lib here 656 657 !if $%BUILD_TARGET_ARCH% == "x86" ; 32-bit 657 658 StrCmp $g_strWinVersion "NT4" nt4 ; Windows NT 4.0 … … 663 664 StrCmp $g_strWinVersion "7" vista ; Windows 7 664 665 StrCmp $g_strWinVersion "8" vista ; Windows 8 666 StrCmp $g_strWinVersion "8_1" vista ; Windows 8.1 / Windows 2012 Server R2 665 667 666 668 ${If} $g_bForceInstall == "true" … … 698 700 goto success 699 701 700 vista: ; Windows Vista / Windows 7 / Windows 8 702 vista: ; Windows Vista / Windows 7 / Windows 8(.1) 701 703 702 704 ; Check requirments; this function can abort the installation if necessary! -
trunk/src/VBox/Additions/WINNT/Installer/winver.nsh
r38751 r46838 66 66 StrCmp $R1 '6.0' lbl_winnt_vista 67 67 StrCmp $R1 '6.1' lbl_winnt_7 68 StrCmp $R1 '6.2' lbl_winnt_8 lbl_error 68 StrCmp $R1 '6.2' lbl_winnt_8 69 StrCmp $R1 '6.3' lbl_winnt_8_1 lbl_error 69 70 70 71 lbl_winnt_x: … … 96 97 Goto lbl_done 97 98 99 lbl_winnt_8_1: ; Also includes Windows Server 2012 R2 100 Strcpy $R0 '8_1' 101 Goto lbl_done 102 98 103 lbl_error: 99 104 Strcpy $R0 ''
Note:
See TracChangeset
for help on using the changeset viewer.