mirror of
https://github.com/DrDonk/unlocker.git
synced 2026-04-26 14:16:01 +03:00
[GH-ISSUE #9] [windows] Unable to patch because not all required services is stopped #8
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/unlocker#8
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @r4sas on GitHub (Feb 10, 2022).
Original GitHub issue: https://github.com/DrDonk/unlocker/issues/9
OS: Windows 10 21H1
@one80two commented on GitHub (Feb 11, 2022):
hei. fixed it by first disabling all VMWare services in
services.msc(not sure it was required actually) and then going into my VMs directories (mainly the suspended ones) and removing all directories/files that have the.lckextension. note that you need to set the services back to Automatic after running the unlocker. hope it helps :D@r4sas commented on GitHub (Feb 11, 2022):
That's not way how it must be done.
@DrDonk commented on GitHub (Feb 14, 2022):
Unfortunately not enough info here to diagnose what happened. I suspect that VMware was still running or VMs running in the background. I will close this unless there is more information available.
@r4sas commented on GitHub (Feb 14, 2022):
Isn't application must close everything automatically (like how it has been done with previous version of tool with cmd batch)? How I can gather more information?
@DrDonk commented on GitHub (Feb 15, 2022):
Can you open a Windows PowerShell prompt and run this command please?
Get-Service -Name VMAuthdService -DependentServicesThe output should show what is preventing VMAuthdService from stopping.
@r4sas commented on GitHub (Feb 15, 2022):
No VMs running at patching time.
So I think order here must be changed:
github.com/DrDonk/golocker@dd119cb6fb/vmwpatch/vmw_windows.go (L71-L72)@DrDonk commented on GitHub (Feb 15, 2022):
Yep that's my mistake. I forgot the ordering when I wrote it, and tested against 16.2 which drops the Workstation Server code.
I will setup a test system and fix the code.
@DrDonk commented on GitHub (Feb 15, 2022):
Please try v4.1.2 https://github.com/DrDonk/golocker/releases/tag/v4.1.2
@r4sas commented on GitHub (Feb 15, 2022):
Everything works correctly now. Thanks.