Changeset 36455 in vbox for trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditions.nsi
- Timestamp:
- Mar 29, 2011 11:37:01 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditions.nsi
r36404 r36455 27 27 28 28 ; Defines for special functions 29 !define WHQL_FAKE ; Turns on the faking of non WHQL signed / approved drivers 30 ; Needs the VBoxWHQLFake.exe in the additions output directory! 29 !define WHQL_FAKE ; Enables faking of non WHQL signed / approved drivers 30 ; Needs the VBoxWHQLFake.exe in the additions output directory! 31 !define WFP_FILE_EXCEPTION ; Enables setting a temporary file exception for WFP proctected files 31 32 32 33 !define VENDOR_ROOT_KEY "SOFTWARE\$%VBOX_VENDOR_SHORT%" 33 34 35 ; Product defines 34 36 !define PRODUCT_NAME "$%VBOX_PRODUCT% Guest Additions" 35 37 !define PRODUCT_DESC "$%VBOX_PRODUCT% Guest Additions" … … 730 732 731 733 Pop $0 734 735 !if $%VBOX_WITH_GUEST_INSTALL_HELPER% == "1" 736 !ifdef WFP_FILE_EXCEPTION 737 VBoxGuestInstallHelper::DisableWFP "$0" 738 Pop $1 ; Get return value (ignored for now) 739 DetailPrint "Setting WFP exception for '$0': $1" 740 !endif 741 !endif 742 732 743 IfFileExists "$g_strSystemDir\takeown.exe" 0 +2 733 744 nsExec::ExecToLog '"$g_strSystemDir\takeown.exe" /F "$0"' … … 871 882 872 883 done: 884 885 !ifndef WFP_FILE_EXCEPTION 873 886 MessageBox MB_ICONINFORMATION|MB_OK $(VBOX_WFP_WARN_REPLACE) /SD IDOK 887 !endif 874 888 Goto exit 875 889
Note:
See TracChangeset
for help on using the changeset viewer.