Thank you very much for the clue!
After extensive debugging, My friend and i found the issue. It was NOT related to:
- Windows builds
- .NET Framework corruption
- Activation/license problems
- User profile issues
The actual cause: IObit Advanced SystemCare
IObit Advanced SystemCare had registered malicious entries in the Windows Image File Execution Options (IFEO) registry, hijacking Stardock executables and some other soft. Specifically, it set itself as a "Debugger" for:
- DeElevate.exe
- DeElevate64.exe
- SasUpgrade.exe
- SdDisplay.exe
All Groupy executables (GroupySrv.exe, GroupyConfig.exe, etc.)
When Windows tries to run these files, IFEO redirects execution to C:\Program Files (x86)\IObit\Advanced SystemCare\AutoReactivator.exe, which fails silently. This is why:
- Files exist on disk
- Files are readable
- But running them returns "The system cannot find the file specified"
The Fix (PowerShell as Administrator):
Code: asp.net
- # Remove all IObit IFEO hijacks from both registry locations
- Get-ChildItem "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options" -EA 0 | ForEach-Object { if ((Get-ItemProperty $_.PSPath -EA 0).Debugger -like "*IObit*") { Remove-Item $_.PSPath -Force -Recurse } }
- Get-ChildItem "HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows NT\CurrentVersion\Image File Execution Options" -EA 0 | ForEach-Object { if ((Get-ItemProperty $_.PSPath -EA 0).Debugger -like "*IObit*") { Remove-Item $_.PSPath -Force -Recurse } }
After running this:
- Restarted Multiplicity
- The "Primary computer" option now works
- Activation window appears correctly
Groupy also works again
Thanks everyone, for investigation and your time to help, hope this thread can help someone else.
Wish you all the happy new year 2026!