瀏覽代碼

Created simple program to backup windows sticky notes.

pull/18/head
jrtechs 5 年前
父節點
當前提交
2f8d25877d
共有 3 個檔案被更改,包括 32 行新增0 行删除
  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 查看文件

@ -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 查看文件

@ -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 查看文件

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

載入中…
取消
儲存