-
Notifications
You must be signed in to change notification settings - Fork 836
Duplicate Startup Entry after Update Repair #4839
-
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.
image
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
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, Location
Also check the two common startup folders:
explorer shell:startup explorer shell:common startup
If 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 UniGetUI
The least risky cleanup path is:
- Disable one UniGetUI entry in Task Manager > Startup apps.
- Reboot and confirm UniGetUI still starts once.
- If everything is fine, remove the disabled duplicate from the startup folder or registry location shown by
Win32_StartupCommand. - In UniGetUI settings, toggle "start with Windows" off and back on if you want the app to recreate a single clean entry.
If both entries point to exactly C:\Program Files\UniGetUI\UniGetUI.exe, keeping just one is enough. I would not reinstall again unless the duplicate comes back after the settings toggle.
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.
All reactions
-
First command only returned one result
image
Startup folder has only one shortcut.
And the registry only has one entry.
image
This is also verified by using Autorun utility.
So in the end, it seems like I have one entry and it was just all a glitch? The startup entry in settings is back to a single entry after I deleted the startup shortcut, then recover it immediately from Recycle Bin.
Beta Was this translation helpful? Give feedback.
All reactions
-
Yes, with those checks I would treat it as a Windows Settings/Startup UI glitch rather than a second real startup registration.
If Win32_StartupCommand, the startup folder, the registry, and Autoruns all show only one UniGetUI entry, there is no second startup item left to remove. Deleting and restoring the shortcut probably forced Windows Settings to refresh its cached startup-app list.
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.