在服务器上找到压缩文件
我想创建一个 powershell 脚本,生成一个报告,显示远程服务器上的所有压缩文件/文件夹。我所说的压缩文件是指使用内置 Windows 压缩实用程序而不是 zip 压缩的文件。但我很难弄清楚如何本地化压缩文件。我应该选择 WMI 还是?
谢谢 坦率
I would like to create a powershell script generating a report showing all compressed files/folders on remote servers. By compressed files I mean files compressed using the buildin Windows Compression utility, not zip. But I have a hard time figuring out how to localize the compressed files. Should I go with WMI or?
Thanks
Frank
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.NET 中的 FileInfo/DirectoryInfo 类(我假设 PowerShell 可以轻松使用所有这些)将为您提供文件属性,其中包括压缩属性(如果已压缩)。
The
FileInfo/DirectoryInfo
classes from .NET (I assume all of this is easy available to PowerShell) will give you the file attributes that includes the compression attribute if compressed.