up vote 1 down vote favorite
share [g+] share [fb]

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

link|improve this question

75% accept rate
feedback

1 Answer

up vote 0 down vote accepted

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.

link|improve this answer
Yes the FileInfo/DirectoryInfo classes could be usefull but the solution script has to be triggered from a client pc and ask 1..many servers. So it would be very nice if the load of getting all the compressed files could be moved to each server by using WMI perhaps? – user155814 Sep 30 '09 at 13:33
frank: PowerShell 2 has Remoting. You can easily execute a script or a series of commands on numerous machines. And no, you don't need to copy all files through the network for looking at their atributes ... – Joey Sep 30 '09 at 17:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.