如何刪除 Windows 10 螢幕右上角的版權請求通知
您是否在螢幕右上角看到 Windows 10 啟動通知?本文將指導您如何刪除Windows 10上的版權請求通知。
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 映像。
桌面上的 SpotlightImages 資料夾,其中保存有 1920 x 1080 Windows Spotlight 影像
尋找並手動儲存 Windows Spotlight 背景圖片
1. 將下面的資料夾位置複製並貼上到檔案總管的網址列中,然後按一下開啟AssetsEnter
資料夾。
注意:下面的資料夾位置顯示在下方註冊表項的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 影像。
選擇Assets資料夾中的所有項目並將它們全部複製到另一個資料夾
3. 開啟儲存項目的資料夾(例如%UserProfile%\Pictures ),按一下「檔案」標籤,按一下「開啟 Windows PowerShell」,然後再次選取「開啟 Windows PowerShell」 。
按一下“檔案”選項卡,按兩次“開啟 Windows PowerShell”
4. 在PowerShell中輸入以下每個命令,Enter
在每個命令後按 ,完成後關閉 PowerShell。這將重命名資料夾中的所有項目並新增 .jpg 檔案副檔名。
cmd
ren * * .jpg
在 PowerShell 中輸入命令
5. 將「維度」列新增至儲存項目的資料夾(例如%UserProfile%\Pictures )。變更資料夾視圖以按維度詳細資料降序排序。
6. 您會注意到 Windows Spotlight 影像對於 PC 和行動裝置的大小會有所不同。您可以刪除不想儲存的內容。
Windows Spotlight 影像對於 PC 和行動裝置將具有不同的尺寸
7. 這是以超大圖示檢視顯示的 1920 x 1080 Windows Spotlight PC 影像。
這是以超大圖示視圖顯示的 1920 x 1080 Windows Spotlight PC 影像
如果您不想使用 PowerShell,可以將任何重新命名實用程式(例如批次重命名實用程式)下載到您的電腦上並安裝。
安裝完成後,打開應用程序,導航到該資料夾,選擇所有文件,然後添加“.jpg”擴展名。
如果您懶得手動下載,可以在此處下載完整的 Windows Spotlight 套件。
更多的文章可以參考下面的文章:
祝你好運!
您是否在螢幕右上角看到 Windows 10 啟動通知?本文將指導您如何刪除Windows 10上的版權請求通知。
最近微軟為Windows 10 PC用戶發布了最新的累積更新,名為Build 14393.222。這次針對Windows 10發布的更新主要根據使用者回饋修復了Bug,並提升了作業系統的效能體驗。
您的本機網路上是否有需要外部存取的電腦?使用堡壘主機作為網路的看門人可能是一個很好的解決方案。
如果您喜歡使用舊的經典鍵盤,例如 IBM Model M,它不包含實體 Windows 鍵,那麼有一個簡單的方法可以添加更多按鍵,即藉用您不經常使用的鍵。
有時您可能需要一次刪除所有舊的事件日誌。在本指南中,Quantrimang.com 將向您展示 3 種快速刪除 Windows 10 事件檢視器中所有事件日誌的方法。
在之前的許多文章中,我們已經提到在線保持匿名非常重要。私人資訊每年都會被洩露,使得網路安全變得越來越必要。這也是我們應該使用虛擬IP位址的原因。下面,我們就來學習製作假IP的方法!
WindowTop 是一款能夠調暗 Windows 10 電腦上運行的所有應用程式視窗和程式的工具。或者您可以在 Windows 上使用深色背景介面。
Windows 8 上的語言列是一個微型語言工具列,旨在自動顯示在桌面螢幕上。然而,很多人想在工作列上隱藏這個語言欄。
無線連接是當今的必需品,因此,無線安全對於確保內部網路的安全至關重要。
最大限度地提高網路速度對於優化網路連線至關重要。您可以使用電腦、可上網的電視、遊戲機等獲得最佳的娛樂和工作體驗。