How to Download Windows 10 Spotlight/Lock Screen Images

http://www.online-tech-tips.com/windows-10/download-windows-10-spotlight-lock-screen-images/

图片位置

C:\Users\clu\AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets

 

cmd命令重命名以及删除

让文件夹中的文件,按照大小排序。筛选出大小超过50kb的文件。

然后重命名为.jpg文件

 使用这个命令就可以 ren *.* *.jpg

部分文件重复,无法重命名

列出没有文件后缀的文件 dir *.

删除del *.

 

 powershell命令

或者使用powershell的命令,进行文件导出以及重命名

Get-ChildItem -Path $env:localappdata\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets | Copy-Item -dest {"$home\desktop\pics\" + $_.BaseName + ($i++) +".jpg" }

PS C:\Program Files\PowerShell\6.0.0-beta.6> Get-ChildItem -Path C:\Users\clu\AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets\ | Copy-Item -Destination{"C:\Users\clu\Desktop\pics\"+$_.BaseName+($i++)+".jpg"}

 

作者:Chuck Lu    GitHub    
posted @   ChuckLu  阅读(462)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
历史上的今天:
2016-09-07 nuget.exe the application could not be started
2016-09-07 choco命令
2016-09-07 How do I reset Windows Update components?
2015-09-07 How to convert an IPv4 address into a integer in C#?
2015-09-07 System.Windows.Forms中的Message Structure
2015-09-07 What exactly is the difference between WndProc and DefaultWndProc?
点击右上角即可分享
微信分享提示