Deleting files in word

This wikiHow teaches you how to remove a Word document from the list of your recent documents, using a Windows PC or Mac.

  1. Image titled Delete a Document in Word Step 1

    1

    Open any Word document on your Mac. You can find and double-click on any document, and open it in Microsoft Word.

  2. Image titled Delete a Document in Word Step 2

    2

    Click the File menu on your menu bar. It’s located next to Edit near the top-left corner of your screen. It will open a drop-down menu.

  3. Image titled Delete a Document in Word Step 3

    3

    Hover over Open Recent on the File menu. Your recent documents will pop up on another menu.

  4. Image titled Delete a Document in Word Step 4

    4

    Click More at the bottom. You can find this option at the bottom of the Open Recent menu. It will open an expanded list of all your recent documents in a new window.

  5. Image titled Delete a Document in Word Step 5

    5

    Right-click the document you want to delete. Your right-click menu will pop up.

  6. Image titled Delete a Document in Word Step 6

    6

    Select Show in Finder on the right-click menu. If you want to delete the file from your computer, select this option on the menu. It will open your document in a new Finder window.

  7. Image titled Delete a Document in Word Step 7

    7

    Right-click the document on the Recent list again. Your right-click menu will pop up.

  8. Image titled Delete a Document in Word Step 8

    8

    Select Remove from Recent on the right-click menu. This will instantly remove the selected document from your recent documents list.

    • This will not delete the document from your computer.
  9. Image titled Delete a Document in Word Step 9

    9

    Right-click on the document in the Finder window. This will open your file options on the right-click menu.

  10. Image titled Delete a Document in Word Step 10

    10

    Select Move to Trash on the menu. This will remove the selected file from its current folder, and move it to your Trash bin.

    • The file will be permanently deleted from your computer when you empty your Trash.
  1. Image titled Delete a Document in Word Step 11

    1

    Open any Word document on your Mac. You can find and double-click on any document, and open it in Microsoft Word.

  2. Image titled Delete a Document in Word Step 12

    2

    Click the FILE tab on the tab bar. This button is located next to HOME near the top-left corner of Word. It will open a new page.

  3. Image titled Delete a Document in Word Step 13

    3

    Click Open on the left menu. This option is located between New and Save on a blue navigation menu on the left-hand side.

    • The Open page will open up to your «Recent Documents» list.
  4. Image titled Delete a Document in Word Step 14

    4

    Right-click the document you want to delete. Your right-click options will pop up.

  5. Image titled Delete a Document in Word Step 15

    5

    Select Remove from list on the right-click menu. This will instantly remove the selected document from the list of your recent documents.

Ask a Question

200 characters left

Include your email address to get a message when this question is answered.

Submit

About this article

Thanks to all authors for creating a page that has been read 859 times.

Is this article up to date?

The documents that you create in Microsoft Word can be opened and read from within Microsoft Word at any time. This is possible through the file navigation feature that is available on the Open window of the File menu.

You can, however, also use this navigation feature to find and delete documents while you are browsing through Microsoft Word. Our guide below will show you how to complete this task and remove a Microsoft Word document file from your computer.

Want to delete or change all of the text in a document? Our select all in Word article can show you how to do that.

Best Value

Echo Buds (2nd Gen) | True wireless earbuds with active noise cancellation and Alexa | Black

Most Popular

Apple AirPods (2nd Generation) Wireless Earbuds with Lightning Charging Case Included. Over 24 Hours of Battery Life, Effortless Setup. Bluetooth Headphones for iPhone

Google Brand

Google Pixel Buds A-Series - Wireless Earbuds - Headphones with Bluetooth - Charcoal

Last update on 2023-04-13 / Affiliate links / Images from Amazon Product Advertising API
| As an Amazon Associate, I earn from qualifying purchases.

The steps in this article were performed in Microsoft Word 2013, on a computer using the Windows 7 operating system. However, these steps will also work for most other versions of Microsoft Word.

Step 1: Open Microsoft Word.

Step 2: Select the File tab at the top-left of the window.

open the file menu

Step 3: Choose the Open tab at the left side of the window.

click the open tab

Step 4: Browse to the location of the file that you want to delete.

locate the file you wish to delete

Step 5: Right-click the desired file, then choose the Delete option. Note that if there are multiple Word documents in this folder that you would like to delete, then you can select multiple files by holding down the Ctrl key on your keyboard as you click each file.

