Template:GhostServices: Difference between revisions
Dgreenwood (talk | contribs) No edit summary |
Dgreenwood (talk | contribs) No edit summary |
||
| Line 7: | Line 7: | ||
This can make it appear as though a duplicate or "ghost" Windows service is installed without being listed in GCC (or Grooper Config before version 2024). | This can make it appear as though a duplicate or "ghost" Windows service is installed without being listed in GCC (or Grooper Config before version 2024). | ||
If this does occur, you will need to manually delete the service from the Windows Registry Editor, using the following steps: | |||
If this does occur, you will need to manually delete the service. If you know the name of the service instance (something like <code>Grooper.ServiceTypeName.##</code>) you need to delete, you can use the following command lines to stop the service (if necessary) and manually delete it. | |||
<pre> | |||
SC STOP Grooper.ServiceTypeName.## | |||
SC DELETE Grooper.ServiceTypeName.## | |||
</pre> | |||
'''''OR''''' | |||
You can delete the service from the Windows Registry Editor, using the following steps: | |||
# Open the Registry Editor (regedit.exe) | # Open the Registry Editor (regedit.exe) | ||
# Navigate to <code>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services</code>. | # Navigate to <code>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services</code>. | ||
# Select the key of the service you want to delete. | # Select the key of the service you want to delete. | ||
#*<li class="fyi-bullet"> Grooper services will always be named something like <code>Grooper.ServiceTypeName.##</code> | |||
# From the "Edit" menu select "Delete. | # From the "Edit" menu select "Delete. | ||
# You will be prompted "Are you sure you want to delete this Key?". Click Yes. | # You will be prompted "Are you sure you want to delete this Key?". Click Yes. | ||
# Exit the Registry Editor. | # Exit the Registry Editor. | ||
|} | |} | ||
Revision as of 07:54, 20 June 2024
|
⚠ |
Very rarely, a Grooper service will not uninstall properly when you uninstall the service from Grooper Config. Or, a user may delete a Grooper Repository connection or purge a Grooper Repository without uninstalling services first. This can make it appear as though a duplicate or "ghost" Windows service is installed without being listed in GCC (or Grooper Config before version 2024).
SC STOP Grooper.ServiceTypeName.## SC DELETE Grooper.ServiceTypeName.## OR You can delete the service from the Windows Registry Editor, using the following steps:
|