powershell 提取 spotlight 图片

雨燕双飞 提交于 2019-12-03 21:04:20

powershell脚本来源于网络,有一些调整。

# 将复制出来的缓存图片保存在下面的文件夹  
$dir = Split-Path -Parent $MyInvocation.MyCommand.Definition
cd $dir
add-type -AssemblyName System.Drawing  
New-Item ".\Spotlight" -ItemType directory -Force;  
New-Item ".\Spotlight\CopyAssets" -ItemType directory -Force;  
New-Item ".\Spotlight\Horizontal" -ItemType directory -Force;  
New-Item ".\Spotlight\Vertical" -ItemType directory -Force;  
 

foreach($file in (Get-Item "$($env:LOCALAPPDATA)\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets\*"))  
{  
    if ((Get-Item $file).length -le 200kb) { continue }  
    Copy-Item $file.FullName ".\Spotlight\CopyAssets\$($file.Name).png";  
}  
# 将横竖图片分别复制到对应的两个文件夹  
foreach($newfile in (Get-Item ".\Spotlight\CopyAssets\*"))  
{  
    $image = New-Object -comObject WIA.ImageFile;  
    $image.LoadFile($newfile.FullName);  
    if($image.Width.ToString() -ge "1920"){ Move-Item $newfile.FullName ".\Spotlight\Horizontal" -Force; }  
    elseif($image.Width.ToString() -le "1080"){ Move-Item $newfile.FullName ".\Spotlight\Vertical" -Force; }  
}  
 
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!