两种可能的解决方案:
1)使用标准的NSIS页面
在卸载程序初始化函数中提示用户
function un.onInit
...
#Verify the uninstaller - last chance to back out
MessageBox MB_OKCANCEL "Permanantly remove ${APPNAME}?" IDOK next
Abort
...
functionEnd
可以找到示例here
2)使用现代用户界面(MUI)
设置卸载程序确认页面
!insertmacro MUI_UNPAGE_CONFIRM
可以找到示例here