Bläddra i källkod

Created simple program to backup windows sticky notes.

pull/18/head
jrtechs 5 år sedan
förälder
incheckning
2f8d25877d
3 ändrade filer med 32 tillägg och 0 borttagningar
  1. +14
    -0
      windows/Sticky Notes Backuper/Readme.txt
  2. +9
    -0
      windows/Sticky Notes Backuper/grabStickyNotes.bat
  3. +9
    -0
      windows/Sticky Notes Backuper/replaceCurrentStickyNotes.bat

+ 14
- 0
windows/Sticky Notes Backuper/Readme.txt Visa fil

@ -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.

+ 9
- 0
windows/Sticky Notes Backuper/grabStickyNotes.bat Visa fil

@ -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

+ 9
- 0
windows/Sticky Notes Backuper/replaceCurrentStickyNotes.bat Visa fil

@ -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

Laddar…
Avbryt
Spara