Rem Rename this to be 'GetFrogdown.bat' and put it in your C:\home directory echo off cls Rem 'Frogdown.zip' is everything, including all the Frogdown .md and image filea set ZIPFILE=Frogdown.zip Rem FrogdownScripts.zip is the /bin Perl scripts and the /WindowsOnly/bin directories Rem Frogdown/WindowsOnly/bin has the UnxUtils programs that are needed to run the rest of this .bat file. Rem They need to go on your path. Rem set ZIPFILE=FrogdownScripts.zip echo Downloads and installs Frogdown from scratch echo Requires wget, egrep, and cp, which are in UnxUtils echo https://sourceforge.net/projects/unxutils/ echo (and are also in this .zip file in 'Frogdown\WindowsOnly\bin') echo . echo Let's see if we have wget and cp wget --version | egrep "GNU Wget" cp --version egrep --version | egrep "egrep \(GNU grep\)" echo (Should not complain about 'program not found') To fix: echo http://www.frogymandias.org/Frogdown/FrogdownWindows.html#unxutils echo . echo Will download and unzip %ZIPFILE% pause Rem wget doesn't do overwriting very well. rm %ZIPFILE% wget "http://www.frogymandias.org/Frogdown/%ZIPFILE%" unzip -qo %ZIPFILE% Rem So it is there, so the install pages don't throw "File not found" errors. Rem (The zip files aren't included in the .zip files. For space reasons.) cp -f %ZIPFILE% Frogdown/frog_authoring/Frogdown echo Rem the 'cp ...' line out after your first install! echo on cp Frogdown/etc/markcms-windows/*.cfg Frogdown/etc/markcms pause