how to delete documents in word

Step 6: Click the Yes button to confirm that you wish to move this file to the Recycle Bin.

If you wish to permanently delete these files, you can do so by navigating to your desktop, then right-clicking on the Recycle Bin and choosing the Empty Recycle Bin option and confirming that you want to permanently delete all of the files in the Recycle Bin.

how to delete microsoft word document

Do you need to print a lot of Word documents, but are looking for a simple way? Find out how to print multiple Word documents at once so that you don’t need to open and print each document individually.

Matthew Burleigh has been writing tech tutorials since 2008. His writing has appeared on dozens of different websites and been read over 50 million times.

After receiving his Bachelor’s and Master’s degrees in Computer Science he spent several years working in IT management for small businesses. However, he now works full time writing content online and creating websites.

His main writing topics include iPhones, Microsoft Office, Google Apps, Android, and Photoshop, but he has also written about many other tech topics as well.

Read his full bio here.

In this article, we plan to show you 3 quick methods to delete a document or its contents in Word as required.

It’s a good habit to clean up your computer by removing useless documents. While deleting files, here are 2 situations you will meet:

  1. Sometimes, we can easily determine whether a document is unneeded with a glance at its name.
  2. Other times, we have no choice but open document and check its contents before finally discard it.

The following 3 methods shall list solutions to the foresaid situations into which you would possible run.

Method 1: Delete a Closed Document

  1. To start with, click “File” tab.
  2. Next click “Open” to trigger the same name window.Click "File"->Click "Open"
  3. Then go to the target folder and select a useless document.
  4. Right click on the document and choose “Delete”.
  5. Click “Yes” in confirmation box.Go to folder->Right Click ->Choose "Delete"

Method 2: Delete an Open Document

Normally, we can’t delete an open document. Yet, we find it’s too annoying that each time a document has to be closed before deletion. To address this issue, we suggest you take the macro way.

  1. First and foremost, you click “Developer” tab.
  2. Click “Visual Basic” next to open invoke VBA editor. Or just press “Alt+ F11” to do so.Click "Developer"->Click "Visual Basic"
  3. Next click “Insert” and then choose “Module” to insert a new one under “Normal” project.Click "Normal"->Click "Insert"->Click "Module"
  4. Then double click the module to open editing space on the right side.
  5. Paste the following macro:
Sub DeleteOpenDoc()
  Dim objDoc As Document
  Dim strDocName As String
  Dim strButtonValue As String
 
  '  Initialization
  Set objDoc = ActiveDocument
  strDocName = ActiveDocument.FullName
 
  '  Check if the doc has beed saved.
  If objDoc.Path = "" Then
    MsgBox ("This document hasn't been saved.")
    Exit Sub
  End If
 
  '  Deletion confirmation
  strButtonValue = MsgBox("Are you sure to delete " & strDocName & "?", vbYesNo)
  If strButtonValue = vbYes Then
    objDoc.Close SaveChanges:=wdDoNotSaveChanges
    KillFile = strDocName
    Kill KillFile
  End If
End Sub
  1. Click “Run”.Paste macro->Click "Run"
  2. Now there will be a confirmation message on a popping up box. Click “Yes”.Click "Yes"

Method 3: Delete Document Contents

There are also times you have saved a document with a name but want to discard all contents. Then the following macro is what you need:

Sub DeleteContents()
  Dim objDoc As Document
 
  Set objDoc = ActiveDocument
  objDoc.Content.Delete
End Sub

Just follow the same steps in method 2 to install and run the macro.

What to do when Word goes wrong

When Word collapses, don’t freak out. Check your important file first and see if there is any corruption. If any, you can try the built-in tool first to recover data from damaged docx. The result, however, is not optimistic in most cases. Therefore, you probably will need a more sophisticated one.

Author Introduction:

Vera Chen is a data recovery expert in DataNumen, Inc., which is the world leader in data recovery technologies, including xls recovery and pdf repair software products. For more information visit www.datanumen.com

If you’re not a tech-savvy person, sometimes very small things in computers seem like a big headache. But never mind! You’re not alone. Hundreds of thousands of people out there face the problem of how to delete a document. A TechWelkin reader sent me an email yesterday and asked about a Microsoft Word tip on how she could delete a document!

If you’re looking for a delete button within MS Word window —then stop! There is no such button. You can not delete a document from inside the Word window. So, how do you go about it?

