如何修復 Windows 10/11 上的「我們需要您目前的 Windows 密碼」錯誤
您是否收到「我們最後一次需要您目前的 Windows 密碼」錯誤?這個煩人的彈出視窗可能會妨礙您完成工作。
Windows Spotlight 是 Windows 10 上的一項新功能,允許用戶從 Bing Images 下載並使用當天的精選照片作為鎖屏,此外還可以對照片進行投票和評論。
在螢幕的右上角,您可以透過在目前顯示的圖像上向上(喜歡)或向下滑動來表示您的喜歡。如果您不喜歡,圖像就會消失。如果您喜歡它,下次就會出現類似的圖像。
這個功能非常酷,可以讓你定期自動更換鎖定螢幕壁紙,並顯示最佳圖片。
在使用 Spotlight 時,如果您喜歡某些圖像並想在其他電腦上使用它們,您可以透過執行以下操作來下載並儲存它們。
如何下載 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 映像。
尋找並手動儲存 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 影像。
3. 開啟儲存項目的資料夾(例如,%UserProfile%\Pictures ),按一下「檔案」標籤,按一下「開啟 Windows PowerShell 」,然後再次選擇「開啟 Windows PowerShell」。
4. 在PowerShell輸入以下每個命令,輸入Enter
每個命令後按 Enter 鍵,完成後關閉 PowerShell。這將重命名資料夾中的所有項目並新增.jpg 檔案副檔名。
cmd
ren * * .jpg
5. 將「尺寸」欄位新增至儲存項目的資料夾(例如,%UserProfile%\Pictures )。將資料夾視圖變更為按尺寸詳細資料降序排序。
6. 您會注意到,Windows Spotlight 影像在 PC 和行動裝置上的大小會有所不同。您可以刪除不想儲存的。
7. 這是以超大圖示檢視顯示的 1920 x 1080 Windows Spotlight PC 影像。
如果您不想使用 PowerShell,您可以下載任何重新命名實用程式(如批次重命名實用程式)並安裝它。
安裝完成後,打開應用程序,導航到資料夾,選擇所有文件,然後添加擴展名“.jpg”。
如果您懶得手動下載,可以在此下載完整的 Windows Spotlight 套件。
請參閱下面的更多文章:
祝你好運!
您是否收到「我們最後一次需要您目前的 Windows 密碼」錯誤?這個煩人的彈出視窗可能會妨礙您完成工作。
由於某些安裝的軟體與作業系統衝突或電腦突然關閉,導致出現無法安裝的啟動磁碟區錯誤...在下面的文章中,WebTech360 將引導您完成一些修復此錯誤的方法。
如果您使用剪貼簿歷史記錄來儲存資料以供日後使用,那麼無論您如何嘗試,資料都有可能保持為空。
大多數筆記型電腦用戶都遇到過這樣的情況:Windows 顯示電池壽命還剩 2 小時,但五分鐘後跳到 5 小時甚至 1 小時左右。時間為何跳動得這麼厲害?
筆記型電腦電池的效能會隨著時間的推移而下降,容量也會減少,導致正常運作時間縮短。但在調整一些更深層的 Windows 11 設定後,您應該會看到電池壽命明顯改善。
Windows 11 版本 21H2 是 Windows 11 的主要原始版本之一,於 2021 年 10 月 4 日開始在全球推出。
您可以停用使用者帳戶,以便其他人無法再存取您的電腦。
NPU 是否足夠不同,以致於需要推遲購買並等待 PC Copilot+ 成為主流?
Windows 11 的省電模式是一項旨在延長筆記型電腦電池壽命的功能。
經過多年的保持不變,2024 年中期的 Sticky Note 更新改變了遊戲規則。
IRQL NOT LESS OR EQUAL 錯誤是與記憶體相關的錯誤,通常當系統程序或驅動程式嘗試在沒有適當存取權的情況下存取記憶體位址時發生。
路徑是 Windows 11 中檔案或資料夾的位置。所有路徑都包含您需要打開才能到達特定位置的資料夾。
Windows 11已經正式上線,比起Windows 10,Windows 11也有不少變化,從介面到新功能。請遵循以下文章中的詳細資訊。
目前Windows 11已經正式上線,我們可以下載Windows 11官方ISO檔案或Insider Preview版本來安裝。
USB 裝置已成為日常生活中不可或缺的一部分,使我們能夠將各種必需的硬體連接到我們的電腦上。