Disable "pick up where you left off"

Anonymous
2013-05-22T16:45:22+00:00

Have any of you figured out how to turn this "Welcome back, pick up where you left off" bookmark thing? I've gone through all the options and add-ins I can find, and I can't make it stop doing this.

Thanks!

Microsoft 365 and Office | Word | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments
Answer accepted by question author
Anonymous
2013-06-11T20:49:21+00:00

On the same track I deleted all the subkeys under 'Reading Locations' and then made the 'Reading Locations' key read-only to everyone.

This has stopped Word writing to the key and I no longer get the message when I re-open a document.

Was this answer helpful?

70+ people found this answer helpful.
0 comments No comments
Answer accepted by question author
Anonymous
2013-06-10T03:54:05+00:00

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

That looks like a good place to start.

Was this answer helpful?

60+ people found this answer helpful.
0 comments No comments

91 additional answers

Sort by: Most helpful
  1. Stefan Blom 352.1K Reputation points MVP Volunteer Moderator
    2016-09-27T06:23:39+00:00

    Go to the Uservoice forum at http://word.uservoice.com and post a suggestion, or vote for an existing suggestion, to change the behavior.

    Was this answer helpful?

    0 comments No comments
  2. Jay Freedman 208.2K Reputation points Volunteer Moderator
    2016-09-19T17:44:03+00:00

    I actually hope there is an option that word directly opens where I left off without any clicking. I often edit word document >200 pages. Clicking the pop-up every time is quite annoying for me......

    To make that happen, install the following macro in your Normal.dotm template:

    Sub AutoOpen()

       With ActiveDocument

          If .Bookmarks.Exists("\PrevSel1") Then

             .Bookmarks("\PrevSel1").Select

          End If

       End With

    End Sub

    If you need to know how to install it, see http://www.gmayor.com/installing_macro.htm.

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2016-09-19T11:33:08+00:00

    I actually hope there is an option that word directly opens where I left off without any clicking. I often edit word document >200 pages. Clicking the pop-up every time is quite annoying for me......

    Was this answer helpful?

    0 comments No comments