Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Duplicate Startup Entry after Update Repair #4839

dreadbalaur started this conversation in General
Discussion options

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.

You must be logged in to vote

Replies: 2 comments 1 reply

Comment options

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:

  1. Disable one UniGetUI entry in Task Manager > Startup apps.
  2. Reboot and confirm UniGetUI still starts once.
  3. If everything is fine, remove the disabled duplicate from the startup folder or registry location shown by Win32_StartupCommand.
  4. 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.

You must be logged in to vote
1 reply
Comment options

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.

Comment options

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.

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet

AltStyle によって変換されたページ (->オリジナル) /