From 0ef3f690c8cb298b3ff1864a0b9accf847719ce2 Mon Sep 17 00:00:00 2001 From: Scott Sutherland Date: Wed, 21 Sep 2022 12:41:14 -0500 Subject: [PATCH] Update README.md --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2095fca..00ec231 100644 --- a/README.md +++ b/README.md @@ -43,13 +43,19 @@ However, additional exposures may exist that are not called out beyond that. # Setup Commands Below is a list of commands that can be used to load PowerHuntShares into your current PowerShell session. Please note that one of these will have to be run each time you run PowerShell is run. It is not persistent.
+# Bypass execution policy restrictions
 Set-ExecutionPolicy -Scope Process Bypass
+
+# Import module that exists in the current directory
 Import-Module .\PowerHuntShares.psm1
-
+ or -
+
+# Reduce SSL operating level to support connection to github
 [System.Net.ServicePointManager]::ServerCertificateValidationCallback = {$true}
 [Net.ServicePointManager]::SecurityProtocol =[Net.SecurityProtocolType]::Tls12
+
+# Download and load PowerHuntShares.psm1 into memory
 IEX(New-Object System.Net.WebClient).DownloadString("https://raw.githubusercontent.com/NetSPI/PowerHuntShares/main/PowerHuntShares.psm1")