소스 검색

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

불러오는 중...
취소
저장