Selaa lähdekoodia

Created simple program to backup windows sticky notes.

pull/18/head
jrtechs 5 vuotta sitten
vanhempi
commit
2f8d25877d
3 muutettua tiedostoa jossa 32 lisäystä ja 0 poistoa
  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 Näytä tiedosto

@ -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 Näytä tiedosto

@ -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 Näytä tiedosto

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

Ladataan…
Peruuta
Tallenna