1
0
Fork 0
mirror of https://github.com/swisskyrepo/PayloadsAllTheThings.git synced 2024-06-03 03:26:15 +02:00

Merge pull request #598 from CravateRouge/patch-4

findstr ignore error and print results in file
This commit is contained in:
Swissky 2022-11-06 12:19:22 +01:00 committed by GitHub
commit 2d67b675aa
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -449,7 +449,7 @@ Extract `HKLM\Software\Policies\Microsoft Services\AdmPwd` from Windows Registry
```powershell
cd C:\ & findstr /SI /M "password" *.xml *.ini *.txt
findstr /si password *.xml *.ini *.txt *.config
findstr /si password *.xml *.ini *.txt *.config 2>nul >> results.txt
findstr /spin "password" *.*
```