Is there a way to change the MS Word 2013 "pick up where you left off" feature?

6

This is an annoying feature. I scanned through all options but don't see any option to disable. Any idea?

mbgsuirp

Posted 2015-03-26T05:29:02.310

Reputation: 188

Answers

8

Is there a way to change the MS Word 2013 “pick up where you left off” feature?

Warning:

The instructions below contain steps that tell you how to modify the registry. However, serious problems might occur if you modify the registry incorrectly.

Therefore, make sure that you follow these steps carefully. For added protection, back up the registry before you modify it. Then, you can restore the registry if a problem occurs.

For more information see How to back up and restore the registry in Windows.


Disable Pick Up Where You Left Off in Word

When you close a document, Word automatically bookmarks your most recent position in the document. If you take a break from reading, when you reopen your document, you can pick up where you left off. If you are signed in to Office, Resume Reading works even if you reopen the document from a different computer or other device.

If you feel that this feature is not useful for you, then you may want to disable it.

  1. Press WindowsR combination, type Regedt32.exe in Run dialog box and press Enter to open the Registry Editor.

  2. Navigate to the following location:

    HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Word\Reading Locations

enter image description here

  1. Here the Reading Locations key is the culprit and is responsible for arising the tip on every start up of Office components. If you delete this key, it will help you to disable tip immediately. But as soon as you reboot the machine, the key will be written by system again and tip will start popping up. So we need to make this key read-only for everyone so that it can’t be re-written by system. To make this key read-only, right click over it and pick Permissions.

enter image description here

  1. Click on Advanced in the above shown window. Now uncheck the option “Replace all child object permission entries with inheritable permission entries from this object”.

enter image description here

  1. Click Apply followed by OK, again do the same for Permissions window. You may close the Registry Editor now, reboot to see results.

And a comment by another poster on the above:

I think that in a more recent version of Word, the "Replace all child object permission entries with inheritable permission entries from this object" box is unchecked by default, and you have to check "deny" Full Control to SYSTEM in the Permissions window before it will work.

Source Disable Pick Up Where You Left Off in Word

DavidPostill

Posted 2015-03-26T05:29:02.310

Reputation: 118 938

Thanks @DavidPostill, I'll try this. It seems MS hasn't provided any way to disable this, so need to use the workaround, is it? – mbgsuirp – 2015-03-26T08:17:52.067

@user2981854 Correct, that's why you need the workaround. – DavidPostill – 2015-03-26T08:24:47.020

Out of curiosity, why would someone want to disable this? – anon – 2015-08-12T16:53:03.647

2@anon The OP said it was "annoying" ;) – DavidPostill – 2015-08-12T17:05:34.563

2I know this is an old thread, but wanted to describe my issue with the feature: Unfortunately the little balloon tip that pops up takes focus, which means that I actually have to dismiss it before I can press Ctrl+F to find something. With the work I'm doing at the moment, it's quite annoying. Redmond should have created an option to disable it. Not sure if its the same in Office 2016... – Mike Rockétt – 2015-11-02T16:10:52.073

@MikeRockett The answer shows you exactly how to turn it off (disable it). – DavidPostill – 2015-11-02T16:13:41.107

@DavidPostill - yeah, have done that. Just elaborating on my experience. – Mike Rockétt – 2015-11-02T16:34:14.310

0

A programmatic way to dismiss the Welcome Back panel is to put this code in your Normal.dotm file:

    Sub AutoOpen()
        Selection.EndKey Unit:=wdStory, Extend:=wdMove
        Selection.HomeKey Unit:=wdStory, Extend:=wdMove
    End Sub

This code moves the cursor to the bottom of the document and then back up to the top.

If you’d rather not fiddle with VBA macros, then I’ve also put this capability into an Add-In. You can configure the add-in to dismiss the Welcome Back panel, and also to force documents to open in Draft View mode (or any other view of your choice); which restores functionality that MS removed in Word 2013. The add-in can be downloaded from: http://rath.ca/Misc/VBA/Word/ViewMgr_v2.1.zip

Christopher Rath

Posted 2015-03-26T05:29:02.310

Reputation: 1

0

Make two VBA macros for Word.
After saving a document with macro BookmarkSave this document will reopen where you closed it without showing “Pick up where you left off” or “Welcome back”.

Sub BookmarkSave ()
'
' Set Bookmark and Save
'
ActiveDocument.Bookmarks.Add Name:="OpenAt"
Selection.GoTo What:=wdGoToBookmark, Name:="OpenAt"
ActiveWindow.ActivePane.SmallScroll Up:=6
Selection.GoTo What:=wdGoToBookmark, Name:="OpenAt"
ActiveWindow.ActivePane.SmallScroll Down:=2
ActiveDocument.Save
End Sub

AND

Sub AutoOpen()
If ActiveDocument.Bookmarks.Exists("OpenAt") = True Then
Selection.GoTo What:=wdGoToBookmark, Name:="OpenAt"
ActiveWindow.ActivePane.SmallScroll Up:=6
Selection.GoTo What:=wdGoToBookmark, Name:="OpenAt"
ActiveWindow.ActivePane.SmallScroll Down:=2
End Sub

Albert van Leeuwen

Posted 2015-03-26T05:29:02.310

Reputation: 51