16 lines
370 B
Markdown
16 lines
370 B
Markdown
|
|
|
|
|
|
|
|
```powershell
|
|
Get-ChildItem -Path C:\ -Include certutil* -File -Recurse -ErrorAction SilentlyContinue
|
|
```
|
|
|
|
```powershell
|
|
Get-ChildItem -Path C:\Users\ -Include *.txt,*.ini -File -Recurse -ErrorAction SilentlyContinue
|
|
```
|
|
|
|
```powershell
|
|
Get-ChildItem -Path C:\Users\mac\ -Include *.txt,*.pdf,*.xls,*.xlsx,*.doc,*.docx -File -Recurse -ErrorAction SilentlyContinue
|
|
```
|