- Flexera Community
- :
- FlexNet Manager
- :
- FlexNet Manager Forum
- :
- Re: FNMS Agent Service wont uninstall
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
FNMS Agent Service wont uninstall
I have a customer who is uninstalling an older version of the Windows FNMS agent and when they run the uninstall, the agent service changes to disabled and wont let the new agent get install until the server is rebooted.
These are servers that cant be rebooted for now, is there a way to remove the service from the registry or a command that we can use to continue with the uninstall?
This thread has been automatically locked due to inactivity.
To continue the discussion, please start a new thread.
- Mark as New
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello @krystel_campos,
Is it only the services that remain after the uninstall attempt, or does the entry within Add/Remove Programs persist too?
One potential option would be to try using 'sc delete' to manually remove both agent services:
sc delete <servicename>
https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/sc-delete
This should remove the service subkeys from the registry under HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\<ServiceName>.
Of course, ensure that the service is completely stopped first, with:
sc stop <servicename>
HTH,
Joseph
- Mark as New
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks
