Changeset 46845 in vbox
- Timestamp:
- Jun 27, 2013 1:54:37 PM (12 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Installer
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditions.nsi
r46838 r46845 761 761 ${OrIf} $R0 == '7' ; Windows 7. 762 762 ${OrIf} $R0 == '8' ; Windows 8. 763 ${OrIf} $R0 == '8_1' ; Windows 8.1 / Windows Server 2012 R2. 763 764 ; Use VBoxCredProv on Vista and up. 764 765 ${LogVerbose} "Installing VirtualBox credential provider ..." … … 1069 1070 ${Else} ; D3D unselected again 1070 1071 1071 ${If} $g_strWinVersion != "8" ; On Windows 8 WDDM is mandatory 1072 ${If} $g_strWinVersion != "8" ; On Windows 8 WDDM is mandatory 1073 ${OrIf} $g_strWinVersion != "8_1" ; ... also on Windows 8.1 / Windows 2012 Server R2 1072 1074 StrCpy $g_bWithWDDM "false" 1073 1075 ${EndIf} … … 1248 1250 !insertmacro SelectSection ${SEC03} 1249 1251 ${EndIf} 1250 ; On Windows 8 we always select the 3D section and 1251 ; disable it so that it cannot be deselected again 1252 ${If} $g_strWinVersion == "8" 1252 ; On Windows 8 / 8.1 / Windows Server 2012 R2 we always select the 3D 1253 ; section and disable it so that it cannot be deselected again 1254 ${If} $g_strWinVersion == "8" 1255 ${OrIf} $g_strWinVersion == "8_1" 1253 1256 IntOp $0 ${SF_SELECTED} | ${SF_RO} 1254 1257 SectionSetFlags ${SEC03} $0 -
trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditionsCommon.nsh
r45952 r46845 541 541 !if $%VBOX_WITH_WDDM% == "1" 542 542 ; If we're on a 32-bit Windows Vista / 7 / 8 we can use the WDDM driver 543 ${If} $g_strWinVersion == "Vista"543 ${If} $g_strWinVersion == "Vista" 544 544 ${OrIf} $g_strWinVersion == "7" 545 545 ${OrIf} $g_strWinVersion == "8" 546 ${OrIf} $g_strWinVersion == "8_1" 546 547 StrCpy $g_bCapWDDM "true" 547 548 ${LogVerbose} "OS is WDDM driver capable" … … 549 550 ; If we're on Windows 8 we *have* to use the WDDM driver, so select it 550 551 ; by default 551 ${If} $g_strWinVersion == "8" 552 ${If} $g_strWinVersion == "8" 553 ${OrIf} $g_strWinVersion == "8_1" 552 554 StrCpy $g_bWithWDDM "true" 553 555 ${LogVerbose} "OS needs WDDM driver by default" … … 570 572 571 573 ; Does the guest have a DLL cache? 572 ${If} $g_strWinVersion == "Vista"574 ${If} $g_strWinVersion == "Vista" 573 575 ${OrIf} $g_strWinVersion == "7" 574 576 ${OrIf} $g_strWinVersion == "8" 577 ${OrIf} $g_strWinVersion == "8_1" 575 578 StrCpy $g_bCapDllCache "true" 576 579 ${LogVerbose} "OS has a DLL cache" -
trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditionsUninstall.nsh
r44417 r46845 86 86 StrCmp $g_strWinVersion "7" vista ; Windows 7 87 87 StrCmp $g_strWinVersion "8" vista ; Windows 8 88 StrCmp $g_strWinVersion "8_1" vista ; Windows 8.1 / Windows Server 2012 R2 88 89 89 90 ${If} $g_bForceInstall == "true" … … 144 145 StrCmp $g_strWinVersion "7" vista ; Windows 7 145 146 StrCmp $g_strWinVersion "8" vista ; Windows 8 147 StrCmp $g_strWinVersion "8_1" vista ; Windows 8.1 / Windows Server 2012 R2 146 148 147 149 ${If} $g_bForceInstall == "true" -
trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditionsW2KXP.nsh
r44459 r46845 121 121 ${OrIf} $g_strWinVersion == "7" 122 122 ${OrIf} $g_strWinVersion == "8" 123 ${OrIf} $g_strWinVersion == "8_1" 123 124 StrCpy $reg_path_device "SYSTEM\CurrentControlSet\Control\Video\$dev_id\0000" 124 125 StrCpy $reg_path_monitor "SYSTEM\CurrentControlSet\Control\VIDEO\$dev_id\0000\Mon00000001"
Note:
See TracChangeset
for help on using the changeset viewer.