cvpilot-tool/apps/desktop/scripts/installer.nsh
2024-09-03 15:28:30 +08:00

9 lines
317 B
Plaintext

!macro customInstall
WriteRegStr HKCR "*\shell\cvpilot" "" "Upload dicom w&ith cvpilot"
WriteRegStr HKCR "*\shell\cvpilot" "Icon" "$INSTDIR\cvpilot.exe"
WriteRegStr HKCR "*\shell\cvpilot\command" "" '"$INSTDIR\cvpilot.exe" "upload" "%1"'
!macroend
!macro customUninstall
DeleteRegKey HKCR "*\shell\cvpilot"
!macroend