Created
October 23, 2018 02:31
-
-
Save mabster/69f042f1548af466d8ea9b29f1cecbf5 to your computer and use it in GitHub Desktop.
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
add-type -AssemblyName System.Drawing | |
New-Item "$($env:USERPROFILE)\Pictures\Spotlight" -ItemType directory -Force; | |
New-Item "$($env:USERPROFILE)\Pictures\Spotlight\CopyAssets" -ItemType directory -Force; | |
New-Item "$($env:USERPROFILE)\Pictures\Spotlight\Horizontal" -ItemType directory -Force; | |
New-Item "$($env:USERPROFILE)\Pictures\Spotlight\Vertical" -ItemType directory -Force; | |
foreach($file in (Get-Item "$($env:LOCALAPPDATA)\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets\*")) | |
{ | |
if ((Get-Item $file).length -lt 100kb) { continue } | |
Copy-Item $file.FullName "$($env:USERPROFILE)\Pictures\Spotlight\CopyAssets\$($file.Name).jpg"; | |
} | |
foreach($newfile in (Get-Item "$($env:USERPROFILE)\Pictures\Spotlight\CopyAssets\*")) | |
{ | |
$image = New-Object -comObject WIA.ImageFile; | |
$image.LoadFile($newfile.FullName); | |
if($image.Width.ToString() -eq "1920"){ Move-Item $newfile.FullName "$($env:USERPROFILE)\Pictures\Spotlight\Horizontal" -Force; } | |
elseif($image.Width.ToString() -eq "1080"){ Move-Item $newfile.FullName "$($env:USERPROFILE)\Pictures\Spotlight\Vertical" -Force; } | |
} | |
Remove-Item "$($env:USERPROFILE)\Pictures\Spotlight\CopyAssets\*"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment