如何获取 Windows 锁屏“Spotlight”位置的名称?

如何获取 Windows 锁屏“Spotlight”位置的名称?

我已经有一个小的批处理文件,当我在 Windows 锁屏上看到我喜欢的照片时,我会不时地运行它,但如果能够记住它是在哪里拍摄的就好了(你知道它在角落里告诉你的)。把它放在文件名本身或者照片元数据的“评论”部分都可以。我只是想记住,因为也许有一天我会想真正去那个地方。显然微软认为人们不喜欢去漂亮的地方。

不管怎样,这就是我目前所得到的。

:: Batch script, which copies larger "Like what you see" 
:: pictures to %userprofile%\Pictures\Saved Pictures\ and opens it in explorer
cd /D %userprofile%\AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets
mkdir "%userprofile%\Pictures\Saved Pictures\" 1>nul 2>&1
for /r ".\" %%F in (*) do @if %%~zF geq 35000 copy "%%F" "%userprofile%\Pictures\Saved Pictures\*.jpg"
explorer "%userprofile%\Pictures\Saved Pictures\"

相关内容