You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Docs/Setup/Install.md
+18-2Lines changed: 18 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,25 @@
1
1
# Installing PowerTab
2
2
3
-
Before getting started, please download the latest PowerTab version from this site. PowerTab is distributed as a standard PowerShell module in a ZIP package. The following instructions are very similar for other PowerShell modules.
4
-
5
3
## Installing the PowerTab Module
6
4
5
+
### Install from PowerShell Gallery
6
+
7
+
Inspect
8
+
9
+
```powershell
10
+
PS> Save-Module -Name PowerTab -Path <path>
11
+
```
12
+
13
+
Install
14
+
15
+
```powershell
16
+
PS> Install-Module -Name PowerTab
17
+
```
18
+
19
+
### Install manually
20
+
21
+
Before getting started, please download the latest PowerTab version from this site. PowerTab is distributed as a standard PowerShell module in a ZIP package. The following instructions are very similar for other PowerShell modules.
22
+
7
23
The first step is to unblock the download package containing PowerTab. This can be done from Windows Explorer by Right-Clicking on **PowerTab-<version>.zip** and selecting **Properties**. Then click on the **Unblock** button near the bottom of the properties dialog. Finally, press **OK**.
8
24
9
25
The second step is to extract the PowerTab package using your favorite archiving utility to your PowerShell modules folder. The default location for this is `.\WindowsPowerShell\Modules` (relative to your **Documents** folder). You may instead extract PowerTab to another folder on your `$env:PSModulePath`.
0 commit comments