Skip to content

Commit 32f5b0c

Browse files
author
Antony Bragg
committed
Update README.md
Added the unzip step to the installation instructions.
1 parent f4769ce commit 32f5b0c

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,9 @@ This is an example of how to list things you need to use the software and how to
4040
### Installation of Class Version
4141

4242
1. Download the <a href="https://github.com/captainqwerty/Write-Log/release">latest release</a>.
43-
2. Place the "Write-Log" folder in your project's folder or in a location the script can access under the context it will be ran.
44-
3. Add the Using satement pointing to the Write-Log-Class.psm1 file, please note using statements must be the very first lines of your script. In this example the Write-Log folder containing the file is in the root folder with the script calling it.
43+
2. Extract the zipped folder.
44+
3. Place the "Write-Log" folder in your project's folder or in a location the script can access under the context it will be ran.
45+
4. Add the Using satement pointing to the Write-Log-Class.psm1 file, please note using statements must be the very first lines of your script. In this example the Write-Log folder containing the file is in the root folder with the script calling it.
4546
```ps1
4647
using module ".\Write-Log\Write-Log-Class.psm1"
4748
```
@@ -50,8 +51,9 @@ using module ".\Write-Log\Write-Log-Class.psm1"
5051
### Installation of Module Version
5152

5253
1. Download the <a href="https://github.com/captainqwerty/Write-Log/releases">latest release</a>.
53-
2. Ensure the Write-log.psm1 remains in a folder called "Write-Log" and place the Write-Log folder in your project's folder or in a location the script can access under the context it will be ran.
54-
3. Import the Module. In this example the Write-Log folder is in the root of the project folder.
54+
2. Extra the zipped folder.
55+
3. Ensure the Write-log.psm1 remains in a folder called "Write-Log" and place the Write-Log folder in your project's folder or in a location the script can access under the context it will be ran.
56+
4. Import the Module. In this example the Write-Log folder is in the root of the project folder.
5557
```ps1
5658
$module = "$psscriptroot\Write-Log"
5759
if(!(test-path $module)){

0 commit comments

Comments
 (0)