Changes between Initial Version and Version 1 of Ticket #10492, comment 1
- Timestamp:
- Sep 14, 2014 9:04:19 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10492, comment 1
initial v1 13 13 reg query HKLM\SYSTEM\CurrentControlSet\Services /s /v ImagePath > regkeys.txt 14 14 15 Basically the way you guys set the ImagePath value in the registry for your services is \System32\ VboxService15 Basically the way you guys set the ImagePath value in the registry for your services is \System32\''<servicename>'' 16 16 17 Microsoft doesn't like the \System32\<servicename> format 17 ''<servicename>'' being any service such as VBoxService.exe 18 18 19 Fix: If you could change the ImagePath for your services to %systemroot%\system32\<servicename> would easily avoid this kind of incompatibility with Microsoft. 19 Microsoft doesn't like the \System32\''<servicename>'' format 20 21 Fix: If you could change the ImagePath value for all your services under HKLM\SYSTEM\CurrentControlSet\Services to either: 22 23 %Systemroot%\System32\''<servicename>'' 24 or 25 \SystemRoot\System32\''<servicename>'' 26 27 28 would easily avoid this kind of incompatibility with Microsoft. 20 29 21 30 Thanks,