Changeset 70240 in vbox
- Timestamp:
- Dec 20, 2017 12:32:57 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-all/win/VBoxProxyStub.c
r70228 r70240 1316 1316 const char *pszLocalServer = "VBoxSVC.exe"; 1317 1317 #ifdef VBOX_WITH_SDS 1318 /**1319 * The Name of windows service is referenced in different places.1320 * Don't forget to change it in other places too If you change it here :1321 * VBoxMergeApp.wxi (cp_VBoxSDS component),1322 * VBoxSDS.cpp and VirtualBox.xidl1323 */1324 1318 const char *pszSdsAppId = "{EC0E78E8-FA43-43E8-AC0A-02C784C4A4FA}"; 1325 1319 const char *pszSdsExe = "VBoxSDS.exe"; … … 2426 2420 if (fDeleteIt) 2427 2421 { 2428 hService = OpenServiceW(hSCM, pwszServiceName, SERVICE_STOP );2422 hService = OpenServiceW(hSCM, pwszServiceName, SERVICE_STOP | DELETE); 2429 2423 if (hService) 2430 2424 { … … 2551 2545 2552 2546 #ifdef VBOX_WITH_SDS 2553 /**2554 * The Name of windows service is referenced in different places.2555 * Don't forget to change it in other places too If you change it here :2556 * VBoxMergeApp.wxi (cp_VBoxSDS component),2557 * VBoxSDS.cpp and VirtualBox.xidl2558 */2559 2547 vbpsUpdateWindowsService(&State, wszVBoxDir, L"VBoxSDS.exe", L"VBoxSDS", 2560 2548 L"VirtualBox system service", L"Used as a COM server for VirtualBox API.");
Note:
See TracChangeset
for help on using the changeset viewer.