Windows – Changing location of sticky notes file on Windows 7

sticky-noteswindows 7

I want to synchronize the Windows 7 Sticky Notes file, notwithstanding Martha's excellent points in: How do I move Sticky Notes content to another computer.

On different machines %appdata% will point to different physical locations, so I want to move the location to a common one that I use to synchronize other stuff.

I had a quick look in the registry but couldn't see any pointers there.

Best Answer

You can use the power of NTFS Symbolic Links!

These are filesystem-level shortcuts, in effect.

Use the mklink tool in a cmd window to try it.

mklink /H "%AppData%\Microsoft\Sticky Notes\StickyNotes.snt" "C:\ommon\location\StickeyNotes.snt"

Notes: dont use hardlink to make symlink to another drive (remove /H) its still worked

Related Question