Parcourir la source

Created simple program to backup windows sticky notes.

pull/18/head
jrtechs il y a 5 ans
Parent
révision
2f8d25877d
3 fichiers modifiés avec 32 ajouts et 0 suppressions
  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 Voir le fichier

@ -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 Voir le fichier

@ -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 Voir le fichier

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

Chargement…
Annuler
Enregistrer