Created
May 16, 2019 14:59
-
-
Save Braytiner/9c8191bb8e215fd7aab16f2cfb507aaa to your computer and use it in GitHub Desktop.
Downloading Windows Spotlight Images via PowerShell command
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
Just create a folder on your desktop called Pics, open PowerShell and paste the following command press Enter: | |
Get-ChildItem -Path $env:localappdata\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets | Copy-Item -dest {"$home\desktop\pics\" + $_.BaseName + ($i++) +".jpg" } | |
All the images from the LocalState/Assets folder should be there in Pics folders. You’ll need to delete out the useless files, but | |
otherwise it saves you a lot of time. Enjoy! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment