👍[Update] Model : Add Installer

This commit is contained in:
misyaguziya
2023-10-25 22:45:28 +09:00
parent 0ac41060ac
commit fc8b8ac5ee
4 changed files with 138 additions and 3 deletions

14
installer/Uninstall.nsi Normal file
View File

@@ -0,0 +1,14 @@
# アンインストーラ
Section "Uninstall"
# アンインストーラを削除
Delete "$INSTDIR\Uninstall.exe"
# ファイルを削除
Delete "$INSTDIR\VRCT.exe"
# ディレクトリを削除
RMDir /r "$INSTDIR"
# スタート メニューから削除
Delete "$SMPROGRAMS\VRCT\VRCT.lnk"
RMDir "$SMPROGRAMS\VRCT"
# レジストリ キーを削除
DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\VRCT"
SectionEnd