如何從 Spotlight 下載 Windows 10 鎖定畫面影像到您的計算機

Windows Spotlight 是 Windows 10 上的一項新功能,允許用戶從 Bing Images 下載並使用當天的精選照片作為鎖屏,此外還可以對照片進行投票和評論。

在螢幕右上角,您可以透過在目前顯示的圖片上向上(按讚)或向下滑動來表示您的喜歡。如果你不喜歡,它會消失。如果您喜歡,下次就會出現類似的圖片。

這個功能非常酷,可以讓你定期自動更換鎖定螢幕壁紙,並顯示最佳圖片。

在使用 Spotlight 時,如果您喜歡某些圖像並想在其他電腦上使用它們,您可以透過執行以下操作來下載並儲存它們。

如何從 Spotlight 下載 Windows 10 鎖定畫面影像到您的計算機

如何下載 Windows 10 鎖定畫面上顯示的影像

使用 PowerShell 腳本尋找並儲存 Windows Spotlight 背景圖片

1.下載 PowerShell 腳本 Find_Windows_Spotlight_images.ps1

代碼:

$WindowsSpotlightFolder = "$env:USERPROFILE\AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets"
$WindowsSpotlightImages = "$env:USERPROFILE\Desktop\SpotlightImages\"

if (Test-Path $WindowsSpotlightImages) {
    $FolderTimestamp = Get-Date (Get-Item $WindowsSpotlightImages).LastWriteTime -Format "yyyyMMdd.HHmmss"
    Rename-Item -Path $WindowsSpotlightImages -NewName ('SpotlightImages-' + $FolderTimestamp) -Force
    Remove-Variable FolderTimestamp   # Cleanup
}

New-Item -Path $WindowsSpotlightImages -ItemType Directory | Out-Null

Add-Type -AssemblyName System.Drawing
$ImagesToCopy = @()
$(Get-ChildItem -Path $WindowsSpotlightFolder).FullName | ForEach-Object { 
    $Image = [System.Drawing.Image]::Fromfile($_)
    $Dimensions = "$($Image.Width)x$($Image.Height)"

    If ($Dimensions -eq "1920x1080") {
        $ImagesToCopy += $_
    }
    $Image.Dispose()
}

$ImagesToCopy | Copy-Item -Destination $WindowsSpotlightImages 
$FileNumber = 0

Get-ChildItem -Path $WindowsSpotlightImages | Sort-Object LastWriteTime | 
foreach {
    $FileNumber += 1
    Rename-Item -Path $_.FullName -NewName ("1920x1080_" + $FileNumber.ToString("000") + '.jpg')
}

# Report
$NewSpotlgihtImages = Get-ChildItem -Path $WindowsSpotlightImages
if ($NewSpotlgihtImages) {
    Write-Host
    ($NewSpotlgihtImages).Name
    Write-Host `n($NewSpotlgihtImages).Count "new images were copied into $WindowsSpotlightImages`n" -ForegroundColor Green 
}
else { 
    Write-Host "`nNo new images were copied.`n" -ForegroundColor Red
    Remove-Item $WindowsSpotlightImages -Force
}

# Cleanup
Remove-Variable WindowsSpotlightFolder, WindowsSpotlightImages, ImagesToCopy, Image, Dimensions, FileNumber, NewSpotlgihtImages

2.將.ps1檔案儲存到桌面。

3.解除封鎖.ps1 檔案。

4. 以滑鼠右鍵或按住 .ps1 文件,然後按一下「使用 PowerShell 執行」

5. 現在,您的桌面上將有一個SpotlightImages資料夾,其中保存了 1920 x 1080 的 Windows Spotlight 映像。

如何從 Spotlight 下載 Windows 10 鎖定畫面影像到您的計算機
桌面上的 SpotlightImages 資料夾,其中保存了 1920 x 1080 的 Windows Spotlight 映像

尋找並手動儲存 Windows Spotlight 背景圖片

1. 將下面的資料夾位置複製並貼上到檔案總管網址列中,然後點選Enter開啟 Assets 資料夾

注意:下面的資料夾的位置顯示在下面的註冊表項的LandscapeAssetPath字串值中。

HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Lock Screen\Creative
%LocalAppData%\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets

2. 選擇Assets資料夾中的所有項目,然後將它們全部複製到您選擇的另一個資料夾(例如%UserProfile%\Pictures )。

如果您願意,您也可以右鍵單擊文件,按一下「開啟方式」,然後選擇「Windows 照片檢視器」來查看列出的 Windows Spotlight 影像。

如何從 Spotlight 下載 Windows 10 鎖定畫面影像到您的計算機
選擇 Assets 資料夾中的所有項目,並將它們全部複製到另一個資料夾

3. 開啟儲存項目的資料夾(例如,%UserProfile%\Pictures ),按一下「檔案」標籤,按一下「開啟 Windows PowerShell 」,然後再次選擇「開啟 Windows PowerShell」

如何從 Spotlight 下載 Windows 10 鎖定畫面影像到您的計算機
按一下「檔案」選項卡,按一下「開啟 Windows PowerShell」兩次

