Inkscape
Post date: Oct 19, 2017 2:56:37 PM
@rem Inkscape is a professional vector graphics editor for creating a wide variety of graphics
@rem such as illustrations, icons, logos, diagrams, maps and web graphics. 矢量圖編輯工具軟件
@rem https://inkscape.org
if not exist "%SystemDrive%\Program Files (x86)" goto not_64bit
if exist Inkscape\inkscape-0.92.4-x64.msi goto next_64bit
start /wait "" wget.exe "https://media.inkscape.org/dl/resources/file/inkscape-0.92.4-x64.msi" --directory-prefix=Inkscape
:next_64bit
msiexec /qb /i Inkscape\inkscape-0.92.4-x64.msi
goto end
:not_64bit
if exist Inkscape\inkscape-0.92.4-x86.ms goto next
start /wait "" wget.exe "https://media.inkscape.org/dl/resources/file/inkscape-0.92.4-x86.msi" --directory-prefix=Inkscape
:next
msiexec /qb /i Inkscape\inkscape-0.92.4-x86.msi
:end