How do I change the default location of Sticky Notes on windows 7?
Looking for a solution to help me whenever add a note into sticky notes it will save on new location. Something that always windows check the new location to pull up the file not a copy/short-cut of
%AppData%\Microsoft\Sticky Notes\StickyNotes.sntIn other words I'd like to remove %AppData%\Microsoft\Sticky Notes\StickyNotes.snt and whenever start the Sticky Notes,
see the file in this location: e:\Notes\StickeyNotes.snt
I've tried this one as administrator:
mklink /H "%AppData%\Microsoft\Sticky Notes\StickyNotes.snt" "e:\Notes\StickeyNotes.snt"and even this:
mklink "e:\Notes\StickeyNotes.snt" "%AppData%\Microsoft\Sticky Notes\StickyNotes.snt" I had a quick look in the registry but couldn't see any pointers there.
2 Answers
For me it worked using /J instead thus creating a directory junction for the whole directory, seeing as how the .snt file is probably the only file to ever reside in that directory. So try this:
mklink /J "%appdata%\Microsoft\Sticky Notes" "e:\Notes\StickeyNotes.snt" You need to trick the OS to do this. The link below worked for me
How to change the default location of Sticky Notes in windows
Here are the steps:
- Copy the content of the folder from %AppData%\Microsoft\Sticky Notes\ to D:\StickyNotes
- Delete Sticky Notes folder at %AppData%\Microsoft\Sticky Notes\
Create a symbolic link by running the below line in Command Prompt as administrator:
Mklink /d "%appdata%\Microsoft\Sticky Notes\" "D:\StickyNotes\"