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: whiteboard/docs-conceptual/overview.md
+19-1Lines changed: 19 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,25 @@ To install and use the Microsoft Whiteboard cmdlets:
11
11
12
12
1. Open the start menu and search for Windows PowerShell
13
13
2. Right-click on Windows PowerShell and choose Run As Administrator
14
-
3. Type or copy this command into the window and press the Enter key: Install-Module -Name WhiteboardAdmin
14
+
3. Type or copy this command into the window and press the Enter key:
15
+
16
+
```powershell
17
+
Install-Module -Name WhiteboardAdmin
18
+
```
19
+
20
+
By default, the PowerShell Gallery (PSGallery) isn't configured as a trusted repository for **PowerShellGet**. The first time you use the PSGallery, you'll see the following message:
21
+
22
+
```console
23
+
Untrusted repository
24
+
25
+
You are installing the modules from an untrusted repository. If you trust this repository, change
26
+
its InstallationPolicy value by running the `Set-PSRepository` cmdlet.
27
+
28
+
Are you sure you want to install the modules from 'PSGallery'?
29
+
[Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "N"):
30
+
```
31
+
32
+
Answer **Yes** or **Yes to All** to continue with the installation.
15
33
16
34
You may need to update your execution policy, which you can do by typing or copying this command into the window and pressing the Enter key:
0 commit comments