Created
September 10, 2020 19:38
-
-
Save JaekelEDV/aa2c7874f2622be0656f0b1a2e62aa2e to your computer and use it in GitHub Desktop.
Get plum.sqlite from StickyNotes with Powershell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Install-Module -Name PSSQLite | |
| $database = $env:LOCALAPPDATA + "\Packages\Microsoft.MicrosoftStickyNotes_8wekyb3d8bbwe\LocalState\plum.sqlite" | |
| $query = "SELECT * FROM Note LIMIT 100" | |
| Invoke-SqliteQuery -DataSource $database -Query $query > $env:USERPROFILE\Desktop\notes.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment