Trying to install Windows 95/98/me on new 3DS XL

Joined
Jan 17, 2024
Messages
8
Trophies
0
Age
23
XP
34
Country
Italy
Hi guys i found the version MrHuu dosbox-3ds of DOS-BOX onand i dont know how to install windows 95/98/me (i prefer me) on the New nintendo 3ds xl.
I even need help whit commands becous i'm new whit DOS (exuses me for my english im italian)
P.S I tried evrey guide and i still didn't found out how to do it
 
Joined
Jan 17, 2024
Messages
8
Trophies
0
Age
23
XP
34
Country
Italy
Maybe you should start by saying which guides you've looked at and what you didn't understand? It would be pointless to try to give you more advice that you can't use.

Even if you are successful, this is never going to work very well.
i've looked the ones on gbatemp and reddit (i don't know why i cant put the links)
 
Joined
Jan 17, 2024
Messages
8
Trophies
0
Age
23
XP
34
Country
Italy
You don't have to post links to explain what you didn't understand.

You can't post links before you make a certain number of posts.
ok, so i didn,t understood what files i need, how let DOS recognize this files and the commnds for let this happen
Post automatically merged:

bro are u still here???
 
Last edited by 1234567890098765432112345,
  • Wow
Reactions: SylverReZ

MrHuu

Well-Known Member
Member
Joined
Sep 19, 2015
Messages
562
Trophies
0
Age
37
XP
1,592
Country
Netherlands
I have windows 1.04, 2.03, 3.11 and 95 running with dosbox.
Windows 98 runs into errors during setup and i haven't attempted ME.

Windows 95 doesn't run fast, but quite sufficient to play solitaire while running neko95 in the background.
For very basic software it's usable. Otherwise it's quite limited.

If you're up to it, grab a coffee and let's do it:

Windows 95 can only be installed on a hard-disk image (.img), and then boot from it.

Once booted from an image, we loose the ability to access the sd card directly. So we could mount an additional image, prepared on pc, which includes the windows installation files and additional software. Or mount a windows setup CD image, but i prefer the floppy installation files due to it's size.

Required files:

