Skip to content

Commit

Permalink
Run the uninstaller with administrator privileges #16505
Browse files Browse the repository at this point in the history
NVDA cannot be uninstalled correctly by directly running "%ProgramFiles(x86)%\NVDA\uninstall.exe". You must run it as an administrator to uninstall it correctly.

Description of user facing changes
You can directly run "%ProgramFiles(x86)%\NVDA\uninstall.exe" to uninstall NVDA

Description of development approach
Change RequestExecutionLevel to admin
  • Loading branch information
wmhn1872265132 authored May 9, 2024
1 parent e7e8233 commit ed5ede9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uninstaller/uninst.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ SetCompressor /SOLID LZMA
CRCCheck On
XPStyle on
InstProgressFlags Smooth
RequestExecutionLevel user
RequestExecutionLevel admin

Name "${appName}"
VIProductVersion "${VERSION_YEAR}.${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_BUILD}" ;Needs to be here so other version info shows up
Expand Down

0 comments on commit ed5ede9

Please sign in to comment.