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
563
Trophies
0
Age
37
XP
1,618
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
  • Xdqwerty @ Xdqwerty:
    @Psionic Roshambo, it's a parody iirc
  • BigOnYa @ BigOnYa:
    Yea think that's where it was supposed to be, Miami
    +1
  • Psionic Roshambo @ Psionic Roshambo:
    Having been to Miami hmmm probably a hundred times lol
  • Psionic Roshambo @ Psionic Roshambo:
    Back in my days as a delivery driver for a cartel well driver slash guy they would send if a payment was forgotten lol
  • Psionic Roshambo @ Psionic Roshambo:
    you know to help them find their checkbook lol
  • BigOnYa @ BigOnYa:
    Gta4 was NewYork or Chicago, gta5 is California
  • K3Nv2 @ K3Nv2:
    Damn camera phones catching crimes
  • Psionic Roshambo @ Psionic Roshambo:
    Always some women screaming... You break a few thousand dollars worth of crap in someone's living room and they scream lol
  • Psionic Roshambo @ Psionic Roshambo:
    lol Ken yeah the things I did as a kid I am soooo glad those didn't exist
  • K3Nv2 @ K3Nv2:
    If someone breaks my $20 TV stand their nose is getting broke
  • Psionic Roshambo @ Psionic Roshambo:
    Psi would be doing like 300-3,000 years in prison lol
  • K3Nv2 @ K3Nv2:
    Have some in closet allegations?
  • Psionic Roshambo @ Psionic Roshambo:
    Someone tried to pull a gun on me once, they reached into the couch thinking I wouldn't notice, quick kick to the arm snapping it between the wrist and elbow broke like a swing lol I reached into the couch to see what was in there, cool a free .380 lol had to hit him with it a few times to remind him not to do it again lol
  • Psionic Roshambo @ Psionic Roshambo:
    He had the 20K he owed the very next day it was a miracle lol
  • Psionic Roshambo @ Psionic Roshambo:
    Psi was a bad bad man at one point lol
  • BigOnYa @ BigOnYa:
    We need a GTA based on your life, or at least put you in 6 as a character.
  • Psionic Roshambo @ Psionic Roshambo:
    I don't think people would believe 10% of the things I have done lol thank god...
  • Psionic Roshambo @ Psionic Roshambo:
    I have a giant check list of impossible things, and I haven't done them all yet lol
  • K3Nv2 @ K3Nv2:
    @Psionic Roshambo, Was the pot farmer in San andreas
  • Psionic Roshambo @ Psionic Roshambo:
    I tell people I wrestled a 5 foot alligator and they get this smile like this guy is full of shit lol the reality is I am sad it got away.... I wanted a pet alligator lol
  • BigOnYa @ BigOnYa:
    You live in Florida, so I believe it, you guys are crazy.
  • Psionic Roshambo @ Psionic Roshambo:
    At the time I would have probably fed it people lol
  • Psionic Roshambo @ Psionic Roshambo:
    Seriously cocaine not even once lol
  • BigOnYa @ BigOnYa:
    Not even once, but 100's of times
    +2
    BigOnYa @ BigOnYa: Not even once, but 100's of times +2