Changeset 38751 in vbox for trunk/src/VBox
- Timestamp:
- Sep 14, 2011 1:30:16 PM (13 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Installer
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditions.nsi
r37815 r38751 623 623 StrCmp $g_strWinVersion "Vista" vista ; Windows Vista 624 624 StrCmp $g_strWinVersion "7" vista ; Windows 7 625 StrCmp $g_strWinVersion "8" vista ; Windows 8 625 626 626 627 ${If} $g_bForceInstall == "true" -
trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditionsCommon.nsh
r36311 r38751 515 515 ${If} $g_strWinVersion == "Vista" 516 516 ${OrIf} $g_strWinVersion == "7" 517 ${OrIf} $g_strWinVersion == "8" 517 518 StrCpy $g_bCapWDDM "true" 518 519 ${EndIf} -
trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditionsUninstall.nsh
r35753 r38751 85 85 StrCmp $g_strWinVersion "Vista" vista ; Windows Vista 86 86 StrCmp $g_strWinVersion "7" vista ; Windows 7 87 StrCmp $g_strWinVersion "8" vista ; Windows 8 87 88 88 89 ${If} $g_bForceInstall == "true" … … 142 143 StrCmp $g_strWinVersion "Vista" vista ; Windows Vista 143 144 StrCmp $g_strWinVersion "7" vista ; Windows 7 145 StrCmp $g_strWinVersion "8" vista ; Windows 8 144 146 145 147 ${If} $g_bForceInstall == "true" -
trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditionsW2KXP.nsh
r37815 r38751 120 120 ${ElseIf} $g_strWinVersion == "XP" 121 121 ${OrIf} $g_strWinVersion == "7" 122 ${OrIf} $g_strWinVersion == "8" 122 123 StrCpy $reg_path_device "SYSTEM\CurrentControlSet\Control\Video\$dev_id\0000" 123 124 StrCpy $reg_path_monitor "SYSTEM\CurrentControlSet\Control\VIDEO\$dev_id\0000\Mon00000001" -
trunk/src/VBox/Additions/WINNT/Installer/winver.nsh
r31634 r38751 65 65 StrCmp $R1 '5.2' lbl_winnt_2003 66 66 StrCmp $R1 '6.0' lbl_winnt_vista 67 StrCmp $R1 '6.1' lbl_winnt_7 lbl_error 67 StrCmp $R1 '6.1' lbl_winnt_7 68 StrCmp $R1 '6.2' lbl_winnt_8 lbl_error 68 69 69 70 lbl_winnt_x: … … 91 92 Goto lbl_done 92 93 94 lbl_winnt_8: 95 Strcpy $R0 '8' 96 Goto lbl_done 97 93 98 lbl_error: 94 99 Strcpy $R0 ''
Note:
See TracChangeset
for help on using the changeset viewer.