- Blank unformatted hdd image ( attached to this post )
- Dos / win95 boot floppy (.img)
- Windows 95 installation files ( I've used the floppy installation, copied all contents to a single folder. )
- 'DiskExplorer' to open and edit .img files: Download HERE


Use the attached blank images to setup a hdd.
In the included 'ReadMe.txt' you can find the '-size' values to use for each image.
- Make sure to adapt the IMGMOUNT command to the size you're using!

Open your hdd image with 'DiskExplorer', and select 'vmware plain disk'.

Copy the windows install files and other software into your hdd image and copy to your sd.

Also make sure to copy a boot floppy and your 'hdd.img' files.

Edit your 'dosbox.conf', and start dosbox:
Code:
[cpu]
core      = auto
cputype   = pentium_slow
cycles    = 3000
cycleup   = 100
cycledown = 100
This works for me, adjust the cycles during runtime to your liking. I usually end up around 5300 cycles.

Mount a disk image, and boot from it:
Code:
# Mount a boot (floppy) disk to A:
IMGMOUNT 0 "sdmc:/3ds/DOSBox/Image/Windows/_BOOT/BOOT95FD.img" -t floppy -fs none

# Mount harddisk image to C:
IMGMOUNT 2 "sdmc:/3ds/DOSBox/Image/Windows/Win95/hdd-128mb.img" -size 512,63,8,520 -t hdd -fs none

# Boot from floppy A: to format and prepare hdd image
BOOT -l A

Once booted from your boot floppy, format your hdd image and copy system files:
Code:
format c: /s

Now restart and mount the additional hdd image or cd, instead of the boot floppy:
Code:
# Mount harddisk image to C:
IMGMOUNT 2 "sdmc:/3ds/DOSBox/Image/Windows/Win95/hdd-128mb.img" -size 512,63,8,520 -t hdd -fs none

# Mount additional hardisk to D:
IMGMOUNT 3 "sdmc:/3ds/DOSBox/Image/Windows/_IMAGE/hdd-512mb.img" -size 512,63,32,520 -t hdd -fs none

# Or you could mount a setup CD to D:
IMGMOUNT D "sdmc:/3ds/DOSBox/Image/Windows/_CD/WIN95CD.cue" -t iso

# Boot from hdd C:
BOOT -l C

Once booted, navigate to your win95 setup files and install:
Code:
# Select the disk
d:

# Navigate to your windows setup directory
cd WIN95FD

# run windows setup (and skip scandisk if you want):
setup /is /IW

Now you should be able to restart and boot from your newly installed windows 95 hdd image:

Code:
IMGMOUNT 2 "sdmc:/3ds/DOSBox/Image/Windows/Win95/hdd-128mb.img" -size 512,63,8,520 -t hdd -fs none
BOOT -l C
You can also add these two commands to a 'dosbox.conf' file [autoexec] section.

Have fun!
 

Attachments

  • blank-disk-images.7z
    522.4 KB · Views: 16
Joined
Jan 17, 2024
Messages
8
Trophies
0
Age
23
XP
34
Country
Italy
I don't think they were being rude, sounded like an apologetic excuse me
Yes that's right
Post automatically merged:

I have windows 1.04, 2.03, 3.11 and 95 running with dosbox.
Windows 98 runs into errors during setup and i haven't attempted ME.

Windows 95 doesn't run fast, but quite sufficient to play solitaire while running neko95 in the background.
For very basic software it's usable. Otherwise it's quite limited.

If you're up to it, grab a coffee and let's do it:

Windows 95 can only be installed on a hard-disk image (.img), and then boot from it.

Once booted from an image, we loose the ability to access the sd card directly. So we could mount an additional image, prepared on pc, which includes the windows installation files and additional software. Or mount a windows setup CD image, but i prefer the floppy installation files due to it's size.

Required files:

- Blank unformatted hdd image ( attached to this post )
- Dos / win95 boot floppy (.img)
- Windows 95 installation files ( I've used the floppy installation, copied all contents to a single folder. )
- 'DiskExplorer' to open and edit .img files: Download HERE


Use the attached blank images to setup a hdd.
In the included 'ReadMe.txt' you can find the '-size' values to use for each image.
- Make sure to adapt the IMGMOUNT command to the size you're using!

Open your hdd image with 'DiskExplorer', and select 'vmware plain disk'.

Copy the windows install files and other software into your hdd image and copy to your sd.

Also make sure to copy a boot floppy and your 'hdd.img' files.

Edit your 'dosbox.conf', and start dosbox:
Code:
[cpu]
core      = auto
cputype   = pentium_slow
cycles    = 3000
cycleup   = 100
cycledown = 100
This works for me, adjust the cycles during runtime to your liking. I usually end up around 5300 cycles.

Mount a disk image, and boot from it:
Code:
# Mount a boot (floppy) disk to A:
IMGMOUNT 0 "sdmc:/3ds/DOSBox/Image/Windows/_BOOT/BOOT95FD.img" -t floppy -fs none

# Mount harddisk image to C:
IMGMOUNT 2 "sdmc:/3ds/DOSBox/Image/Windows/Win95/hdd-128mb.img" -size 512,63,8,520 -t hdd -fs none

# Boot from floppy A: to format and prepare hdd image
BOOT -l A

Once booted from your boot floppy, format your hdd image and copy system files:
Code:
format c: /s

Now restart and mount the additional hdd image or cd, instead of the boot floppy:
Code:
# Mount harddisk image to C:
IMGMOUNT 2 "sdmc:/3ds/DOSBox/Image/Windows/Win95/hdd-128mb.img" -size 512,63,8,520 -t hdd -fs none

# Mount additional hardisk to D:
IMGMOUNT 3 "sdmc:/3ds/DOSBox/Image/Windows/_IMAGE/hdd-512mb.img" -size 512,63,32,520 -t hdd -fs none

# Or you could mount a setup CD to D:
IMGMOUNT D "sdmc:/3ds/DOSBox/Image/Windows/_CD/WIN95CD.cue" -t iso

# Boot from hdd C:
BOOT -l C

Once booted, navigate to your win95 setup files and install:
Code:
# Select the disk
d:

# Navigate to your windows setup directory
cd WIN95FD

# run windows setup (and skip scandisk if you want):
setup /is /IW

Now you should be able to restart and boot from your newly installed windows 95 hdd image:
dude can you send me the win 98 boot file img??? and the setup one?
Post automatically merged:

but after the install can i connect to the internet whit the 3ds antena whit protoweb?
 
Last edited by 1234567890098765432112345,

Site & Scene News

Popular threads in this forum

General chit-chat
Help Users
  • K3Nv2 @ K3Nv2:
    Speaking of old stuff those green og Logitech Xbox controllers still being listed around $100
  • The Real Jdbye @ The Real Jdbye:
    eyetoy was fun yeah
  • The Real Jdbye @ The Real Jdbye:
    super basic, but the minigames were well designed
  • The Real Jdbye @ The Real Jdbye:
    i'm sure there's at least 1 emulator out there that works with it
  • Psionic Roshambo @ Psionic Roshambo:
    I had the PS3 one too and The Eye of Judgement game lol was ass
  • The Real Jdbye @ The Real Jdbye:
    i had eye toy play on ps2
  • K3Nv2 @ K3Nv2:
    Microsoft ruined it with kinect
  • Psionic Roshambo @ Psionic Roshambo:
    @The Real Jdbye, PCSX2 works with any web cam and emulates the EyeToy with it
  • K3Nv2 @ K3Nv2:
    I remember mic support for the n64 being janky
  • K3Nv2 @ K3Nv2:
    Emulation wise
  • Psionic Roshambo @ Psionic Roshambo:
    I had a kinnect.... It blew rotting goat balls
  • Psionic Roshambo @ Psionic Roshambo:
    Ken amazingly DraStic microphone support works better than real hardware lol
  • Psionic Roshambo @ Psionic Roshambo:
    On a phone of course
  • Psionic Roshambo @ Psionic Roshambo:
    Also touch is better.... Well at least better than the launch DS, the lite one improved that a ton
  • K3Nv2 @ K3Nv2:
    Touch
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    I really need to dig out my USB Wii sensor bar and experiment with Wii emulation and synching Wii remotes with BT lol
  • Psionic Roshambo @ Psionic Roshambo:
    Sort of redundant since I have a Wii lol
  • Psionic Roshambo @ Psionic Roshambo:
    With HDMI lol
  • K3Nv2 @ K3Nv2:
    I also have a Wii
  • K3Nv2 @ K3Nv2:
    Tomorrow be may 4th
  • Psionic Roshambo @ Psionic Roshambo:
    Getting Wiid from Street Pharmacist Mario?
  • K3Nv2 @ K3Nv2:
    1tb SD card for whatever reason
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    USB adapter and use as a Wii hard drive? Lol
  • The Real Jdbye @ The Real Jdbye:
    @K3Nv2 yeah they really did
  • The Real Jdbye @ The Real Jdbye:
    kinect was a good idea, they just didn't release any good games for it
    The Real Jdbye @ The Real Jdbye: kinect was a good idea, they just didn't release any good games for it