mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-14 04:48:40 -09:00
20 lines
1,010 B
Text
20 lines
1,010 B
Text
|
|
!macro customInstall
|
||
|
|
WriteRegStr HKCU "Software\Classes\Directory\Background\shell\Hyper" "" "Open Hyper here"
|
||
|
|
WriteRegStr HKCU "Software\Classes\Directory\Background\shell\Hyper" "Icon" "$appExe"
|
||
|
|
WriteRegStr HKCU "Software\Classes\Directory\Background\shell\Hyper\command" "" `$appExe "%V"`
|
||
|
|
|
||
|
|
WriteRegStr HKCU "Software\Classes\Directory\shell\Hyper" "" "Open Hyper here"
|
||
|
|
WriteRegStr HKCU "Software\Classes\Directory\shell\Hyper" "Icon" "$appExe"
|
||
|
|
WriteRegStr HKCU "Software\Classes\Directory\shell\Hyper\command" "" `$appExe "%V"`
|
||
|
|
|
||
|
|
WriteRegStr HKCU "Software\Classes\Drive\shell\Hyper" "" "Open Hyper here"
|
||
|
|
WriteRegStr HKCU "Software\Classes\Drive\shell\Hyper" "Icon" "$appExe"
|
||
|
|
WriteRegStr HKCU "Software\Classes\Drive\shell\Hyper\command" "" `$appExe "%V"`
|
||
|
|
!macroend
|
||
|
|
|
||
|
|
!macro customUnInstall
|
||
|
|
DeleteRegKey HKCU "Software\Classes\Directory\Background\shell\Hyper"
|
||
|
|
DeleteRegKey HKCU "Software\Classes\Directory\shell\Hyper"
|
||
|
|
DeleteRegKey HKCU "Software\Classes\Drive\shell\Hyper"
|
||
|
|
!macroend
|