Skip to content

Commit 00a8067

Browse files
authored
Merge branch 'pnp:dev' into dev
2 parents e621c76 + 5462b6d commit 00a8067

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

documentation/Disconnect-PnPOnline.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Disconnect-PnPOnline
2020

2121
## DESCRIPTION
2222

23-
Disconnects the current connection and clears its token cache. It will require you to build up a new connection again using [Connect-PnPOnline](Connect-PnPOnline.html) in order to use any of the PnP PowerShell cmdlets. You will have to reauthenticate. If instead you simply want to connect to another site collection within the same tenant using the same credentials you used previously, do not use this cmdlet but instead use `Connect-PnPOnline -Url https://tenant.sharepoint.com/sites/othersite` instead without disconnecting. It will try to reuse the existing authentication method and cached credentials.
23+
Disconnects the current connection and clears its token cache. It will require you to build up a new connection again using [Connect-PnPOnline](Connect-PnPOnline.md) in order to use any of the PnP PowerShell cmdlets. You will have to reauthenticate. If instead you simply want to connect to another site collection within the same tenant using the same credentials you used previously, do not use this cmdlet but instead use `Connect-PnPOnline -Url https://tenant.sharepoint.com/sites/othersite` instead without disconnecting. It will try to reuse the existing authentication method and cached credentials.
2424

2525
Note that this cmdlet does not support passing in a specific connection to disconnect. If you wish to dispose a specific connection you have set up in a variable using `$variable = Connect-PnPOnline -ReturnConnection`, just dispose that variable using `$variable = $null` and it will be cleared from memory.
2626

pages/articles/azureautomationrunbook.md

-2
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,6 @@ To add PnP PowerShell to the Azure Automation Account, follow these steps:
9090

9191
Click on **Import** to start the download and importing process.
9292

93-
![Start importing the PnP PowerShell module](../images/azureautomation/automationaddmodulepnpposhcustombuildimport.png)
94-
9593
It will take up to 10 minutes for the import to complete. You can check the import status by changing the **Module type** filter to **Custom**.
9694

9795
![Check the import status](../images/azureautomation/automationaddmodulepnpposhcustombuildstatus.png)

pages/articles/telemetry.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
By default PnP PowerShell will report its usage anonymously to the PnP team. We collection information about the **version of PnP PowerShell**, the **operation system version** and the **cmdlet** executed. Notice that we will *not* include parameters used and we will *not* include any values of parameters. We will also *not* be able to trace the execution back to the specific tenant it ran on, the organization it was used for or the person it was run by. Having telemtry in place allows us to get insight in the usage of cmdlets and thereby prioritize work towards the most popular cmdlets.
44

5-
To query if in a connected PnP PowerShell session the telemetry is enabled, use [Get-PnPPowerShellTelemetryEnabled](../cmdlets/Get-PnPPowerShellTelemetryEnabled.html).
5+
To query if in a connected PnP PowerShell session the telemetry is enabled, use [Get-PnPPowerShellTelemetryEnabled](../cmdlets/Get-PnPPowerShellTelemetryEnabled.md).
66

77
If you wish to control telemetry to be sent, you can use one of the below options.
88

99
## By using PnP PowerShell
10-
You can disable telemetry to be sent by using [Disable-PnPPowerShellTelemetry](../cmdlets/Disable-PnPPowerShellTelemetry.html).
11-
You can enable telemetry to be sent by using [Enable-PnPPowerShellTelemetry](../cmdlets/Enable-PnPPowerShellTelemetry.html).
10+
You can disable telemetry to be sent by using [Disable-PnPPowerShellTelemetry](../cmdlets/Disable-PnPPowerShellTelemetry.md).
11+
You can enable telemetry to be sent by using [Enable-PnPPowerShellTelemetry](../cmdlets/Enable-PnPPowerShellTelemetry.md).
1212

1313
## By setting an environment variable
1414
To disable telemetry, set the `PNPPOWERSHELL_DISABLETELEMETRY` environment variable to `true`, i.e. by using `$env:PNPPOWERSHELL_DISABLETELEMETRY=$true`. Remove the entry again or set it to `false` to enable telemetry to be sent again.

pages/articles/updatenotifications.md

-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ If you have a script and want to turn off the update check, simply set the follo
99
$env:PNPPOWERSHELL_UPDATECHECK="false"
1010
```
1111

12-
See [Configure PnP PowerShell](configuration.md) for more information on the environment variables you can set.
13-
1412
## When do you receive an update notification
1513

1614
If the major version of your current version is lower than the currently available major version.

0 commit comments

Comments
 (0)