Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions documentation/Invoke-PnPSiteTemplate.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ This will create two new ExtensibilityHandler objects that are run while provisi

### EXAMPLE 9
```powershell
Invoke-PnPSiteTemplate -Path .\ -InputInstance $template
Invoke-PnPSiteTemplate -InputInstance $template
```

Applies a site template from an in-memory instance of a SiteTemplate type of the PnP Core Component, reading the supporting files, if any, from the current (.\) path. The syntax can be used together with any other supported parameters.
Applies a site template from an in-memory instance of a SiteTemplate type of the PnP Core Component.

### EXAMPLE 10
```powershell
Expand Down
3 changes: 2 additions & 1 deletion documentation/Remove-PnPTenantDeletedSite.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Removes a site collection from the Tenant recycle bin.
## SYNTAX

```powershell
Remove-PnPTenantDeletedSite [-Url] <String> [-Force] [-NoWait] [-Connection <PnPConnection>] [-Verbose]
Remove-PnPTenantDeletedSite [-Identity] <String> [-Force] [-NoWait] [-Connection <PnPConnection>] [-Verbose]
```

## DESCRIPTION
Expand Down Expand Up @@ -50,6 +50,7 @@ Specifies the full URL of the site collection that needs to be deleted.
```yaml
Type: String
Parameter Sets: (All)
Aliases: Url

Required: True
Position: 0
Expand Down
Loading