mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 11:32:09 +00:00
5b5cae693f
Events with just 1 argument fail before this change Former-commit-id: 69cbb51c56054208417e464dc6e46a94ccb3bbeb [formerly fbb03244929beb0ce8f9c607ce33d107e8319b89] Former-commit-id: 984154c1ba79f1fe8bf0106a604b2765ea312079
34 lines
1.0 KiB
Plaintext
34 lines
1.0 KiB
Plaintext
Section "Uninstall"
|
|
# uninstall for all users
|
|
setShellVarContext all
|
|
|
|
# Delete (optionally) installed files
|
|
{{range $}}Delete $INSTDIR\{{.}}
|
|
{{end}}
|
|
Delete $INSTDIR\uninstall.exe
|
|
|
|
# Delete install directory
|
|
rmDir $INSTDIR
|
|
|
|
# Delete start menu launcher
|
|
Delete "$SMPROGRAMS\${APPNAME}\${APPNAME}.lnk"
|
|
Delete "$SMPROGRAMS\${APPNAME}\Attach.lnk"
|
|
Delete "$SMPROGRAMS\${APPNAME}\Uninstall.lnk"
|
|
rmDir "$SMPROGRAMS\${APPNAME}"
|
|
|
|
# Firewall - remove rules if exists
|
|
SimpleFC::AdvRemoveRule "Geth incoming peers (TCP:30303)"
|
|
SimpleFC::AdvRemoveRule "Geth outgoing peers (TCP:30303)"
|
|
SimpleFC::AdvRemoveRule "Geth UDP discovery (UDP:30303)"
|
|
|
|
# Remove IPC endpoint (https://github.com/ethereum/EIPs/issues/147)
|
|
${un.EnvVarUpdate} $0 "ETHEREUM_SOCKET" "R" "HKLM" "\\.\pipe\geth.ipc"
|
|
|
|
# Remove install directory from PATH
|
|
Push "$INSTDIR"
|
|
Call un.RemoveFromPath
|
|
|
|
# Cleanup registry (deletes all sub keys)
|
|
DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\${GROUPNAME} ${APPNAME}"
|
|
SectionEnd
|