mirror of
https://github.com/rubickCenter/rubick
synced 2025-06-07 11:04:11 +08:00
13 lines
559 B
NSIS
13 lines
559 B
NSIS
!macro customInstall
|
|
SetRegView 64
|
|
WriteRegStr HKCR "*\shell\rubick" "" "open w&ith rubick"
|
|
WriteRegStr HKCR "*\shell\rubick" "Icon" "$INSTDIR\rubick.exe"
|
|
WriteRegStr HKCR "*\shell\rubick\command" "" '"$INSTDIR\rubick.exe" "search" "%1"'
|
|
SetRegView 32
|
|
WriteRegStr HKCR "*\shell\rubick" "" "open w&ith rubick"
|
|
WriteRegStr HKCR "*\shell\rubick" "Icon" "$INSTDIR\rubick.exe"
|
|
WriteRegStr HKCR "*\shell\rubick\command" "" '"$INSTDIR\rubick.exe" "search" "%1"'
|
|
!macroend
|
|
!macro customUninstall
|
|
DeleteRegKey HKCR "*\shell\rubick"
|
|
!macroend |