Changing Windows app shortcut properties without running the app in admin mode
Figured it out, thanks to this "How to Run Windows File Explorer Elevated (as Administrator)" article. Sharing with the Windows community and my future self.
Steps:
-
Ctrl+Alt+Del for Task Manager, then switch to the
Details
tab and addElevated
column; -
Go to
File/Run new task
in Task Manager and runtaskkill.exe /f /im explorer.exe
(make sure to tick[x] Create this task with administrative privileges
), that should kill the current running instance of Windows Explorer. -
From
File/Run new task
in Task Manager and runexplorer.exe /nouaccheck
, that should start Explorer in elevated admin mode (check theElevated
column status). -
Modify and save all the desired shortcuts. You should not see any
Error Updating Shortcut
errors this time. -
Repeat step 2.
-
Finally, from
File/Run new task
, restartexplore.exe
in non-admin mode, this time make sure to untick[ ] Create this task with administrative privileges
(verify that in theElevated
column).