4. 在PowerShell輸入以下每個命令,輸入Enter每個命令後按 Enter 鍵,完成後關閉 PowerShell。這將重命名資料夾中的所有項目,並新增 .jpg 檔案副檔名。

cmd
ren * * .jpg
如何從 Spotlight 下載 Windows 10 鎖定畫面影像到您的計算機
在 PowerShell 中輸入命令

5. 將「尺寸」欄位新增至您儲存項目的資料夾(例如%UserProfile%\Pictures)。將資料夾視圖變更為按“尺寸”詳細資料降序排序。

6. 您會注意到,Windows Spotlight 影像在 PC 和行動裝置上的大小會有所不同。您可以刪除不想儲存的影像。

如何從 Spotlight 下載 Windows 10 鎖定畫面影像到您的計算機
Windows Spotlight 影像在 PC 和行動裝置上的尺寸會有所不同

7. 這是以超大圖示檢視顯示的 1920 x 1080 Windows Spotlight PC 影像。

如何從 Spotlight 下載 Windows 10 鎖定畫面影像到您的計算機
這是一張 1920 x 1080 的 Windows Spotlight PC 映像,以超大圖示視圖顯示

如果您不想使用 PowerShell,您可以下載任何重新命名實用程式(如批次重命名實用程式)並安裝它。

安裝完成後,打開應用程序,導航到資料夾,選擇所有文件,然後添加擴展名“.jpg”。

如果您懶得手動下載,可以在此下載完整的 Windows Spotlight 套件

請參閱下面的更多文章:

祝你好運!

留下評論

解決 Windows 11 更新錯誤 0x800f0922

解決 Windows 11 更新錯誤 0x800f0922

遇到 Windows 11 更新錯誤 0x800f0922?了解已驗證的有效解決方法,快速解決此常見問題。逐步指南,幫助您輕鬆完成更新,告別煩惱。

如何修復 Windows 11 系統還原錯誤 0x80070005

如何修復 Windows 11 系統還原錯誤 0x80070005

遇到 Windows 11 系統還原錯誤 0x80070005 ?我們提供經過驗證的分步解決方案,幫助您輕鬆修復訪問被拒絕問題,並順利恢復系統。無需任何技術知識!

解決 Windows 11 PowerPoint 圖形驅動程式錯誤

解決 Windows 11 PowerPoint 圖形驅動程式錯誤

還在為 Windows 11 系統中 PowerPoint 圖形驅動程式錯誤而煩惱嗎?了解這些經過驗證的故障排除步驟,快速輕鬆地解決崩潰、黑屏和效能問題。立即恢復流暢的簡報體驗。

如何使用 Windows 11 字元對映表工具

如何使用 Windows 11 字元對映表工具

了解如何輕鬆使用 Windows 11 字元對應工具在文件中插入特殊字元、表情符號和符號。提供逐步指南,包含適合初學者和專業人士的技巧。

解決 Windows 11 Windows 郵件應用程式無法同步的問題

解決 Windows 11 Windows 郵件應用程式無法同步的問題

Windows 11 郵件應用程式無法同步?我們提供經過驗證的逐步修復方案,讓您輕鬆恢復郵件收發的流暢性。快速解決常見同步錯誤,告別技術難題。

如何修復 Windows 11 找不到可啟動裝置的問題

如何修復 Windows 11 找不到可啟動裝置的問題

還在為 Windows 11 系統上令人抓狂的「找不到可啟動裝置」錯誤而苦惱嗎?我們提供經過驗證的逐步修復方案,幫助您輕鬆恢復電腦的正常啟動。從 BIOS 調整到硬碟修復,我們都能幫您解決。

Windows 11 OBS Studio 黑屏故障排除

Windows 11 OBS Studio 黑屏故障排除

在 Windows 11 系統上使用 OBS Studio 時遇到黑畫面問題?了解經實踐驗證的解決方法,幫助您流暢地進行直播和錄製。逐步指南,快速輕鬆地解決黑屏問題。

如何修復 Windows 11 虛擬記憶體過低錯誤

如何修復 Windows 11 虛擬記憶體過低錯誤

遇到 Windows 11 虛擬記憶體不足錯誤?了解經過驗證的逐步修復方法,以提升您的系統效能。

解決 Windows 11 筆記型電腦電池閾值無法儲存的問題

解決 Windows 11 筆記型電腦電池閾值無法儲存的問題

還在為 Windows 11 筆記型電腦電池電量閾值無法保存而煩惱嗎?本文提供經實踐驗證的有效解決方案,幫助您輕鬆解決這個棘手問題,優化電池續航力。內含詳細步驟指南。

解決 Windows 11 藍牙低功耗裝置同步錯誤

解決 Windows 11 藍牙低功耗裝置同步錯誤

在 Windows 11 上遇到藍牙低功耗裝置同步錯誤?了解經過驗證的故障排除步驟,解決連線問題、恢復配對並確保裝置同步順暢。取得最新 Windows 更新的專家提示。