Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Updated Windows files |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
8eb6ed45eba93387f354907ba8d4febe |
User & Date: | kevin 2020-05-09 18:30:14 |
Context
2020-05-09
| ||
18:47 | Add new tklib check-in: 8c0cb38f03 user: kevin tags: trunk | |
18:30 | Updated Windows files check-in: 8eb6ed45eb user: kevin tags: trunk | |
12:36 | Refinement of scripting interface check-in: 8912fce095 user: kevin tags: trunk | |
Changes
Changes to stringscan-cli.bat.
︙ | ︙ |
Changes to uninstall.bat.
︙ | ︙ | |||
14 15 16 17 18 19 20 | echo wscript.echo MsgBox("Do you want to uninstall Stringscan?", vbYesNo+vbInformation, "Uninstall") > %temp%\confirm.vbs for /f "tokens=* delims=" %%a in ('cscript //nologo "%temp%\confirm.vbs"') do set yesno=%%a del %temp%\confirm.vbs /f /q exit /b :remove | | | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | echo wscript.echo MsgBox("Do you want to uninstall Stringscan?", vbYesNo+vbInformation, "Uninstall") > %temp%\confirm.vbs for /f "tokens=* delims=" %%a in ('cscript //nologo "%temp%\confirm.vbs"') do set yesno=%%a del %temp%\confirm.vbs /f /q exit /b :remove reg delete "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\Stringscan.lnk" /f reg delete "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Stringscan" /f rmdir "%appdata%\Microsoft\Windows\Start Menu\Stringscan" /s /q echo MsgBox "Uninstallation of Stringscan is complete.", vbOKOnly+vbInformation, "Uninstall"> %temp%\remove.vbs call %temp%\remove.vbs del %temp%\remove.vbs /f /q call %appdata%\Stringscan\pathed.exe -r "%appdata%\Stringscan_App\\" |
︙ | ︙ |