1. Close the document: An opened document can not be deleted. So, first of all, if you have it opened, close the document that you want to delete

2. Locate the document in computer: Open Windows Explorer. Select “Computer” or “My Computer” from the left side pane. Type your document’s name in search box and hit enter. System will find and show the document.

Delete a document from your computer.

3. Now delete it: Take right click on the document you want to delete and select Delete from the pop-up menu. You computer may ask for confirmation. Confirm and the document will be shifted to Recycle Bin (that means it is deleted)

4. Permanent deletion: You’ve deleted the file. However, a document can be easily retrieved from Recycle Bin. If you want to permanently delete it, select Recycle Bin from left pane of the Windows Explorer. Computer will show content of Recycle Bin in right pane. Select the document you want to permanently delete, take right click on it and select delete from the menu. Now the document is permanently gone!

Delete a Document from Mac

  1. Close the document (in case you have opened it)
  2. Type document’s name in Finder and search it.
  3. Press Command key and click on the document and select Move to Trash. Or just drag the document’s icon onto the Trash icon. Or press Command key and then press Delete key

This is it! Now you know how to delete a Word document from your computer. By the way, we have published an article on how to automatically find and delete duplicate files from your compute. You might be interested in it because deleting duplicate files saves you storage space in computer.

Should you have any question on this topic, please feel free to ask in the comments section. We, at TechWelkin and our reader community will try to assist you. Thank you for using TechWelkin!

Windows 10: delete/remove files in windows word

Discus and support delete/remove files in windows word in Windows 10 Network and Sharing to solve the problem; Am unable to delete old files listed in windows word. Why are file explorer files placed there in the first place? I only want the word file list to…
Discussion in ‘Windows 10 Network and Sharing’ started by klaro 1590, Sep 28, 2020.

  1. delete/remove files in windows word

    Am unable to delete old files listed in windows word. Why are file explorer files placed there in the first place? I only want the word file list to contain what I have selected to save in windows word word.

    :)

  2. Removing a word from dictionary

    I believe that you are talking about the «suggested words list». It is stored in a file called DYNCOMPDICT.DAT in the Windows folder.

    You can use a note editor to edit it in order to remove the offending word…

    I hope this helps!

  3. Remove account

    I suggest you backup your personalized files first before removing the account.
    To delete an account, follow these steps:

    1. Press WIN + X keys and click Command Prompt (Admin) from the menu.
    2. Type the following command and press Enter. Replace test with the name of your sister’s account. Code:
  4. delete/remove files in windows word

    C windows installer folder — Delete?

    He can do symbolic link redirection and move the files in it to a different location. *Wink delete/remove files in windows word ;)
    Better try it out in a virtual of first. Just a suggestion.

    Like:
    First move everything in c:windowsinstaller to d:installercache
    Then delete c:windowsinstaller folder
    Then type this in command mode as admin
    mklink /d c:windowsinstaller d:installercache

    Removing those installer files is a bad idea. it might prevent you from updating or uninstalling apps.

Thema:

