We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Would you be able to advise about appending the output of results
This one liner doesn't actually output anything into the file
Invoke-Leghorn -Domain whatever.local | Out-File -FilePath .\cert_abuse_audit.txt
As a workaround right now, I have been using the following with start-transcript in order to save results.
start-transcript
#Begin transcript mode $ErrorActionPreference="SilentlyContinue" Stop-Transcript | out-null $ErrorActionPreference = "Continue" Start-Transcript -path .\client_certificate_abuse.txt -append #start script Invoke-Leghorn -Domain whatever.local #end script Stop-Transcript
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Would you be able to advise about appending the output of results
This one liner doesn't actually output anything into the file
As a workaround right now, I have been using the following with
start-transcript
in order to save results.The text was updated successfully, but these errors were encountered: