Duplicate Startup Entry after Update Repair #4839
Replies: 2 comments 1 reply
-
|
This is usually safe to clean up manually. Windows can show duplicate startup entries when one was left behind by an installer/repair path, or when the same app is registered in two startup locations. I would first identify where both entries come from: Get-CimInstance Win32_StartupCommand |
Where-Object { $_.Name -like '*UniGetUI*' -or $_.Command -like '*UniGetUI*' } |
Select-Object Name, Command, LocationAlso check the two common startup folders: explorer shell:startup
explorer shell:common startupIf one entry is just a shortcut there, delete only the duplicate shortcut. If the duplicate is in the registry, check these locations: reg query HKCU\Software\Microsoft\Windows\CurrentVersion\Run /s | findstr /i UniGetUI
reg query HKLM\Software\Microsoft\Windows\CurrentVersion\Run /s | findstr /i UniGetUIThe least risky cleanup path is:
If both entries point to exactly If this solves it, please mark this comment as the answer so other people can find it faster. |
Beta Was this translation helpful? Give feedback.
-
|
Yes, with those checks I would treat it as a Windows Settings/Startup UI glitch rather than a second real startup registration. If I would leave it as-is unless the duplicate comes back after a reboot or after the next UniGetUI update/repair. If it does come back, the useful report would be whether Autoruns shows one or two entries at that exact moment. |
Beta Was this translation helpful? Give feedback.


Uh oh!
There was an error while loading. Please reload this page.
-
There was some issues when Uniget tried to update today, so I had to repair it on top of the update. However, it somehow creates a duplicate entry in Startup. Both entries open to

C:\Program Files\UniGetUI\UniGetUI.exe.Decided against making it an issue thread because this could be a freak accident. I just want some help in removing the duplicate entry.
Beta Was this translation helpful? Give feedback.
All reactions