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

PowerShell - 递归提取特定文件夹的内容

使用 Powershell 打开或提取文件 nupkg

powershell Powershell脚本,用于从CSV中提取数据并将其放入SharePoint列表中。

使用 PowerShell 提取子字符串

PowerShell - 从 Outlook 中提取电子邮件信息