From 2aa4cfe19121ee36051718956e67da18193444e9 Mon Sep 17 00:00:00 2001 From: Eric Conrad Date: Wed, 1 May 2019 16:15:55 -0300 Subject: [PATCH] Minor formatting --- README.md | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 8e4975a..b1346a3 100644 --- a/README.md +++ b/README.md @@ -25,19 +25,13 @@ Sample evtx files are in the .\evtx directory `.\DeepBlue.ps1 ` -If you see this error: - -`.\DeepBlue.ps1 : File .\DeepBlue.ps1 cannot be loaded because running scripts is +If you see this error: `.\DeepBlue.ps1 : File .\DeepBlue.ps1 cannot be loaded because running scripts is disabled on this system. For more information, see about_Execution_Policies at http://go.microsoft.com/fwlink/?LinkID=135170.` -You must run Set-ExecutionPolicy as Administrator, here is an example (this will warn every time you run a ps1 script): +You must run Set-ExecutionPolicy as Administrator, here is an example (this will warn every time you run a ps1 script): `Set-ExecutionPolicy RemoteSigned` -`Set-ExecutionPolicy RemoteSigned` - -This command will bypass Set-Execution entirely: - -`Set-ExecutionPolicy Bypass` +This command will bypass Set-Execution entirely: `Set-ExecutionPolicy Bypass` See `get-help Set-ExecutionPolicy` for more options.