2022-02-12 12:00:30 +00:00
|
|
|
# Tartube v2.3.367 installer script for MS Windows
|
2020-03-28 07:54:04 +00:00
|
|
|
#
|
2022-02-12 12:00:30 +00:00
|
|
|
# Copyright (C) 2019-2022 A S Lewis
|
2020-03-28 07:54:04 +00:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify it under
|
|
|
|
# the terms of the GNU General Public License as published by the Free Software
|
|
|
|
# Foundation, either version 3 of the License, or (at your option) any later
|
|
|
|
# version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along with
|
|
|
|
# this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# Build instructions:
|
|
|
|
# - These instructions describe how to create an installer for Tartube on a
|
|
|
|
# 64-bit MS Windows machine, Windows Vista or higher. For 32-bit machines
|
|
|
|
# see the tartube_install_32bit.nsi file
|
|
|
|
#
|
|
|
|
# - Download and install NSIS from
|
|
|
|
#
|
|
|
|
# http://nsis.sourceforge.io/Download/
|
|
|
|
#
|
|
|
|
# - Download the 64-bit version of MSYS2. The downloadable file should look
|
|
|
|
# something like 'msys2-x86-64-yyyymmdd.exe'
|
|
|
|
#
|
|
|
|
# http://www.msys2.org/
|
|
|
|
#
|
|
|
|
# - Run the file to install MSYS2. We suggest that you create a directory
|
|
|
|
# called C:\testme, and then let MSYS2 install itself inside that
|
|
|
|
# directory, i.e. C:\testme\msys64
|
|
|
|
#
|
|
|
|
# - Run the mingw64 terminal, i.e.
|
|
|
|
#
|
|
|
|
# C:\testme\msys64\mingw64.exe
|
|
|
|
#
|
|
|
|
# - We need to install various dependencies. In the terminal window, type
|
|
|
|
# this command
|
|
|
|
#
|
|
|
|
# pacman -Syu
|
|
|
|
#
|
|
|
|
# - Usually, the terminal window tells you to close it. Do that, and then
|
|
|
|
# open a new mingw64 terminal window
|
2020-05-07 08:45:06 +01:00
|
|
|
#
|
2020-03-28 07:54:04 +00:00
|
|
|
# - In the new window, type these commands
|
|
|
|
#
|
|
|
|
# pacman -Su
|
|
|
|
# pacman -S mingw-w64-x86_64-python3
|
|
|
|
# pacman -S mingw-w64-x86_64-python3-pip
|
|
|
|
# pacman -S mingw-w64-x86_64-python3-gobject
|
|
|
|
# pacman -S mingw-w64-x86_64-python3-requests
|
|
|
|
# pacman -S mingw-w64-x86_64-gtk3
|
|
|
|
# pacman -S mingw-w64-x86_64-gsettings-desktop-schemas
|
|
|
|
#
|
|
|
|
# - Optional step: you can check that the dependencies are working by typing
|
|
|
|
# this command (if you like):
|
|
|
|
#
|
|
|
|
# gtk3-demo
|
|
|
|
#
|
|
|
|
# - The C:\testme folder now contains about 2GB of data. If you like, you can
|
|
|
|
# use all of it (which would create an installer of about 600MB). In most
|
|
|
|
# cases, though, you will probably want to remove everything that's not
|
|
|
|
# necessary. This table shows which files and folders are in the official
|
|
|
|
# Tartube installer (which is about 90MB). Everything else can be
|
|
|
|
# deleted:
|
|
|
|
#
|
|
|
|
# C:\testme\msys64\dev
|
|
|
|
# C:\testme\msys64\etc
|
|
|
|
# C:\testme\msys64\home
|
2020-05-07 08:45:06 +01:00
|
|
|
# C:\testme\msys64\mingw64.exe
|
2020-03-28 07:54:04 +00:00
|
|
|
# C:\testme\msys64\mingw64\bin
|
|
|
|
# C:\testme\msys64\mingw64\bin\gdbus*
|
|
|
|
# C:\testme\msys64\mingw64\bin\gdk*
|
2020-05-07 08:45:06 +01:00
|
|
|
# C:\testme\msys64\mingw64\bin\gettext*
|
2020-03-28 07:54:04 +00:00
|
|
|
# C:\testme\msys64\mingw64\bin\gio*
|
|
|
|
# C:\testme\msys64\mingw64\bin\glib*
|
|
|
|
# C:\testme\msys64\mingw64\bin\gobject*
|
|
|
|
# C:\testme\msys64\mingw64\bin\gtk*
|
|
|
|
# C:\testme\msys64\mingw64\bin\json*
|
|
|
|
# C:\testme\msys64\mingw64\bin\lib*
|
|
|
|
# C:\testme\msys64\mingw64\bin\openssl
|
|
|
|
# C:\testme\msys64\mingw64\bin\pip*
|
|
|
|
# C:\testme\msys64\mingw64\bin\python*
|
|
|
|
# C:\testme\msys64\mingw64\bin\pyenv*
|
|
|
|
# C:\testme\msys64\mingw64\bin\sqlite*
|
|
|
|
# C:\testme\msys64\mingw64\bin\zlib1.dll
|
|
|
|
# C:\testme\msys64\mingw64\include\gdk-pixbuf-2.0
|
|
|
|
# C:\testme\msys64\mingw64\include\gio-win32-2.0
|
|
|
|
# C:\testme\msys64\mingw64\include\glib-2.0
|
|
|
|
# C:\testme\msys64\mingw64\include\gsettings-desktop-schemas
|
|
|
|
# C:\testme\msys64\mingw64\include\gtk-3.0
|
|
|
|
# C:\testme\msys64\mingw64\include\json-glib-1.0
|
|
|
|
# C:\testme\msys64\mingw64\include\ncurses
|
|
|
|
# C:\testme\msys64\mingw64\include\ncursesw
|
|
|
|
# C:\testme\msys64\mingw64\include\openssl
|
|
|
|
# C:\testme\msys64\mingw64\include\pycairo
|
|
|
|
# C:\testme\msys64\mingw64\include\pygobject-3.0
|
2020-05-07 08:45:06 +01:00
|
|
|
# C:\testme\msys64\mingw64\include\python3.8
|
2020-03-28 07:54:04 +00:00
|
|
|
# C:\testme\msys64\mingw64\include\readline
|
|
|
|
# C:\testme\msys64\mingw64\include\tk8.6
|
|
|
|
# C:\testme\msys64\mingw64\lib\gdk-pixbuf-2.0
|
2020-05-07 08:45:06 +01:00
|
|
|
# C:\testme\msys64\mingw64\lib\gettext
|
2020-03-28 07:54:04 +00:00
|
|
|
# C:\testme\msys64\mingw64\lib\girepository-1.0
|
|
|
|
# C:\testme\msys64\mingw64\lib\glib-2.0
|
|
|
|
# C:\testme\msys64\mingw64\lib\gtk-3.0
|
2020-05-07 08:45:06 +01:00
|
|
|
# C:\testme\msys64\mingw64\lib\python3.8\collections
|
|
|
|
# C:\testme\msys64\mingw64\lib\python3.8\ctypes
|
|
|
|
# C:\testme\msys64\mingw64\lib\python3.8\distutils
|
|
|
|
# C:\testme\msys64\mingw64\lib\python3.8\email
|
|
|
|
# C:\testme\msys64\mingw64\lib\python3.8\encodings
|
|
|
|
# C:\testme\msys64\mingw64\lib\python3.8\ensurepip
|
|
|
|
# C:\testme\msys64\mingw64\lib\python3.8\html
|
|
|
|
# C:\testme\msys64\mingw64\lib\python3.8\http
|
|
|
|
# C:\testme\msys64\mingw64\lib\python3.8\importlib
|
|
|
|
# C:\testme\msys64\mingw64\lib\python3.8\json
|
|
|
|
# C:\testme\msys64\mingw64\lib\python3.8\lib2to3
|
|
|
|
# C:\testme\msys64\mingw64\lib\python3.8\lib-dynload
|
|
|
|
# C:\testme\msys64\mingw64\lib\python3.8\logging
|
|
|
|
# C:\testme\msys64\mingw64\lib\python3.8\msilib
|
|
|
|
# C:\testme\msys64\mingw64\lib\python3.8\multiprocessing
|
|
|
|
# C:\testme\msys64\mingw64\lib\python3.8\site-packages
|
|
|
|
# C:\testme\msys64\mingw64\lib\python3.8\sqlite3
|
|
|
|
# C:\testme\msys64\mingw64\lib\python3.8\urllib
|
|
|
|
# C:\testme\msys64\mingw64\lib\python3.8\xml
|
|
|
|
# C:\testme\msys64\mingw64\lib\python3.8\xmlrpc
|
|
|
|
# C:\testme\msys64\mingw64\lib\python3.8\*.py
|
2020-03-28 07:54:04 +00:00
|
|
|
# C:\testme\msys64\mingw64\lib\thread2.8.4
|
|
|
|
# C:\testme\msys64\mingw64\lib\tk8.6
|
2020-05-07 08:45:06 +01:00
|
|
|
# C:\testme\msys64\mingw64\share\gettext
|
2020-03-28 07:54:04 +00:00
|
|
|
# C:\testme\msys64\mingw64\share\gir-1.0
|
|
|
|
# C:\testme\msys64\mingw64\share\glib-2.0
|
|
|
|
# C:\testme\msys64\mingw64\share\gtk-3.0
|
|
|
|
# C:\testme\msys64\mingw64\share\icons
|
|
|
|
# C:\testme\msys64\mingw64\share\locale\en*
|
|
|
|
# C:\testme\msys64\mingw64\share\locale\locale.alias
|
|
|
|
# C:\testme\msys64\mingw64\share\themes
|
|
|
|
# C:\testme\msys64\mingw64\share\thumbnailers
|
|
|
|
# C:\testme\msys64\mingw64\ssl
|
|
|
|
# C:\testme\msys64\tmp
|
|
|
|
# C:\testme\msys64\usr\bin\bash
|
|
|
|
# C:\testme\msys64\usr\bin\chmod
|
2020-05-07 08:45:06 +01:00
|
|
|
# C:\testme\msys64\usr\bin\cut
|
2020-03-28 07:54:04 +00:00
|
|
|
# C:\testme\msys64\usr\bin\cygpath
|
|
|
|
# C:\testme\msys64\usr\bin\cygwin-console-helper
|
|
|
|
# C:\testme\msys64\usr\bin\dir
|
|
|
|
# C:\testme\msys64\usr\bin\env
|
|
|
|
# C:\testme\msys64\usr\bin\find
|
|
|
|
# C:\testme\msys64\usr\bin\findfs
|
|
|
|
# C:\testme\msys64\usr\bin\gpg*
|
|
|
|
# C:\testme\msys64\usr\bin\hostid
|
|
|
|
# C:\testme\msys64\usr\bin\hostname
|
|
|
|
# C:\testme\msys64\usr\bin\iconv
|
|
|
|
# C:\testme\msys64\usr\bin\id
|
|
|
|
# C:\testme\msys64\usr\bin\ln
|
|
|
|
# C:\testme\msys64\usr\bin\lndir
|
|
|
|
# C:\testme\msys64\usr\bin\locale
|
|
|
|
# C:\testme\msys64\usr\bin\ls
|
|
|
|
# C:\testme\msys64\usr\bin\mintty
|
|
|
|
# C:\testme\msys64\usr\bin\mkdir
|
|
|
|
# C:\testme\msys64\usr\bin\msys-2.0.dll
|
|
|
|
# C:\testme\msys64\usr\bin\msys-assuan-0.dll
|
|
|
|
# C:\testme\msys64\usr\bin\msys-bz2-1.dll
|
|
|
|
# C:\testme\msys64\usr\bin\msys-gcc_s-1.dll
|
|
|
|
# C:\testme\msys64\usr\bin\msys-gcrypt-20.dll
|
|
|
|
# C:\testme\msys64\usr\bin\msys-gio-2.0-0.dll
|
|
|
|
# C:\testme\msys64\usr\bin\msys-glib-2.0-0.dll
|
|
|
|
# C:\testme\msys64\usr\bin\msys-gobject-2.0-0.dll
|
|
|
|
# C:\testme\msys64\usr\bin\msys-gpg-error-0.dll
|
|
|
|
# C:\testme\msys64\usr\bin\msys-gpgme-11.dll
|
|
|
|
# C:\testme\msys64\usr\bin\msys-gpgmepp-6.dll
|
|
|
|
# C:\testme\msys64\usr\bin\msys-gthread-2.0-0.dll
|
|
|
|
# C:\testme\msys64\usr\bin\msys-iconv-2.dll
|
|
|
|
# C:\testme\msys64\usr\bin\msys-intl-8.dll
|
|
|
|
# C:\testme\msys64\usr\bin\msys-ncurses++w6.dll
|
|
|
|
# C:\testme\msys64\usr\bin\msys-ncursesw6.dll
|
|
|
|
# C:\testme\msys64\usr\bin\msys-readline8.dll
|
|
|
|
# C:\testme\msys64\usr\bin\msys-sqlite3-0.dll
|
|
|
|
# C:\testme\msys64\usr\bin\msys-stdc++06.dll
|
|
|
|
# C:\testme\msys64\usr\bin\msys-z.dll
|
|
|
|
# C:\testme\msys64\usr\bin\pac*
|
|
|
|
# C:\testme\msys64\usr\bin\test
|
|
|
|
# C:\testme\msys64\usr\bin\tzset
|
2020-05-07 08:45:06 +01:00
|
|
|
# C:\testme\msys64\usr\lib\gettext
|
2020-03-28 07:54:04 +00:00
|
|
|
# C:\testme\msys64\usr\lib\gio
|
|
|
|
# C:\testme\msys64\usr\lib\openssl
|
2020-05-07 08:45:06 +01:00
|
|
|
# C:\testme\msys64\usr\lib\python3.8
|
2020-03-28 07:54:04 +00:00
|
|
|
# C:\testme\msys64\usr\share\cygwin
|
|
|
|
# C:\testme\msys64\usr\share\glib-2.0
|
|
|
|
# C:\testme\msys64\usr\share\mintty
|
|
|
|
# C:\testme\msys64\usr\share\Msys
|
|
|
|
# C:\testme\msys64\usr\share\pacman
|
|
|
|
# C:\testme\msys64\usr\share\pactoys
|
|
|
|
# C:\testme\msys64\usr\ssl
|
|
|
|
# C:\testme\msys64\var\lib\pacman
|
|
|
|
#
|
2020-05-07 08:45:06 +01:00
|
|
|
# - The followng optional dependencies are required for fetching livestreams.
|
|
|
|
# If you decide to install them (it's recommended that you do), run the
|
|
|
|
# mingw64 terminal again, if it's not still open
|
|
|
|
#
|
|
|
|
# C:\testme\msys64\mingw64.exe
|
|
|
|
#
|
|
|
|
# - In the terminal window, type
|
|
|
|
#
|
|
|
|
# pip3 install feedparser
|
|
|
|
# pip3 install playsound
|
|
|
|
#
|
2021-01-07 14:06:39 +00:00
|
|
|
# - In the terminal window, you could add the following optional packages:
|
|
|
|
#
|
|
|
|
# pacman -S mingw-w64-x86_64-aria2
|
|
|
|
# pacman -S mingw-w64-x86_64-python-matplotlib
|
|
|
|
#
|
2020-05-07 08:45:06 +01:00
|
|
|
# - AtomicParsley, if you want it, can be copied to this location:
|
|
|
|
#
|
2020-03-28 07:54:04 +00:00
|
|
|
# C:\testme\msys64\usr\bin
|
|
|
|
#
|
2020-05-07 08:45:06 +01:00
|
|
|
# - Now download the Tartube source code from
|
|
|
|
#
|
|
|
|
# https://sourceforge.net/projects/tartube/
|
|
|
|
#
|
|
|
|
# - Extract it, and copy the whole 'tartube' folder to
|
|
|
|
#
|
|
|
|
# C:\testme\msys64\home\YOURNAME
|
|
|
|
#
|
|
|
|
# - Note that YOURNAME should be substituted for your actual Windows
|
|
|
|
# username. For example, the copied folder might be
|
|
|
|
#
|
|
|
|
# C:\testme\msys64\home\alice\tartube
|
|
|
|
#
|
|
|
|
# - Next, copy all of the files in
|
2020-03-28 07:54:04 +00:00
|
|
|
# C:\testme\msys64\home\YOURNAME\tartube\nsis to C:\testme
|
2020-05-07 08:45:06 +01:00
|
|
|
#
|
2020-03-28 07:54:04 +00:00
|
|
|
# - Create the installer by compiling the NSIS script,
|
|
|
|
# C:\testme\tartube_install_64bit.nsi (the quickest way to do this is
|
|
|
|
# by right-clicking the file and selecting 'Compile NSIS script file')
|
2020-05-07 08:45:06 +01:00
|
|
|
#
|
2020-03-28 07:54:04 +00:00
|
|
|
# - When NSIS is finished, the installer appears in C:\testme
|
|
|
|
|
|
|
|
# Header files
|
|
|
|
# -------------------------------
|
|
|
|
|
|
|
|
!include "MUI2.nsh"
|
|
|
|
!include "Sections.nsh"
|
|
|
|
|
|
|
|
# General
|
|
|
|
# -------------------------------
|
|
|
|
|
|
|
|
;Name and file
|
|
|
|
Name "Tartube"
|
2022-02-12 12:00:30 +00:00
|
|
|
OutFile "install-tartube-2.3.367-64bit.exe"
|
2020-03-28 07:54:04 +00:00
|
|
|
|
|
|
|
;Default installation folder
|
|
|
|
InstallDir "$LOCALAPPDATA\Tartube"
|
|
|
|
|
|
|
|
;Get installation folder from registry if available
|
|
|
|
InstallDirRegKey HKCU "Software\Tartube" ""
|
|
|
|
|
|
|
|
;Request application privileges for Windows Vista
|
|
|
|
RequestExecutionLevel user
|
|
|
|
|
|
|
|
; Extra stuff here
|
|
|
|
BrandingText " "
|
|
|
|
|
|
|
|
# Variables
|
|
|
|
# -------------------------------
|
|
|
|
|
|
|
|
### Var StartMenuFolder
|
|
|
|
|
|
|
|
# Interface settings
|
|
|
|
# -------------------------------
|
|
|
|
|
|
|
|
!define MUI_ABORTWARNING
|
|
|
|
!define MUI_ICON "tartube_icon.ico"
|
|
|
|
!define MUI_UNICON "tartube_icon.ico"
|
|
|
|
!define MUI_HEADERIMAGE
|
|
|
|
!define MUI_HEADERIMAGE_BITMAP "tartube_header.bmp"
|
|
|
|
!define MUI_HEADERIMAGE_UNBITMAP "tartube_header.bmp"
|
|
|
|
!define MUI_WELCOMEFINISHPAGE_BITMAP "tartube_wizard.bmp"
|
|
|
|
|
|
|
|
# Pages
|
|
|
|
# -------------------------------
|
|
|
|
|
|
|
|
!insertmacro MUI_PAGE_WELCOME
|
|
|
|
|
|
|
|
!insertmacro MUI_PAGE_LICENSE "license.txt"
|
|
|
|
|
|
|
|
!insertmacro MUI_PAGE_DIRECTORY
|
|
|
|
|
|
|
|
!define MUI_STARTMENUPAGE_REGISTRY_ROOT "SHCTX"
|
|
|
|
!define MUI_STARTMENUPAGE_REGISTRY_KEY "Software\Tartube"
|
|
|
|
!define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Startmenu"
|
|
|
|
!define MUI_STARTMENUPAGE_DEFAULTFOLDER "Tartube"
|
|
|
|
|
|
|
|
!insertmacro MUI_PAGE_INSTFILES
|
|
|
|
|
|
|
|
!define MUI_FINISHPAGE_RUN "$INSTDIR\msys64\home\user\tartube\tartube_64bit.bat"
|
|
|
|
!define MUI_FINISHPAGE_RUN_TEXT "Run Tartube"
|
|
|
|
!define MUI_FINISHPAGE_RUN_NOTCHECKED
|
|
|
|
!define MUI_FINISHPAGE_LINK "Visit the Tartube website for the latest news \
|
|
|
|
and support"
|
|
|
|
!define MUI_FINISHPAGE_LINK_LOCATION "http://tartube.sourceforge.io/"
|
|
|
|
!insertmacro MUI_PAGE_FINISH
|
|
|
|
|
|
|
|
!insertmacro MUI_UNPAGE_CONFIRM
|
|
|
|
!insertmacro MUI_UNPAGE_INSTFILES
|
|
|
|
|
|
|
|
# Languages
|
|
|
|
# -------------------------------
|
|
|
|
|
|
|
|
!insertmacro MUI_LANGUAGE "English"
|
|
|
|
|
|
|
|
# Installer sections
|
|
|
|
# -------------------------------
|
|
|
|
|
|
|
|
Section "Tartube" SecClient
|
|
|
|
|
|
|
|
SectionIn RO
|
|
|
|
SetOutPath "$INSTDIR"
|
|
|
|
|
|
|
|
File "tartube_icon.ico"
|
|
|
|
File /r msys64
|
|
|
|
|
|
|
|
SetOutPath "$INSTDIR\msys64\home\user\tartube"
|
|
|
|
|
|
|
|
# Start Menu
|
|
|
|
CreateDirectory "$SMPROGRAMS\Tartube"
|
|
|
|
CreateShortCut "$SMPROGRAMS\Tartube\Tartube.lnk" \
|
|
|
|
"$INSTDIR\msys64\home\user\tartube\tartube_64bit.bat" \
|
|
|
|
"" "$INSTDIR\tartube_icon.ico" "" SW_SHOWMINIMIZED
|
|
|
|
CreateShortCut "$SMPROGRAMS\Tartube\Uninstall Tartube.lnk" \
|
|
|
|
"$INSTDIR\Uninstall.exe" \
|
|
|
|
"" "$INSTDIR\tartube_icon.ico"
|
|
|
|
|
|
|
|
# Desktop icon
|
|
|
|
CreateShortcut "$DESKTOP\Tartube.lnk" \
|
|
|
|
"$INSTDIR\msys64\home\user\tartube\tartube_64bit.bat" \
|
|
|
|
"" "$INSTDIR\tartube_icon.ico" "" SW_SHOWMINIMIZED
|
|
|
|
|
|
|
|
# Store installation folder
|
|
|
|
# Commented out from v1.5.0; these instructions don't work, and probably
|
|
|
|
# aren't necessary anyway
|
|
|
|
# WriteRegStr HKLM \
|
|
|
|
# "Software\Microsoft\Windows\CurrentVersion\Uninstall\Tartube" \
|
|
|
|
# "DisplayName" "Tartube"
|
|
|
|
# WriteRegStr HKLM \
|
|
|
|
# "Software\Microsoft\Windows\CurrentVersion\Uninstall\Tartube" \
|
|
|
|
# "UninstallString" "$\"$INSTDIR\Uninstall.exe$\""
|
|
|
|
# WriteRegStr HKLM \
|
|
|
|
# "Software\Microsoft\Windows\CurrentVersion\Uninstall\Tartube" \
|
|
|
|
# "Publisher" "A S Lewis"
|
|
|
|
# WriteRegStr HKLM \
|
|
|
|
# "Software\Microsoft\Windows\CurrentVersion\Uninstall\Tartube" \
|
2022-02-12 12:00:30 +00:00
|
|
|
# "DisplayVersion" "2.3.367"
|
2020-03-28 07:54:04 +00:00
|
|
|
|
|
|
|
# Create uninstaller
|
|
|
|
WriteUninstaller "$INSTDIR\Uninstall.exe"
|
|
|
|
|
|
|
|
SectionEnd
|
|
|
|
|
|
|
|
# Uninstaller sections
|
|
|
|
# -------------------------------
|
|
|
|
|
|
|
|
Section "Uninstall"
|
|
|
|
|
|
|
|
Delete "$SMPROGRAMS\Tartube\Tartube.lnk"
|
|
|
|
Delete "$SMPROGRAMS\Tartube\Uninstall Tartube.lnk"
|
|
|
|
Delete "$SMPROGRAMS\Tartube\Gtk graphics test.lnk"
|
|
|
|
RMDir /r "$SMPROGRAMS\Tartube"
|
|
|
|
Delete "$DESKTOP\Tartube.lnk"
|
|
|
|
|
|
|
|
RMDir /r "$INSTDIR"
|
|
|
|
Delete "$INSTDIR\Uninstall.exe"
|
|
|
|
|
|
|
|
DeleteRegKey HKLM \
|
|
|
|
"Software\Microsoft\Windows\CurrentVersion\Uninstall\Tartube"
|
|
|
|
|
|
|
|
SectionEnd
|