powershell 提取 spotlight 图片
Posted wswind
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 提取 spotlight 图片相关的知识,希望对你有一定的参考价值。
powershell脚本来源于网络,有一些调整。
# 将复制出来的缓存图片保存在下面的文件夹
$dir = Split-Path -Parent $MyInvocation.MyCommand.Definition
cd $dir
add-type -AssemblyName System.Drawing
New-Item ".Spotlight" -ItemType directory -Force;
New-Item ".SpotlightCopyAssets" -ItemType directory -Force;
New-Item ".SpotlightHorizontal" -ItemType directory -Force;
New-Item ".SpotlightVertical" -ItemType directory -Force;
foreach($file in (Get-Item "$($env:LOCALAPPDATA)PackagesMicrosoft.Windows.ContentDeliveryManager_cw5n1h2txyewyLocalStateAssets*"))
{
if ((Get-Item $file).length -le 200kb) { continue }
Copy-Item $file.FullName ".SpotlightCopyAssets$($file.Name).png";
}
# 将横竖图片分别复制到对应的两个文件夹
foreach($newfile in (Get-Item ".SpotlightCopyAssets*"))
{
$image = New-Object -comObject WIA.ImageFile;
$image.LoadFile($newfile.FullName);
if($image.Width.ToString() -ge "1920"){ Move-Item $newfile.FullName ".SpotlightHorizontal" -Force; }
elseif($image.Width.ToString() -le "1080"){ Move-Item $newfile.FullName ".SpotlightVertical" -Force; }
}
以上是关于powershell 提取 spotlight 图片的主要内容,如果未能解决你的问题,请参考以下文章
面向机器学习的可视分析技术 | CVMJ Spotlight