Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Final tweaks for Windows release |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
5ac78b2860b8697d985911d945f4e3bf |
User & Date: | kevin 2020-03-14 12:36:54 |
Context
2020-03-15
| ||
02:45 | Minor tweak for dark mode Leaf check-in: 5f68421bdf user: kevin tags: trunk | |
2020-03-14
| ||
12:36 | Final tweaks for Windows release check-in: 5ac78b2860 user: kevin tags: trunk | |
2020-03-13
| ||
12:43 | Update final bit for Windows release check-in: 910b350973 user: kevin tags: trunk | |
Changes
Changes to install.bat.
︙ | ︙ | |||
49 50 51 52 53 54 55 | echo Set oLink = oWS.CreateShortcut(sLinkFile) >> %temp%\link.vbs echo oLink.TargetPath = "%appdata%\QuickWho_App\QuickWho.exe" >> %temp%\link.vbs echo oLink.IconLocation = %config_dir% + "quickwho.ico" >> %temp%\link.vbs echo oLink.Save >> %temp%\link.vbs call %temp%\link.vbs del %temp%\link.vbs | | | 49 50 51 52 53 54 55 56 57 58 59 | echo Set oLink = oWS.CreateShortcut(sLinkFile) >> %temp%\link.vbs echo oLink.TargetPath = "%appdata%\QuickWho_App\QuickWho.exe" >> %temp%\link.vbs echo oLink.IconLocation = %config_dir% + "quickwho.ico" >> %temp%\link.vbs echo oLink.Save >> %temp%\link.vbs call %temp%\link.vbs del %temp%\link.vbs call %config_dir%\pathed.exe -a "%appdata%\QuickWho_App\\" cd C:\Users\%username%\Desktop echo Done. |
Changes to uninstall.bat.
︙ | ︙ | |||
21 22 23 24 25 26 27 | reg delete "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\QuickWho.exe" /f reg delete "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\QuickWho" /f rmdir "%appdata%\Microsoft\Windows\Start Menu\QuickWho" /s /q echo MsgBox "Uninstallation of QuickWho is complete.", vbOKOnly+vbInformation, "Uninstall"> %temp%\remove.vbs call %temp%\remove.vbs del %temp%\remove.vbs /f /q | | | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | reg delete "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\QuickWho.exe" /f reg delete "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\QuickWho" /f rmdir "%appdata%\Microsoft\Windows\Start Menu\QuickWho" /s /q echo MsgBox "Uninstallation of QuickWho is complete.", vbOKOnly+vbInformation, "Uninstall"> %temp%\remove.vbs call %temp%\remove.vbs del %temp%\remove.vbs /f /q call %appdata%\QuickWho\pathed.exe -r "%appdata%\QuickWho_App\\" rd %appdata%\QuickWho_App /s /q start /b "" cmd /c rd "%appdata%\QuickWho\" /s /q && exit :cancel echo MsgBox "Uninstallation of QuickWho cancelled.",vbOKOnly+vbInformation, "Uninstall QuickWho" > %temp%\cancel.vbs call %temp%\cancel.vbs del %temp%\cancel.vbs /f /q exit /b |