mirror of
https://gitee.com/eolink_admin/postcat.git
synced 2024-12-03 12:18:22 +08:00
a51feb0311
* feat: update extension UI * fix(components): [manage-access] a tag rename to span * feat: update e2e Co-authored-by: buqiyuan <1743369777@qq.com> Co-authored-by: 夜鹰 <17kungfuboy@gmail.com>
10 lines
378 B
Plaintext
10 lines
378 B
Plaintext
!macro customInstall
|
|
DetailPrint "Register postcat URI Handler"
|
|
DeleteRegKey HKCR "postcat"
|
|
WriteRegStr HKCR "postcat" "" "URL:postcat"
|
|
WriteRegStr HKCR "postcat" "URL Protocol" ""
|
|
WriteRegStr HKCR "postcat\shell" "" ""
|
|
WriteRegStr HKCR "postcat\shell\Open" "" ""
|
|
WriteRegStr HKCR "postcat\shell\Open\command" "" "$INSTDIR\${APP_EXECUTABLE_FILENAME} %1"
|
|
!macroend
|