https://github.com/powercode/PSEverything
PowerShell commandlets for the local search engine Everything
https://github.com/powercode/PSEverything
Last synced: 5 months ago
JSON representation
PowerShell commandlets for the local search engine Everything
- Host: GitHub
- URL: https://github.com/powercode/PSEverything
- Owner: powercode
- License: mit
- Created: 2015-03-18T16:21:16.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2023-12-20T00:00:47.000Z (over 1 year ago)
- Last Synced: 2024-08-03T22:17:23.966Z (8 months ago)
- Language: C#
- Size: 219 KB
- Stars: 104
- Watchers: 9
- Forks: 13
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - powercode/PSEverything - PowerShell commandlets for the local search engine Everything (C# #)
README
# PSEverything
PowerShell cmdlet for the local search engine Everything_Everything_ is a blazingly fast local search engine by David Carpenter, found at http://www.voidtools.com/
To use it, download Everything and install it as a service.
Install PSEverything from PowerShell Gallery.
```powershell
Install-Module PSEverything
```Then you can so things like
```powershell
Search-Everything -Extension cpp,h -Global -Filter Bytes | Get-Item
```
That almost instantly finds all cpp and h files with Bytes in it's name on all (-Global) NTFS drives.On my system,
```powershell
Search-Everything -Extension h -Global
```
returned 61082 '.h' files in 344 ms.