diff --git a/windows/Sticky Notes Backuper/Readme.txt b/windows/Sticky Notes Backuper/Readme.txt new file mode 100644 index 0000000..d0781e5 --- /dev/null +++ b/windows/Sticky Notes Backuper/Readme.txt @@ -0,0 +1,14 @@ +This is a very simple program. + +Double click on grab StickyNotes.bat to backup your sticky notes +into the current directory. + +Double click ReplaceCurrentStickyNotes.bat to replace your +stickynotes with the ones in the current directory. + + + + +** Note this will only work with windows 10 and up. +Windows 10 uses the .sqlite format where windows 7 +used a .snt file. \ No newline at end of file diff --git a/windows/Sticky Notes Backuper/grabStickyNotes.bat b/windows/Sticky Notes Backuper/grabStickyNotes.bat new file mode 100644 index 0000000..14dcf4b --- /dev/null +++ b/windows/Sticky Notes Backuper/grabStickyNotes.bat @@ -0,0 +1,9 @@ +:: Author : Jeffery Russell 11-27-18 + +@echo off + +pushd %~dp0 +dir +copy %LocalAppData%\Packages\Microsoft.MicrosoftStickyNotes_8wekyb3d8bbwe\LocalState\plum.sqlite + +pause \ No newline at end of file diff --git a/windows/Sticky Notes Backuper/replaceCurrentStickyNotes.bat b/windows/Sticky Notes Backuper/replaceCurrentStickyNotes.bat new file mode 100644 index 0000000..22df29d --- /dev/null +++ b/windows/Sticky Notes Backuper/replaceCurrentStickyNotes.bat @@ -0,0 +1,9 @@ +:: Author : Jeffery Russell 11-27-18 + +@echo off + +pushd %~dp0 +dir +copy plum.sqlite %LocalAppData%\Packages\Microsoft.MicrosoftStickyNotes_8wekyb3d8bbwe\LocalState\plum.sqlite + +pause \ No newline at end of file