Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×
Microsoft Windows

After 28 Years, Microsoft Announces it Will Remove WordPad From Windows (thurrott.com) 120

"Microsoft has quietly revealed that WordPad, the basic word processor that's been included with Windows since 1995, is being retired," reports Windows blog Paul Thurrott: "WordPad is no longer being updated and will be removed in a future release of Windows," the Deprecated features for Windows client page on Microsoft Learn notes in a September 1, 2023 addition. "We recommend Microsoft Word for rich text documents like .doc and .rtf and Windows Notepad for plain text documents like .txt...."

[W]hile Microsoft's advice to use Microsoft Word instead seems a bit off-base, given that Word is a paid product, RTF is rarely used these days, and anyone can access the web versions of Word for free if needed.

The actual date of removal is unclear. But Neowin isn't the only thing Microsoft is removing from Windows: The company recently turned off Cortana, its neglected voice assistant, and announced the end of Microsoft Support Diagnostic Tool (MSDT). Also, Microsoft will soon disable old Transport Layer Security protocols to make Windows 11 more secure.
This discussion has been archived. No new comments can be posted.

After 28 Years, Microsoft Announces it Will Remove WordPad From Windows

Comments Filter:
  • by pezpunk ( 205653 ) on Sunday September 03, 2023 @11:44AM (#63819472) Homepage

    i remember when MicroSoft was threeatening to remove MS Paint and people cried out. And I get it -- at least people use that for the memes, and i guess maybe for some people it's the quickest possible method of putting an arrow or circle on a screenshot?

    And I can certainly see Notepad's usefulness, a momentary stash for some plain text. I also use it to remove the formatting from text that i'm copy-pasting (ctrl-shift-v often doesn't work!)

    But I don't see what niche Wordpad fills. I know yall are out there. speak up.

    • Last time I checked, Wordpad would correctly autodetect and display text files with Unix line breaks on Windows, and Notepad wouldn't. If they have fixed that then I won't miss Wordpad. Sometimes I need to view such a file on a system where I'm not allowed to install additional software. Those systems usually have Office, and Word will display such a file correctly, so it's not a dealbreaker — but I do hate to load big fat Word just to display a text file.

      • Those systems usually have Office, and Word will display such a file correctly, so it's not a dealbreaker — but I do hate to load big fat Word just to display a text file.

        Many average home users do not install Office. Many business install Office. Some people will miss it.

        • They can get a full blown word processor for free if they download LibreOffice. Not only that, it will load all their RTF files.

        • by vbdasc ( 146051 )

          Many average home users do not install Office. Many business install Office. Some people will miss it.

          Microsoft once offered a cheap and light-weight alternative to Office called MS Works that many non-business users installed on their systems. Sadly, not anymore, AFAIK. And other companies offered similar products for Windows users too, for example Claris/Apple Works.

      • Last time I checked, Wordpad would correctly autodetect and display text files with Unix line breaks on Windows, and Notepad wouldn't.

        That's the only reason I ever used Wordpad.

        • by ElizabethGreene ( 1185405 ) on Sunday September 03, 2023 @03:01PM (#63820010)

          The updated Notepad handles Windows, Unix, and Ancient Mac line endings correctly. Also, unlike Slashdot, it also supports Unicode.

        • by rossz ( 67331 ) <ogre@noSpAM.geekbiker.net> on Sunday September 03, 2023 @03:37PM (#63820082) Journal

          I highly recommend Notepad++. It's an opensource editor with lots of bells and whistles to handle both your light text requirements and your coding needs. I especially like the plugin that allows me to access remote files via ssh. It automatically detects the type of line break used when you open a file and will continue to use that style as you make changes.

          • by Luckyo ( 1726890 )

            It's great for coding. It's not so great for writing.

            • by rossz ( 67331 )

              Which is why I specifically said "light text requirements". I use it for taking on the fly notes all the time. I would never use it for writing extensive documents.

          • I use notepad++ constantly. Thanks for the tip though. :)

          • I highly recommend Notepad++. It's an opensource editor with lots of bells and whistles to handle both your light text requirements and your coding needs. I especially like the plugin that allows me to access remote files via ssh. It automatically detects the type of line break used when you open a file and will continue to use that style as you make changes.

            I love Notepad++ for code editing and text editing.

            Wish there was a decent macOS equivalent.

            • You might want to check out jEdit [jedit.org]. It's open source, platform independent, and has a large number of useful plugins.
              • You might want to check out jEdit [jedit.org]. It's open source, platform independent, and has a large number of useful plugins.

                Thanks!

                Interesting that jedit doesn't appear on any of the "best" N++ Replacements lists I saw; but. . . ?

                I'll give it a spin.

              • ONLY if you know how to use OpenJDK.

                NEVER, EVER, EVER use Oracle's version of Java, because if you do, and your company does not already have a sitewide, seat-based license to use it - with "seat" defined as any employee, contractor, contractor's employee, cook, janitor, or window washer employed directly or indirectly by your company - it does now, and it may cost an almost unlimited amount of money.

                And even the allegedly open-source forks of Java, MariaDB, VMWare, etc. are not entirely safe. Remember

      • I worked tech support from 91 to 04 for hundreds of users. With Windows 95 I moved from Notepad to Wordpad for quickly printing small jobs, and discovered random format type corruptions. This was an eye opener to just how bad MS software was, I advised others that they weren't crazy when they saw these errors.

        Years later my daughter tried to cut text from Internet Exploder to Word, and Word crashed hard. I told her use Chrome and the problem was solved.

        Seriously shitty software from MS made me switch to

        • Because they are the tools available to me, I use Word and Edge all day. I can also use Chrome if I want to, but that's not much of a choice and I'm on Windows and don't want to be hassled so I might as well use Edge. I find that for what I'm doing with them at least they work about as well as Firefox and LibreOffice Writer on my Linux system at home. So while Microsoft is basically only accomplishing it by ripping off Chrome, at least they finally have a working browser.

      • BINGO. This is the only reason I ever opened WordPad.

        To avoid this, here's a pipeline script that will convert a Unix text file to Windows (MS-DOS) format:

        #!/usr/bin/perl
        while () {
        chomp;
        print "$_\r\n";
        }

        And to go the other way...

        #!/usr/bin/perl
        $/="^M";
        while () {
        chomp;
        print;
        }

      • by Z00L00K ( 682162 )

        I actually see Wordpad as a lightweight word processor that's sufficient for simple things that Notepad can't do - like images.

        This can be very useful when doing some boilerplate documentation on a system with no extras - something you need to do now and then for custom systems.

      • by MrL0G1C ( 867445 )

        And Notepad likes to do the opposite, it puts line breaks where there are none, completely ruining any paragraphs that you copy from notepad if word-wrap is on. Broken for decades but never fixed, why?

        • Broken for decades but never fixed, why?

          Citation required. Notepad has gone through an extensive rewrite in the past few years, it even supports unix line endings now. I call bullshit on your random insertion of line endings.

      • > Last time I checked, Wordpad would correctly autodetect and display text files with Unix line breaks on Windows, and Notepad wouldn't.

        Perhaps you should check more often than once every five years.

        https://arstechnica.com/gadget... [arstechnica.com]

      • That was fixed a couple of years ago. Notepad in newer versions of Windows 10 and 11 properly detect and handle Unix linebreaks.

      • Last time I checked, Wordpad would correctly autodetect and display text files with Unix line breaks on Windows, and Notepad wouldn't.

        I wish people who don't use Windows 11 will stop commenting about Windows. You have not checked recently. Notepad introduced the detection, support and switching of Unix line endings last year. Effectively Wordpad was rendered obsolete back then.

      • On Windows, Notepad++ should do that as well, and I think there is a portable version that will run from a thumb drive if you're on a system you aren't allowed to modify.

        On systems with a real command line you can probably find dos2unix (which works in both directions) and if not then certainly sed.

    • by TWX ( 665546 ) on Sunday September 03, 2023 @12:06PM (#63819522)

      Wordpad allows for nonprofessional home computer users to create documents that are basically as well-formatted as what most nonprofessional home computer users would have been able to do with a supposedly professional wordprocessor like Wordperfect, Office 4.3, Clarisworks, that sort. For a long time it was able to open MS Word documents (*.doc format) and display them well enough to serve as a viewer and method to print in addition to as a light-duty editor.

      The removal of Wordpad serves to try to drive any remaining school districts into Microsoft's licensing agreements, because it will force them to find some solution for students to use to type basic term papers. This will probably be an online productivity suite because it would allow the student to use the software from anywhere (ie at-school computer, 1:1 issued laptop, home computer), because a school district wouldn't want to leave students behind whose parents can't afford to buy something.

      This is of course discounting the possibility that school districts choose something other than Microsoft's offerings. Since MS Office tends to be the standard among the administrative staff of the district, and may be necessary for teachers as well due to this, they may be gambling that these districts, out of convenience, will just license MS Office for the students too. This would simplify for teachers since they wouldn't need to maintain dual suites (if say, Google's suite was chosen) but it may well just boil down to cost.

      As much as I like and personally use software like LibreOffice, it's going to be difficult to get a large organization onboard with an opensource solution if it lacks cloud connectivity. This is also a problem that users of Wordpad now have. When it came out for Microsoft Windows 95 it was incredibly useful in an area when sneakernet was how we transported data. It's less useful now that it requires the average user to perform more steps in order to transport data from place to place, even if it can still be used to create documents with acceptable formatting.

      • As much as I like and personally use software like LibreOffice, it's going to be difficult to get a large organization onboard with an opensource solution if it lacks cloud connectivity.

        That's what Collabora is for: https://www.collaboraoffice.co... [collaboraoffice.com] Google Docs also supports ODF format.

      • by Luckyo ( 1726890 )

        You can plug libre office files into google office suite directly. It has full support.

    • But I don't see what niche Wordpad fills. I know yall are out there. speak up.

      Wordpad is a better version of Notepad specifically because it handles text files from Unix (and now MacOS). Windows uses carriage return (CR) and line feed (LF) but the Unix standard is LF. In terms of features, it is in between Word and Notepad in that has more features like Word Wrap than Notepad but fewer features than Word. I think of it as Word Lite or Notepad XTreme (j/k). For home users, it will be a loss.

      • Notepad has word wrap, too.

        The thing Wordpad consistently had (through its various versions) that Notepad doesn't is rich text. You could use it as a reasonably credible word processor. This was always a nice feature to have bundled with an operating system. If you just needed to dash off a letter or memo, or even a for sale or yard sale sign, it was perfectly adequate. Microsoft is probably eliminating it in order to a) be able to kill off the team and save money and b) give some infinitesimal boost to Off

    • I only use it to look at Unicode files but if notepad does it now I won't miss it. I think I use it like less than a few times a year.

      The thing that peeved me most was the removal of show hidden files and folders.

    • by erh ( 62820 )
      The niche it fills is that it is a *lightweight* editor which works for rtf files and LF-only text files, which is available without installing anything extra. Starting up MS Word or LibreOffice Writer takes several times longer than firing up Wordpad, which makes the latter far more usable, especially for taking some quick notes or cutting and pasting some snippets.
    • by e3m4n ( 947977 )
      Paint is also a quick and dirty, lightweight, tool to convert formats or crop an image. WordPad, unlike notepad, observed just LF instead of CR+LF for newlines. It was a quick file viewer. IIR wordpad also kept a temp save should you be jotting down notes, go to bed, and find WinDoze fucking rebooted without asking again for the 4th time that month. EditPad is a good alternative that checks some of those boxes.
    • by Calydor ( 739835 )

      It fills the niche of basic formatting, essentially. You may not often need to put something in bold or italic, but occassionally you do have to, and WordPad will do that at a click of a button. Notepad can't; it's not what it's there for. It's for absolutely raw text.

    • by Torodung ( 31985 )

      Best way to quickly read RTF files without loading up something overwrought for such a tiny task. I have it on my "Send To" menu for just such a happenstance.

      The question I have is why remove it? Is it a security problem? If it doesn't need to be maintained, why remove it?

      The only maintenance issue I can imagine is both Notepad and Paint got modern Windows app remakes. They're in the Windows Store now. The Windows app system is by its nature more secure and highly protected. So perhaps they just didn't want

    • Let me see, pay Microsoft to rent service giving access to thousands of features you will never need, just so you can read their proprietary format .doc's, that sounds like good value.

      Wordpad does 90% of what I need a word processor to do, it's fast, uses no appreciable resources, is elegant in that it only does what you need it to do, and is free - though I'd be happy to pay a modest price for it.

      threeatening [sic] to remove MS Paint ... people cried out... at least people use that for the memes, and... maybe for some people it's the quickest possible method of putting an arrow or circle on a screenshot

      If you have the skill to use it, it's capable of much more. Here's a tutorial from a well known artist on how

    • I only get office in a webbrowser at work and am not allowed to install any free wordprocessors. I had wordpad as the default application for word files, because, obviously, double--clicking a word file won't open office in the webbrowser. So now I either click through browser tabs in three different, but similar looking browser windows (office is not the only website I have to use), upload every goddamn word-file even if I only need it for 5 minutes and get eye-cancer from that horrible UI. And I probably
    • by Luckyo ( 1726890 )

      I suspect it's superior at doing quick and dirty edits of things without stripping formatting. Notepad struggles with that. And MS Word/Libre Office Writer are bloated to all hell with feature you don't need for quick edits.

    • WordPad was amazing compared to NotePad. This is primarily why Microsof keeps the inferior NotePad and ditches the superior WordPad - they'd lose their hard earned reputation for being mediocre slobs if they did something smart.

    • ... niche Wordpad fills.

      Macro-free and virus-free data. PDF was read-only and ODF had no support. The way to collaborate without sharing viruses and macros was RTF. RTF was also unfriendly to (bitmap) images, so it pushed people to clip-art. Once Paint-style software became more popular, images became the norm and clip-art died. Then SVG became the new standard for clip-art and vector-based drawing.

    • I have used Wordpad a few times this year. I had to create some quick user training/reference materials, where text formatting is critical to readability. On my personal laptop I could have used Open Office, but it was easier to use the computer already there on-site and configured for the printer.

      Considering how many gigs of useless junk are shoved into Windows, there is no excuse for this kind of feature regression and loss of basic functionality.

    • by mad7777 ( 946676 )

      I use it all the time. It boots far faster than OpenOffice Writer, and it allows basic formatting, unlike Notepad.
      Why MS would choose to break something so useful, I have no idea.

  • by kackle ( 910159 ) on Sunday September 03, 2023 @11:49AM (#63819486)
    WTF?! I mean, RTF? I use .RTF frequently for writing internal work documents because I don't know what conversion games are going to occur when writing a .DOC(X), hoping the eventual reader will have some compatible Word version installed. ASCII is the simplistic king, but sometimes I need font features and outlining.

    I guess there's HTML...
    • Markdown is a good choice.
    • Or PDF...

    • by e3m4n ( 947977 )
      Not sure which came first but looking at RTF code, there are a lot of similarities in its markup/tagging.
    • by PPH ( 736903 )

      LaTeX

      [Ducking and running]

      • by bn-7bc ( 909819 )
        If LaTeX had an easy to install and use GUI that allowed WYSIWYG editing I would agree with you, byt expecting people to learn LaTeX, for non academic work, is in the best case optenistic, in the worst case borderline delusional. Give a non tech (or even som techs) a tex file and the would probably say something like "I wanted document x in an editable format and you gave me this code s**t WTF?" ,ofc in a somewhat more professional manner. But the problem of tex nor being installed bt default is not solved
    • There's also LibreOffice.

    • by kackle ( 910159 )
      Yeah *I* can use whatever, but I can no longer "guarantee" that the end user will be able to open it if WordPad disappears. (There are only Windows machines in the company.)
    • Never met an office suite which doesn't support RTF.
      Never met a person in need of something showing a font who doesn't have an office suite installed.

    • by AmiMoJo ( 196126 )

      ODF. You can use the flat XML version of it for version control systems too. LibreOffice supports it.

      It's a shame there is nothing equivalent for spreadsheets with macros.

      • by kackle ( 910159 )
        It's not a big deal, but my targets are non-computer field-service technicians. It would be nice if they could just continue to double-click an attachment and move on, versus first installing a multi-gigabyte office suite from a safe site, and making sure they properly associate .RTF files to it. Not to mention that WordPad loads within the blink of an eye, and uses less power to do so.
  • just use notepad++ (Score:2, Informative)

    by Joe_Dragon ( 2206452 )

    just use notepad++

    • Exactly. I use Windows less and less as time goes on, but when I'm forced to it's notepad++ for me.
    • by colfer ( 619105 )

      Yes for Notepad++, it's solid.

      And I guess the Microsoft Foundation Class that was basically Wordpad will keep working. Does MFC still exist? I wrote a customized wordpad-like app about 25 years ago, using Borland Delphi (Pascal) and its wrap of MFC. The exe still runs fine in fully updated Windows 11.

      • by colfer ( 619105 )

        One glitch, shutting down Windows with my old as mud MFC-based app still running causes a dismissable error.

    • There [softonic.com] are [libreoffice.org] many [openoffice.org] alternatives [quilljs.com].

  • by quonset ( 4839537 ) on Sunday September 03, 2023 @12:18PM (#63819550)

    There is no legitimate reason to remove WordPad other than Microsoft forcig people to buy Office. They could leave it in and let things as they are. But nope. Even though you paid for the product it's not yours and a company will once again reach into your system and take something away, similar to how Amazon removed books from people's Kindle [npr.org] and then Android-based machines [pcmag.com].

    Welcome to the digital world where purchasing something doesn't mean you own it. This is why physical books, CDs, and DVDs are still superior. Once you own them, no company can take them away.

    • by dskoll ( 99328 ) on Sunday September 03, 2023 @12:26PM (#63819564) Homepage

      Libreoffice is overkill, but it can certainly replace Wordpad.

      • Libreoffice is overkill, but it can certainly replace Wordpad.

        The true cost of reaching to another vendor to act as a replacement for native service, includes the additional risk of the user installing it correctly (to include sourcing an uninfected installer), as well as relying on the end user to maintain it properly.

        What may end up being overkill, is the actual cost in the end of managing yet another vendor. Particularly with a service that is commonly targeted for exploitation due to popularity.

      • by jd ( 1658 )

        It's a very heavy package for replacing a scribble pad.

      • I would recommend Notepad++ instead. Yes, LibreOffice could certainly do the job.
    • > There is no legitimate reason to remove WordPad

      There is. They don't want to maintain it. As much as I hate Microsoft (https://youtu.be/bsFzc0wAtFs?t=255), not maintaining a program that is used even less than Paint, saves money.

      • by hey! ( 33014 )

        Plus it doesn't really render Word documents all that accurately. Granted, you shouldn't be doing elaborate formatting in a word processor, but still, the whole *point* of the app is being able look at end edit word files, and it doesn't do that well. Also it appears to have problems with Unicode, which these days is a show stopper.

        If you're going to have a feature, the feature has to work well enough to be useful. Wordpad barely works at all. With so many free-to-use and open source solutions out there t

    • There is no legitimate reason to remove WordPad o.

      Other then the fact that probably like 99.9% of users do not actually use it in any way?

    • There is no legitimate reason to remove WordPad other than Microsoft forcig people to buy Office.

      More likely Microsoft saw that no one uses WordPad since Notepad supported unix line endings and are just removing something well and truly depreciated. Wordpad is not Office. And there's countless ways to author office documents that don't involve buying office.

      There's good reason to remove depreciated unused code, if for no other reason than to reduce security risks. Sure it's been a while but Wordpad has been exposed to some significant security issues in the past.

  • AbiWord supports RTF (Score:5, Informative)

    by Stomper_Stoddard ( 930896 ) on Sunday September 03, 2023 @12:27PM (#63819570) Journal
    If you really need a replacement for Wordpad to edit RTF files, AbiWord works well enough. It is free, opensource and there is even a portable version of it that does not require running an installer.
  • by RitchCraft ( 6454710 ) on Sunday September 03, 2023 @12:51PM (#63819652)

    It's fine and dandy that M$ wants to remove tools from Windows but how about open sourcing the code to those tools for others to learn and build from. Removing Wordpad is an obvious step toward getting more people to use a paid subscription to something else. Wordpad is still useful for viewing the occasional *Nix text file formatted with line feeds only or creating quick nicely formatted documents to print out, as no one (I know at least) shares .RTF formatted files.

  • by backslashdot ( 95548 ) on Sunday September 03, 2023 @12:54PM (#63819658)

    Just upgrade to Ubuntu Whacky Weiner or whatever the latest version is.

  • Well, if you want a really good office suite, you can use LibreOffice. It has some nice advantages over MS Office, e.g. ODT format supports SVG so vector graphics aren't rasterised & so scale without going pixelated when you print to PDF or export to other formats.
  • Microsoft could have just moved access to it to the ribbon. No one would ever have found it after that.

  • Unsurprisingly, it's also been 28 years since I last used WordPad.
    • by vbdasc ( 146051 )

      Not only you. When one day, 28 years ago, Windows 95 came out without MS Write, but with Wordpad instead, many heavy Write users were dismayed to find that Wordpad was clearly inferior to Write in many aspects. Now it's time of revenge, I guess.

      Paintbrush vs Paint is another story.

  • by GotNoRice ( 7207988 ) on Sunday September 03, 2023 @03:06PM (#63820016)
    For whatever reason, text files larger than a certain size will simply cause Notepad to freeze. This can happen in many cases with things such as data logs or other automated reports that take the form of text files and can become very large in size. The solution in those cases has been to simply open them with Wordpad instead, because for whatever reason, Wordpad has a much higher tolerance for opening those large text files. This has been the case for a long long time (decades) and is still the case even on Windows 11. While there are other options for opening large text files, it will be frustrating to have Wordpad removed and no longer have that option universally available on every computer.
  • by aglider ( 2435074 ) on Sunday September 03, 2023 @03:55PM (#63820154) Homepage

    Keep WordPad and ditch Windows.

  • Lots of people especially students canâ(TM)t afford to buy Microsoft offices suite of crap that everyone demands you use because of monopoly
  • It is a pity that they are doing this but why? It certainly isn't because Microsoft is trying to slim down the side of a basic Windows install. If they were truly interested in doing that they'd get rid of all that additional crapware very few want that is automatically installed. Hah! They could make it easy for users to get rid of Edge and all those pesky programs that continually remind you of its existence and repeatedly encourage you to use it instead of Chrome, so that Microsoft can spy on your br

  • Maybe I've got this wrong (it's been quite a while since I did any Windows development), but isn't WordPad basically just a shell around the rich text control (which ultimately resides in some shared library with whatever fancy extension was the last flavor of the month). If so, I doubt they would remove the control as well, as that would presumably break quite a few things. Or was the control a redistributable? Can't quite remember. In any event, the core functionality should still be there.
  • anyone can access the web versions of Word for free if needed

    I'm going to say it: "Sign up for free" is not to be compared to downloading some freeware program (like Abiword, Notepad++ etc.) without questions asked and your online movements being tracked ad infinitum. That is not "free" (as in freedom).

    I used to use the default installed 365 on my new mobile (I have spreadsheets to record business trips and do a souped-up shopping lists, go figure). Then the "register to continue to use" notifications popp

Good day to avoid cops. Crawl to work.

Working...