Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Braytiner/9c8191bb8e215fd7aab16f2cfb507aaa to your computer and use it in GitHub Desktop.
Save Braytiner/9c8191bb8e215fd7aab16f2cfb507aaa to your computer and use it in GitHub Desktop.
Downloading Windows Spotlight Images via PowerShell command
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