Changeset 41014 in vbox for trunk/src/VBox/Additions/WINNT
- Timestamp:
- Apr 20, 2012 2:23:26 PM (13 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditionsVista.nsh
r40631 r41014 76 76 ;FILE "$%PATH_OUT%\bin\additions\VBoxNET.sys" 77 77 78 !ifdef VBOX_WITH_MMR 79 FILE "$%PATH_OUT%\bin\additions\VBoxMMR.dll" 80 !endif 78 81 79 82 FunctionEnd … … 85 88 SetOutPath "$INSTDIR" 86 89 ; Nothing here yet 90 91 !ifdef VBOX_WITH_MMR 92 DetailPrint "Registering VBoxMMR.dll ..." 93 nsExec::ExecToLog '"$g_strSystemDir\regsvr32.exe" -s "$INSTDIR\VBoxMMR.dll"' 94 !endif 95 87 96 Goto done 88 97 … … 125 134 Delete /REBOOTOK "$g_strSystemDir\VBoxCredProv.dll" 126 135 136 !ifdef VBOX_WITH_MMR 137 DetailPrint "Unregistering VBoxMMR.dll ..." 138 nsExec::ExecToLog '"$g_strSystemDir\regsvr32.exe" -s -u "$INSTDIR\VBoxMMR.dll"' 139 140 Delete /REBOOTOK "$INSTDIR\VBoxMMR.dll" 141 !endif 142 127 143 FunctionEnd 128 144 !macroend -
trunk/src/VBox/Additions/WINNT/Makefile.kmk
r40249 r41014 33 33 endif 34 34 35 ifdef VBOX_WITH_MMR 36 include $(PATH_SUB_CURRENT)/VBoxMMR/Makefile.kmk 37 endif 38 35 39 include $(KBUILD_PATH)/subfooter.kmk 36 40
Note:
See TracChangeset
for help on using the changeset viewer.