Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- set "DOSBOX_EXE=D:\Program Files\DOSBox-X\dosbox-x.exe"
- set "DOGDAY_DIR=E:\Gaming\DosBox\DogDay"
- set "WIN_ISO=WIN950~1.ISO"
- :: A larger disk image (e.g., 500MB–2GB) that emulates a hard drive. Acts as a
- :: virtual C: drive where Win 95 will actually be installed and run. Created with:
- :: imgmake win95.img -t hd -chs 512,16,63 -size 500
- set "WIN_IMG=hdd.img"
- :: A 1.44MB floppy image that emulates a bootable DOS disk. Used to boot into DOS
- :: so you can partition and format the hard drive and start the Win 95 installer
- set "BOOT_IMG=win95b.img"
- cd /d "%DOGDAY_DIR%"
- "%DOSBOX_EXE%" ^
- -c "mount y ." ^
- -c "imgmount 2 y:\%WIN_IMG% -t hdd -fs none -ide 1" ^
- -c "imgmount 3 y:\%WIN_ISO% -t cdrom -ide 2m" ^
- -c "boot y:\%BOOT_IMG%"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement