PicList/build/installer.nsh
萌萌哒赫萝 efeadb8fb8 Feature: add remote file delete , picBed management
First version of PicList.
In album, you can delete remote file now.
Add picBed management
function.
2023-02-15 23:36:47 +08:00

14 lines
595 B
Plaintext

!macro customInstall
SetRegView 64
WriteRegStr HKCR "*\shell\PicList" "" "Upload pictures w&ith PicList"
WriteRegStr HKCR "*\shell\PicList" "Icon" "$INSTDIR\PicList.exe"
WriteRegStr HKCR "*\shell\PicList\command" "" '"$INSTDIR\PicList.exe" "upload" "%1"'
SetRegView 32
WriteRegStr HKCR "*\shell\PicList" "" "Upload pictures w&ith PicList"
WriteRegStr HKCR "*\shell\PicList" "Icon" "$INSTDIR\PicList.exe"
WriteRegStr HKCR "*\shell\PicList\command" "" '"$INSTDIR\PicList.exe" "upload" "%1"'
!macroend
!macro customUninstall
DeleteRegKey HKCR "*\shell\PicList"
!macroend