delete/remove files in windows word

  1. delete/remove files in windows word — Similar Threads — delete remove files

  2. Deletion of files, words, shortcuts, or browser items

    in Windows 10 Network and Sharing

    Deletion of files, words, shortcuts, or browser items: Good day!My laptop is currently on Windows 10. Everything the mouse clicks or the cursor is placed is deleted and spams deletion confirmation pops up. It is up to date terms of Windows updates and so far any app crashes every now and then and requires multiple restarts before…
  3. Deletion of files, words, shortcuts, or browser items

    in Windows 10 Gaming

    Deletion of files, words, shortcuts, or browser items: Good day!My laptop is currently on Windows 10. Everything the mouse clicks or the cursor is placed is deleted and spams deletion confirmation pops up. It is up to date terms of Windows updates and so far any app crashes every now and then and requires multiple restarts before…
  4. Deletion of files, words, shortcuts, or browser items

    in Windows 10 Software and Apps

    Deletion of files, words, shortcuts, or browser items: Good day!My laptop is currently on Windows 10. Everything the mouse clicks or the cursor is placed is deleted and spams deletion confirmation pops up. It is up to date terms of Windows updates and so far any app crashes every now and then and requires multiple restarts before…
  5. Deleted Files removed automatically

    in Windows 10 Network and Sharing

    Deleted Files removed automatically: I’m playing fallout 4 on pc, and a recent problem has arisen. I can’t save without a pop up showing up. I’ve tried everything I can think of, from messing with the onedrive settings, to unlinking it to my pc, which just caused more problems that I had to fix. I have a lot of…
  6. Deleted files are removed everywhere

    in Windows 10 Network and Sharing

    Deleted files are removed everywhere: I keep getting a notification from one drive saying Deleted files are removed everywhere this usually happens when I play a game on my pc. I was not getting this before. Is OneNote deleting important files??…
  7. deleted word

    in Windows 10 Customization

    deleted word: How do I please find word again. I think I have deleted microsoft along with word as I cannot find excel, photoshop, word etc.

    Can you please help me. I cannot find it in my programmes either. I am pretty much a rookie when it comes to this so the easier the better….

  8. pass word removal

    in AntiVirus, Firewalls and System Security

    pass word removal: remove a password easily

    https://answers.microsoft.com/en-us/windows/forum/all/pass-word-removal/1ea6b81b-04f8-4fe0-9761-c29a05afde60

  9. Recover A Deleted Word File

    in Windows 10 Network and Sharing

    Recover A Deleted Word File: I deleted a Word file by mistake and want to recover it.

    Thank you,

    Gary

    Mobile: 414.243.3885

    https://answers.microsoft.com/en-us/windows/forum/all/recover-a-deleted-word-file/bff38da3-0d08-4cc3-adfd-42a7f7075ab7

  10. Recover deleted recovery word file

    in Windows 10 Support

    Recover deleted recovery word file: I accidentally deleted a recovery word file that I should have saved and now I can’t find it anywhere. I am new to windows 10. The word file was created using Office 10. Could someone please help?

    65313


Windows 10 Forums

