How to find all files with a specific extension in Windows 8?

1

On a computer with Windows 8, how can I find all files with a specific extension within a drive or network location?

For example, how can I find all *.docx files on my hard drive?

Rising Star

Posted 2013-11-27T00:29:54.017

Reputation: 439

Sorry for my wrong answer that I posted earlier. Network location is a totally different story. Cannot really help there. Locally just use the search box in the Explorer Window. – Apache – 2013-11-27T00:58:19.013

Here's a similar question but not restricted to Win 8: http://superuser.com/questions/25092/searching-through-txt-pdf-and-doc-files

– snowdude – 2013-11-27T18:00:10.637

@AthomSfere, I've used the built-in tools in the Windows Explorer and the Windows 8 Metro interface. It just seems odd that the built-in search functionality in a major Windows release could be so pathetic. – Rising Star – 2013-11-27T21:32:11.467

Answers

0

You can use this Powershell command:

Get-ChildItem -Path c:\ *.docx -Recurse

Daniel Engberg

Posted 2013-11-27T00:29:54.017

Reputation: 31