Skip to content

Instantly share code, notes, and snippets.

@MekDrop
Created November 19, 2017 01:41
Show Gist options
  • Save MekDrop/44e15db3572b85ddb6e7c3b8cefe65a4 to your computer and use it in GitHub Desktop.
Save MekDrop/44e15db3572b85ddb6e7c3b8cefe65a4 to your computer and use it in GitHub Desktop.
Windows 98 in Vagrant for games
@echo off
REM You need to install wget for windows first!
REM This command will download box (maybe there are also other win98 premade boxes for Vagrant?
REM This box doesn't work good with DirectX 3D and no SSH support (that's why vagrant displayes errors on lauch but works)
wget https://www.dropbox.com/s/btyp146041rravr/win98.box?dl=1 -O windows98.box
REM You need before vagrant with VirtualBox installed on you system
REM Adding box to vagrant
vagrant box add win98 windows98.box
REM Deleting local copy of box
del /Q windows98.box
REM Initialize box
vagrant init win98
REM Starting box
vagrant up
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment