Changeset 45818 in vbox for trunk/src/VBox/Additions/WINNT
- Timestamp:
- Apr 29, 2013 3:08:42 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 85387
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditions.nsi
r44871 r45818 214 214 Var g_strWinVersion ; Current Windows version we're running on 215 215 Var g_bLogEnable ; Do logging when installing? "true" or "false" 216 Var g_bWithWDDM ; Install the WDDM driver instead of the XPDM one216 Var g_bWithWDDM ; Install the WDDM graphics driver instead of the XPDM one 217 217 Var g_bCapDllCache ; Capability: Does the (Windows) guest have have a DLL cache which needs to be taken care of? 218 218 Var g_bCapWDDM ; Capability: Is the guest able to handle/use our WDDM driver? … … 369 369 ${Break} 370 370 371 371 !ifdef WHQL_FAKE 372 372 ${Case} '/unsig_drv' 373 373 StrCpy $g_bFakeWHQL "true" 374 374 ${Break} 375 375 !endif 376 376 377 377 ${Case} '/uninstall' … … 389 389 !endif 390 390 391 391 !if $%VBOX_WITH_CROGL% == "1" 392 392 ${Case} '/with_d3d' 393 393 ${Case} '/with_direct3d' 394 394 StrCpy $g_bWithD3D "true" 395 395 ${Break} 396 !endif 396 !endif 397 398 !if $%VBOX_WITH_WDDM% == "1" 399 ${Case} '/with_wddm' 400 StrCpy $g_bWithWDDM "true" 401 ${Break} 402 !endif 397 403 398 404 ${Case} '/xres' … … 439 445 /with_autologon$\tInstalls auto-logon support$\r$\n \ 440 446 /with_d3d$\tInstalls D3D support$\r$\n \ 441 /with_vboxmmr$\tInstalls multimedia redirection support$\r$\n \ 447 /with_vboxmmr$\tInstalls multimedia redirection (MMR) support$\r$\n \ 448 /with_wddm\$\tInstalls the WDDM instead of the XPDM graphics driver$\r$\n \ 442 449 /xres=X$\t$\tSets the guest's display resolution (width in pixels)$\r$\n \ 443 450 /yres=Y$\t$\tSets the guest's display resolution (height in pixels)$\r$\n \
Note:
See TracChangeset
for help on using the changeset viewer.