Changeset 52397 in vbox
- Timestamp:
- Aug 18, 2014 3:46:28 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/win/comregister.cmd
r51611 r52397 7 7 8 8 REM 9 REM Copyright (C) 2006-201 3Oracle Corporation9 REM Copyright (C) 2006-2014 Oracle Corporation 10 10 REM 11 11 REM This file is part of VirtualBox Open Source Edition (OSE), as … … 155 155 :register_x86 156 156 @echo on 157 %_VBOX_DIR%VBoxSVC.exe/UnregServer158 regsvr32 /s /u %_VBOX_DIR%VBoxC.dll159 %windir%\system32\regsvr32 /s /u %_VBOX_DIR%VBoxProxyStub.dll157 "%_VBOX_DIR%VBoxSVC.exe" /UnregServer 158 regsvr32 /s /u "%_VBOX_DIR%VBoxC.dll" 159 %windir%\system32\regsvr32 /s /u "%_VBOX_DIR%VBoxProxyStub.dll" 160 160 @if %fUninstallOnly% == 1 goto end 161 %_VBOX_DIR%VBoxSVC.exe/RegServer162 regsvr32 /s %_VBOX_DIR%VBoxC.dll161 "%_VBOX_DIR%VBoxSVC.exe" /RegServer 162 regsvr32 /s "%_VBOX_DIR%VBoxC.dll" 163 163 @if %fNoProxy% == 1 goto end 164 if exist %_VBOX_DIR%VBoxProxyStub.dll %windir%\system32\regsvr32 /s %_VBOX_DIR%VBoxProxyStub.dll164 if exist "%_VBOX_DIR%VBoxProxyStub.dll" %windir%\system32\regsvr32 /s "%_VBOX_DIR%VBoxProxyStub.dll" 165 165 @echo off 166 166 goto end … … 169 169 :register_amd64 170 170 @echo on 171 %_VBOX_DIR%VBoxSVC.exe/UnregServer172 %windir%\syswow64\regsvr32 /s /u %_VBOX_DIR%x86\VBoxClient-x86.dll173 %windir%\system32\regsvr32 /s /u %_VBOX_DIR%VBoxC.dll174 %windir%\system32\regsvr32 /s /u %_VBOX_DIR%VBoxProxyStub.dll175 %windir%\system32\regsvr32 /s /u %_VBOX_DIR%VBoxProxyStub-x86.dll171 "%_VBOX_DIR%VBoxSVC.exe" /UnregServer 172 %windir%\syswow64\regsvr32 /s /u "%_VBOX_DIR%x86\VBoxClient-x86.dll" 173 %windir%\system32\regsvr32 /s /u "%_VBOX_DIR%VBoxC.dll" 174 %windir%\system32\regsvr32 /s /u "%_VBOX_DIR%VBoxProxyStub.dll" 175 %windir%\system32\regsvr32 /s /u "%_VBOX_DIR%VBoxProxyStub-x86.dll" 176 176 @if %fUninstallOnly% == 1 goto end 177 %_VBOX_DIR%VBoxSVC.exe/RegServer178 %windir%\system32\regsvr32 /s %_VBOX_DIR%VBoxC.dll179 %windir%\syswow64\regsvr32 /s %_VBOX_DIR%x86\VBoxClient-x86.dll177 "%_VBOX_DIR%VBoxSVC.exe" /RegServer 178 %windir%\system32\regsvr32 /s "%_VBOX_DIR%VBoxC.dll" 179 %windir%\syswow64\regsvr32 /s "%_VBOX_DIR%x86\VBoxClient-x86.dll" 180 180 @if %fNoProxy% == 1 goto end 181 if exist %_VBOX_DIR%VBoxProxyStub.dll %windir%\system32\regsvr32 /s %_VBOX_DIR%VBoxProxyStub.dll182 if exist %_VBOX_DIR%VBoxProxyStub-x86.dll %windir%\system32\regsvr32 /s %_VBOX_DIR%VBoxProxyStub-x86.dll181 if exist "%_VBOX_DIR%VBoxProxyStub.dll" %windir%\system32\regsvr32 /s "%_VBOX_DIR%VBoxProxyStub.dll" 182 if exist "%_VBOX_DIR%VBoxProxyStub-x86.dll" %windir%\system32\regsvr32 /s "%_VBOX_DIR%VBoxProxyStub-x86.dll" 183 183 @echo off 184 184 185 185 :end 186 186 @endlocal 187
Note:
See TracChangeset
for help on using the changeset viewer.