Please Note:
This article is written for users of the following Microsoft Word versions: 97, 2000, 2002, and 2003. If you are using a later version (Word 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Word, click here: Deleting the Open Document File.

Written by Allen Wyatt (last updated November 16, 2021)
This tip applies to Word 97, 2000, 2002, and 2003


Periodically, I go through the files in my Word directories to determine if any of the old documents can be safely deleted. Many times, I need to open the file to examine it before I can make a determination as to whether it should be deleted.

Of course, Word will let you delete a file listed in the Open or Save dialog boxes, but it will not delete the active document—the one that is open at the current time. Rather than close the active document and then delete it by opening the Open or Save dialog boxes, I use the following macro to delete a file that is open.

Sub DeleteThisFile()
    Dim MyFile As String

    MyFile = ActiveDocument.Path & "" & ActiveDocument.Name
    If MsgBox(MyFile & " will be deleted permanently", _
      vbYesNo, "Delete this File?") = vbYes Then
        ActiveDocument.Close (wdDoNotSaveChanges)
        Kill MyFile
    End If
End Sub

The macro prompts you to make sure that you want to delete the file, and (if you do) it closes the document without saving and then deletes it. You should note that the file does not go to the Recycle Bin, but is immediately deleted.

If you would like to know how to use the macros described on this page (or on any other page on the WordTips sites), I’ve prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

WordTips is your source for cost-effective Microsoft Word training.
(Microsoft Word is the most popular word processing software in the world.)
This tip (1346) applies to Microsoft Word 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Word (Word 2007 and later) here: Deleting the Open Document File.

Author Bio

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. Learn more about Allen…

MORE FROM ALLEN

Using MPF Graphic Files

There are all sorts of file formats used to store graphics. You might think that one of those formats is the MPF format, …

Discover More

Limits on Path Length in Word

When you organize your hard drive, it is easy to go hog-wild with folders and subfolders. You need to know that how you …

Discover More

Working in Feet and Inches

Your chosen occupation may require that you work with linear distances in feet and inches. Excel can do this, to a …

Discover More

More WordTips (menu)

Merging to Individual Files

The mail-merge feature in Word is a fast, easy way to create form letters addressed to many different people. Sometimes, …

Discover More

Keeping the Flash Drive Occupied

Working on a document stored on a flash drive can have some unintended consequences. Here’s some help in understanding …

Discover More

Opening a Backup File

If you have Word configured to save backup copies of your document, you may want to actually load one of those copies at …

Discover More

Have you ever wanted to delete the document currently open in Word? I find I often want to do this when I’m trying to clean out a whole bunch of old documents: I open each one, check the contents and, if I no longer need it, delete it on the spot.

Word won’t normally let you do this: you must first close the document, then delete it. That’s a sensible safeguard, but sometimes it gets in the way of what you want to do.

Using a macro, you can get around this restriction and delete the active document. Note that because you cannot undelete any document you eliminate using this macro, it takes some preliminary precautions:

  • First, the macro checks that there is, in fact, an open document to delete.
  • If there is an open document, it checks that you really want to delete it. If not, the macro ends without doing anything else.
  • If you give the go ahead to delete the document, the macro checks to see whether the open document has already been saved. If it has, the document is closed and then deleted. If it has not yet been saved, it is simply closed without saving any changes.

To create the macro:

  1. Press Alt+F8 to open the Macros dialog.
  2. Type DeleteActiveDocument in the Name box and click Create.
  3. Copy and paste the following code between the Sub DeleteActiveDocument() and the End Sub statements (Note: if you want, you can download a full text copy of the code, complete with comments describing what it’s doing at each stage. It’s much easier to read than the listing below.):
Sub DeleteActiveDocument()
Dim strFileToDelete As String
Dim docOpen As Document
Dim  intDocCount As Integer
intDocCount = 0
For Each docOpen In  Documents
intDocCount = intDocCount + 1
Next docOpen
If  intDocCount > 0 Then
If MsgBox(“Are you sure you want to  delete the open document permanently? ” & _
“You won’t be able  to undo this action.”, vbYesNo) = vbYes Then
If  Len(ActiveDocument.Path) <> 0 Then
strFileToDelete  = ActiveDocument.FullName
ActiveDocument.Close  SaveChanges:=False
Kill strFileToDelete
Else
ActiveDocument.Close SaveChanges:=False
End If
End If
Else
MsgBox “There is no open document to  delete.”, vbOKOnly
End If
End Sub
  1. Close the Visual Basic editor.

Add it to Word’s toolbar

To make the macro easily accessible, add it to the Quick Access Toolbar in Word 2007:

  1. Click the arrow at the right end of the Quick Access Toolbar and select More Commands.
  2. In the Choose Commands From box, select Macros from the drop-down list.
  3. Click the newly created macro (it’s full name is Normal.NewMacros.DeleteActiveDocument) and then click the Add button.
  4. Click the Modify button, select an appropriate icon for the macro (there’s a handy one with a cross in a red circle that fits well), type Delete This Doc in the Display Name box and click OK.

To add the macro to a Word 2003 toolbar:

  1. Right-click any toolbar and click Customize.
  2. On the Commands tab in the Categories list click Macros.
  3. Locate Normal.NewMacros.DeleteActiveDocument in the Commands list and click-and-drag it onto a toolbar.
  4. Right-click the new button you’ve created, in the Name box type Del (or something else short and descriptive), then click Text Only. If you’d prefer to use a graphic icon instead of a text-label, although none of the default icons is particularly apt you can create your own by selecting Default (instead of Text Only). Then click Edit Button Image, then Clear and then do a quick paint job (a red X works well).
  5. Click Close in the Customize dialog box.

If you have any problems running the macro, take a look at the code in the Visual Basic editor and make sure you don’t have any broken lines. That’s the usual cause of problems.

WebFeb 8, 2023 Release the Ctrl key when done. Selecting the files that you want to delete. TIP: To select all files in a folder, you can use the Ctrl + A keyboard shortcut. To delete the selected file (s) and …
From digitalcitizen.life
See details »

how-to-clear-recently-opened-file-list-in image

WebJan 12, 2020 Open the MS Word software on your computer. Although the option to clear the entire recent list is built into Word, you’re not going to see it when you right-click on any file on the …
From helpdeskgeek.com
See details »


OFFICE : HOW TO DELETE ALL UNSAVED DOCUMENTS IN MICROSOFT WORD …

WebOn this video you can know How to Delete All Unsaved Documents in Microsoft Word 2016.
From youtube.com
See details »


HOW TO PERMANENTLY DELETE SAVED MICROSOFT WORD FILES : TECH NICHE

WebSep 29, 2013 Subscribe Now:http://www.youtube.com/subscription_center?add_user=ehowtechWatch …
From youtube.com
See details »


HOW TO DELETE DOCUMENTS FROM WORD | TECHWALLA

WebStep 3. Select the document. To delete a series of documents, drag your mouse over the files you want to delete. They will be selected. To delete files that are within the same …
From techwalla.com
See details »


UNINSTALL OFFICE FROM A PC — MICROSOFT SUPPORT

WebClick-to-Run or MSI Microsoft Store If you have a Click-to-Run or an MSI installation, uninstall Microsoft 365 using the Control Panel or download the uninstall support tool. …
From support.microsoft.com
See details »


DELETE A FILE, FOLDER, OR LINK FROM A SHAREPOINT DOCUMENT LIBRARY

WebOpen the SharePoint document library where you want to delete items. To select one or more items that you want to delete, hover over the folder, and then select the checkbox. Right-click a file, folder, or link icon, and then select Delete. In the Delete confirmation dialog, click OK. Restore items in the Recycle Bin of a SharePoint site.
From products.support.services.microsoft.com
See details »


CAN YOU REMOVE MENU OPTIONS UNDER THE FILE TAB/RIBBON IN WORD …

WebMar 30, 2019 We use file options customize robbon and export the customized settimgs to then import them into other devices. Cabeat we are doing it to add a menu item since the …
From community.spiceworks.com
See details »


2 METHODS TO CLEAR RECENT DOCUMENTS IN OFFICE WORD 2019 / 2016

WebFeb 22, 2021 Method 1: Clear Recent Documents or Folders from Word GUI. Open Microsoft Word. Click the File menu on the top-left corner. Select the Open tab, click on Recent and then Documents. Right-click on any document in the recent list, and then choose the “ Clear unpinned items ” option. Click Yes to confirm. Your recent documents …
From top-password.com
See details »


CLEAR THE OFFICE CACHE — OFFICE ADD-INS | MICROSOFT LEARN

WebMar 13, 2023 To remove an add-in that you’ve previously sideloaded on Windows, Mac, or iOS, you need to clear the Office cache on your computer. Additionally, if you make changes to your add-in’s manifest (for example, update file names of icons or text of add-in commands), you should clear the Office cache and then re-sideload the add-in using an …
From learn.microsoft.com
See details »


RECOVER YOUR WORD FILES AND DOCUMENTS — MICROSOFT SUPPORT

WebDelete unwanted recovered files Select the arrow next to the file name in the recovery pane. Select Delete. Confirm deletion by selecting Yes. Closing recovered files If you …
From support.microsoft.com
See details »


DELETE A PAGE IN WORD — MICROSOFT SUPPORT

WebClick or tap anywhere in the page you want to delete, press Ctrl+G. In the Enter page number box, type page. Press Enter on your keyboard, and then select Close. Verify …
From support.microsoft.com
See details »


HOW DO I DELETE DOCUMENTS IN WORD 2016 — MICROSOFT …

WebApr 27, 2016 Right click on the document that you want to delete and choose delete. (the deleted document will be in recycle bin) To delete the document permanently highlight …
From answers.microsoft.com
See details »


HOW DO I DELETE DOCUMENTS FROM WORD — MICROSOFT …

WebMar 11, 2018 Open File Explorer by pressing Windows key + E. Locate the document you want to delete. Select the document and press the Delete key, or click Delete on the …
From answers.microsoft.com
See details »


HOW TO PERMANENTLY DELETE SAVED MICROSOFT WORD FILES

WebDec 14, 2020 How to Permanently Delete Saved Microsoft Word Files. Part of the series: Tech Niche. Permanently deleting saved Microsoft Word files requires you to find those …
From youtube.com
See details »


REMOVING PERSONAL INFORMATION FROM WORD DOCUMENTS — LIFEWIRE

WebJan 13, 2020 Microsoft Word includes a tool called Document Inspector that removes personal information from your document before you share it with others. When you print a document and want to avoid printing comments, go to File > Print, select Print All Pages , and clear the Print Markup check box. Open the Word document you want to remove …
From lifewire.com
See details »


DELETE YOUR OFFICE DOCUMENT CACHE — MICROSOFT SUPPORT

WebThere may be special circumstances that could affect the install process. Step 1: Perform a clean boot Step 2: Delete cache files Step 3: Reboot and sync Related information …
From support.microsoft.com
See details »


Related Search


Like this post? Please share to your friends:
  • Deleting duplicates from excel
  • Deleting duplicate rows in excel
  • Deleting columns excel vba
  • Deleting cells on excel
  • Delphi csv to excel