this post was submitted on 18 Aug 2023
503 points (90.2% liked)
Memes
45622 readers
1431 users here now
Rules:
- Be civil and nice.
- Try not to excessively repost, as a rule of thumb, wait at least 2 months to do it if you have to.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Story time: In 1994 my friends dad still had a PC running DOS/Windows 3.1
My friend and I had been downloading pron clips from a local BBS that were all in a *.dl file format.
My friend got anxious his father would find the porn and he would get in trouble, so in a command line for DOS, he typed:
Which the computer read as
del *.dl*
which meant within seconds it was deleting every Dynamic Link Library on the PC, and in short order it crashed and then would not boot.So yes, especially in older Windows systems, you could delete all kinds of shit to bork it.
I just tried this in an MS-DOS + Windows 3.1 virtual machine that I have, and no, that doesn't happen.
del *.dl
does exactly what you'd expect.del *.dl
does not delete DLL files. Your friend probably accidentally pressed the L key twice.del *.dl
does not delete anything in any folder other than the current one. Your friend probably stored his porn in theC:\WINDOWS\SYSTEM
folder or something.del
), or you can delete a folder and all of its contents (deltree
), but neither of those does what you're talking about.You're right that it doesn't stop you from deleting system files, though, which is kind of odd as MS-DOS does have a mechanism for stopping you from doing that: the “system” attribute. This is used to protect the MS-DOS kernel files,
IO.SYS
andMSDOS.SYS
. For whatever reason, though, the Windows installer doesn't give the Windows system files this attribute, so you can still see them and delete them at will.That's probably what he did and I don't know why he would store his porn in the system folder, but it did genuinely bork the computer and his dad was pretty pissed, because his dad was a banker and all his work was on it.
I never tested it myself partially because I didn't want to kill my system and well, my parents had a Mac.
Well, that's the nice thing about virtual machines! 😁 You can copy them and bork them freely.
In case you feel like experimenting, WinWorld has installation disk images for most of Apple's and Microsoft's vintage operating systems.
Task failed successfully