Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update installer |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b141bafe564a8fade3c71b4ebf44285d |
User & Date: | kevin 2015-11-18 11:56:05 |
Context
2015-12-13
| ||
04:01 | Update file.ini check-in: 2085ffddd7 user: kevin tags: trunk | |
2015-11-18
| ||
11:56 | Update installer check-in: b141bafe56 user: kevin tags: trunk | |
03:40 | Adjust start menu item for Windows check-in: 19d98f7524 user: kevin tags: trunk | |
Changes
Changes to install.bat.
︙ | ︙ | |||
40 41 42 43 44 45 46 | set startdir="%appdata%\Microsoft\Windows\Start Menu\FileMorph\" if not exist %startdir% ( mkdir %startdir% ) cd %startdir% | | > > > > > > > | 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | set startdir="%appdata%\Microsoft\Windows\Start Menu\FileMorph\" if not exist %startdir% ( mkdir %startdir% ) cd %startdir% ::mklink /H FileMorph.exe "%appdata%\FileMorph_App\filemorph\FileMorph.exe" echo Set oWS = WScript.CreateObject("WScript.Shell") >%temp%\link.vbs echo sLinkFile = "FileMorph.lnk" >> %temp%\link.vbs echo Set oLink = oWS.CreateShortcut(sLinkFile) >> %temp%\link.vbs echo oLink.TargetPath = "%appdata%\FileMorph_App\filemorph\FileMorph.exe" >> %temp%\link.vbs echo oLink.Save >> %temp%\link.vbs call %temp%\link.vbs del %temp%\link.vbs cd C:\Users\%username%\Desktop echo Done. |