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.

link|improve this question

42% accept rate
feedback

1 Answer

up vote 3 down vote accepted

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]"

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

link|improve this answer
Hi Phoshi, Just to make sure I understand what you're saying... I move the file to the common location then, by using the symbolic link, I make the OS think that the file is located in %AppData%. So long as I DON'T synch the %AppData% folders between the two machines, I'll be OK, the file will move between the machines and each OS will think the file is STILL in its %AppData%. Have I got it right? – PaoloFCantoni Mar 7 '10 at 1:26
No, SymLinks are one way - move the file to the syncable place, symlink it to where it should be, and everything should work just fine :) – Phoshi Mar 7 '10 at 10:16
Thanks Phoshi, I understand the links are one way, but I thought if I synced "where it should be", then the OS would retrieve the file from where it was actually located and pass it along to the other machine. In other words, create an instance out of a reference. This would invalidate what I'm trying to do. So long as I DON'T since "where it should be", I should be OK. Have I misunderstood something? – PaoloFCantoni Mar 8 '10 at 2:53
@Paolo; No, I think you've got it. Don't take my word for it, right now, though - I'm only here because I'm ill! :P – Phoshi Mar 8 '10 at 14:36
@Phoshi Thanks! All Good! Working fine now... (Just have to make sure that sticky notes s not active as it blocks the transfer.) Many thanks! Paolo – PaoloFCantoni Mar 8 '10 at 18:47
show 4 more comments
feedback

protected by Community Jun 15 '11 at 6:50

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.