Advertisement
hl2guide

Evernote Backup All Notes - Batch for Windows 7

Mar 26th, 2015
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. :: Backs up all Evernote notes, requires Evernote for Windows.
  2. :: VERSION: 1.1c
  3.  
  4. @ECHO off
  5.  
  6. SET datetimestamp=%date:~7,2%-%date:~4,2%-%date:~10,4%%time:~0,2%_%time:~3,2%_%time:~6,2%
  7. SET evernoteinstalldirectory=c:\Program Files (x86)\Evernote\Evernote
  8. SET destinationdirectory=F:\Backups\Evernote
  9. SET destinationfilename=Evernote_Backup_%datetimestamp%.enex
  10.  
  11. ECHO Backing up all your Evernote notes, please wait...
  12. ECHO.
  13. "%evernoteinstalldirectory%\ENScript.exe" exportNotes /q any:* /f "%destinationdirectory%\%destinationfilename%"
  14. ECHO.
  15. ECHO All your Evernote notes were backed up as the file: %destinationdirectory%\%destinationfilename%.
  16. ECHO.
  17. PAUSE
  18.  
  19. @ECHO on
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement