Skip to content

Commit 7954e94

Browse files
Merge pull request SharePoint#8047 from DhurataJ/sdd-dhj-wb1
[BrokenLinksH2] Fix path in link
2 parents fbdcc09 + 9e3cc70 commit 7954e94

File tree

5 files changed

+38
-38
lines changed

5 files changed

+38
-38
lines changed

docs/apis/alm-api-for-spfx-add-ins.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Application Lifecycle Management (ALM) APIs
33
description: ALM APIs provide simple APIs to manage deployment of your SharePoint Framework solutions and add-ins across your tenant.
4-
ms.date: 09/07/2020
4+
ms.date: 06/07/2022
55
ms.prod: sharepoint
66
ms.assetid: fdf7ecb2-8851-425b-b058-3285fba77b68
77
ms.localizationpriority: high
@@ -141,7 +141,7 @@ var result = appManager.Add(filePath);
141141
Add-PnPApp -Path ./sharepoint-solution-package.sppkg
142142
```
143143

144-
> Refer to the [PnP PowerShell documentation](/powershell/module/sharepoint-pnp/add-pnpapp) for complete details and examples on this cmdlet.
144+
> Refer to the [PnP PowerShell documentation](https://pnp.github.io/powershell/cmdlets/Add-PnPApp.html) for complete details and examples on this cmdlet.
145145
146146
# [CLI for Microsoft 365](#tab/o365cli)
147147

@@ -200,7 +200,7 @@ appManager.Deploy('xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx')
200200
Publish-PnPApp -Identity xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx
201201
```
202202

203-
> Refer to the [PnP PowerShell documentation](/powershell/module/sharepoint-pnp/Publish-PnPApp) for complete details and examples on this cmdlet.
203+
> Refer to the [PnP PowerShell documentation](https://pnp.github.io/powershell/cmdlets/Publish-PnPApp.html) for complete details and examples on this cmdlet.
204204
205205
# [CLI for Microsoft 365](#tab/o365cli)
206206

@@ -248,7 +248,7 @@ appManager.Retract('xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx')
248248
Unpublish-PnPApp -Identity xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx
249249
```
250250

251-
> Refer to the [PnP PowerShell documentation](/powershell/module/sharepoint-pnp/Unpublish-PnPApp) for complete details and examples on this cmdlet.
251+
> Refer to the [PnP PowerShell documentation](https://pnp.github.io/powershell/cmdlets/Unpublish-PnPApp.html) for complete details and examples on this cmdlet.
252252
253253
# [CLI for Microsoft 365](#tab/o365cli)
254254

@@ -284,7 +284,7 @@ appManager.Remove('xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx')
284284
Remove-PnPApp -Identity xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx
285285
```
286286

287-
> Refer to the [PnP PowerShell documentation](/powershell/module/sharepoint-pnp/Remove-PnPApp) for complete details and examples on this cmdlet.
287+
> Refer to the [PnP PowerShell documentation](https://pnp.github.io/powershell/cmdlets/Remove-PnPApp.html) for complete details and examples on this cmdlet.
288288
289289
# [CLI for Microsoft 365](#tab/o365cli)
290290

@@ -367,7 +367,7 @@ var allAppPackages = appManager.GetAvailable();
367367
Get-PnPApp
368368
```
369369

370-
> Refer to the [PnP PowerShell documentation](/powershell/module/sharepoint-pnp/Get-PnPApp) for complete details and examples on this cmdlet.
370+
> Refer to the [PnP PowerShell documentation](https://pnp.github.io/powershell/cmdlets/Get-PnPApp.html) for complete details and examples on this cmdlet.
371371
372372
# [CLI for Microsoft 365](#tab/o365cli)
373373

@@ -474,7 +474,7 @@ appManager.Install('xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx')
474474
Install-PnPApp -Identity xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx
475475
```
476476

477-
> Refer to the [PnP PowerShell documentation](/powershell/module/sharepoint-pnp/Install-PnPApp) for complete details and examples on this cmdlet.
477+
> Refer to the [PnP PowerShell documentation](https://pnp.github.io/powershell/cmdlets/Install-PnPApp.html) for complete details and examples on this cmdlet.
478478
479479
# [CLI for Microsoft 365](#tab/o365cli)
480480

@@ -522,7 +522,7 @@ if (appPackage.CanUpgrade) {
522522
Update-PnPApp -Identity xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx
523523
```
524524

525-
> Refer to the [PnP PowerShell documentation](/powershell/module/sharepoint-pnp/update-pnpapp) for complete details and examples on this cmdlet.
525+
> Refer to the [PnP PowerShell documentation](https://pnp.github.io/powershell/cmdlets/Update-PnPApp.html) for complete details and examples on this cmdlet.
526526
527527
# [CLI for Microsoft 365](#tab/o365cli)
528528

@@ -569,7 +569,7 @@ appManager.Uninstall('xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx')
569569
Uninstall-PnPApp -Identity xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx
570570
```
571571

572-
> Refer to the [PnP PowerShell documentation](/powershell/module/sharepoint-pnp/Uninstall-PnPApp) for complete details and examples on this cmdlet.
572+
> Refer to the [PnP PowerShell documentation](https://pnp.github.io/powershell/cmdlets/Uninstall-PnPApp.html) for complete details and examples on this cmdlet.
573573
574574
# [CLI for Microsoft 365](#tab/o365cli)
575575

@@ -613,7 +613,7 @@ appManager.SyncToTeams('xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx')
613613
Sync-PnPAppToTeams -Identity xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxx
614614
```
615615

616-
> Refer to the [PnP PowerShell documentation](/powershell/module/sharepoint-pnp/sync-pnpapptoteams) for complete details and examples on this cmdlet.
616+
> Refer to the [PnP PowerShell documentation](https://pnp.github.io/powershell/cmdlets/Sync-PnPAppToTeams.html) for complete details and examples on this cmdlet.
617617
618618
# [CLI for Microsoft 365](#tab/o365cli)
619619

docs/community/contribute.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: SharePoint Developer Community contribution
33
description: Contribution options towards the SharePoint Developer Community.
4-
ms.date: 02/14/2020
4+
ms.date: 06/07/2022
55
ms.prod: sharepoint
66
ms.localizationpriority: medium
77
---
@@ -15,7 +15,7 @@ There are multiple ways to contribute to the SharePoint Developer Community (Sha
1515
* Do a live demo of your sample, solution, or architecture design in the SharePoint community calls.
1616
* Report and fix issues within the GitHub repositories in the [SharePoint GitHub Organization](http://github.com/sharepoint).
1717
* Report issues in the GitHub issue lists to help others find where they can assist.
18-
* Provide input on new feature requests within [SharePoint Developer UserVoice](https://sharepoint.uservoice.com/forums/329220-sharepoint-dev-platform).
18+
* Provide input on new feature requests within [Feedback Portal: SharePoint](https://feedbackportal.microsoft.com/feedback/forum/06735c62-321c-ec11-b6e7-0022481f8472)..
1919

2020
## FAQ
2121

docs/community/open-source-projects.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: SharePoint Developer Community open source projects
33
description: Open-source projects coordinated by the SharePoint PnP initiative
4-
ms.date: 09/07/2020
4+
ms.date: 06/07/2022
55
ms.prod: sharepoint
66
ms.localizationpriority: high
77
---
@@ -13,7 +13,7 @@ There are numerous open-source projects that are coordinated by the SharePoint P
1313
| Repository | Description |
1414
|--------|--------|
1515
| [SharePoint Starter kit](https://github.com/SharePoint/sp-starter-kit) | A starter kit for showing how to extend modern experiences in SharePoint Online by extending them with modern extensibility options. |
16-
| [SharePoint Provisioning Service templates](https://github.com/SharePoint/sp-dev-provisioning-templates) | Tenant templates used by the [SharePoint Provisioning Service](https://provisioning.sharepointpnp.com) to easily provision sample content and structures demonstrating what's possible with modern SharePoint experiences. |
16+
| [SharePoint Provisioning Service templates](https://github.com/SharePoint/sp-dev-provisioning-templates) | Tenant templates used by the [SharePoint Provisioning Service](https://lookbook.microsoft.com/service-description) to easily provision sample content and structures demonstrating what's possible with modern SharePoint experiences. |
1717
| [CLI for Microsoft 365](https://pnp.github.io/cli-microsoft365/) | A cross-platform command-line interface (CLI) that allows users on any platform to manage their Microsoft 365 and SharePoint Framework projects. |
1818
| [Office 365 Developer PnP Core Component](https://github.com/SharePoint/PnP-Sites-Core) | An extension component that encapsulates commonly used remote CSOM/REST operations as reusable extension methods on out-of-the box CSOM objects. |
1919
| [PnP PowerShell cmdlets](/powershell/sharepoint/sharepoint-pnp/sharepoint-pnp-cmdlets) | Allow you to perform complex provisioning and artifact management actions for SharePoint. The commands use CSOM and can work against both SharePoint Online as well as SharePoint on-premises. |

docs/community/repositories.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: SharePoint Developer GitHub repositories
33
description: List of different SharePoint Developer GitHub repositories and their description
4-
ms.date: 03/29/2018
4+
ms.date: 06/07/2022
55
ms.prod: sharepoint
66
ms.localizationpriority: high
77
---
@@ -46,7 +46,7 @@ There are numerous SharePoint Developer GitHub repositories, which all have diff
4646
| [pnp-partner-pack](https://github.com/SharePoint/PnP-Partner-Pack) | Packaged guidance with detailed instructions about setting things up in Office 365 and Azure |
4747
| [pnp-js-core](https://github.com/SharePoint/PnP-JS-Core) | Office Dev PnP Core component for JavaScript |
4848
| [pnp-transformation](https://github.com/SharePoint/PnP-Transformation) | Material specifically for the transformation process. Currently, includes samples around InfoPath replacement and transformation tooling from farm solutions to the add-in model |
49-
| [pnp-js-provisioning](https://github.com/SharePoint/pnp-js-provisioning) | Repository for planned JavaScript provisioning library |
49+
| [pnp-js-provisioning](https://github.com/pnp/sp-js-provisioning) | Repository for planned JavaScript provisioning library |
5050
| [pnp-provisioning-templates](https://github.com/SharePoint/PnP-Provisioning-Templates) | Repository for provisioning templates.
5151
| [pnp-guidance](https://github.com/SharePoint/PnP-Guidance) | Old repository on guidance, presentations, and articles that were partially synced to MSDN |
5252
| [pnp-identitymodel](https://github.com/SharePoint/PnP-IdentityModel) | Open source replacement of Microsoft.IdentityModel.Extensions.dll |

docs/declarative-customization/site-design-pnppowershell.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: SharePoint site design - PnP PowerShell cmdlets
33
description: Use PnP PowerShell cmdlets to create, retrieve, and remove site designs and site scripts.
4-
ms.date: 03/09/2021
4+
ms.date: 06/07/2022
55
ms.localizationpriority: high
66
---
77

@@ -33,27 +33,27 @@ To verify your setup and connection, try using the `Get-PnPSiteScript` cmdlet to
3333

3434
The following cmdlets are available for managing site designs and site scripts from PnP PowerShell:
3535

36-
- [Add-PnPSiteDesign](/powershell/module/sharepoint-pnp/Add-PnPSiteDesign)
37-
- [Add-PnPSiteDesignTask](/powershell/module/sharepoint-pnp/Add-PnPSiteDesignTask)
38-
- [Add-PnPSiteScript](/powershell/module/sharepoint-pnp/Add-PnPSiteScript)
39-
- [Add-PnPSiteScriptPackage](/powershell/module/sharepoint-pnp/Add-PnPSiteScriptPackage)
40-
- [Get-PnPSiteDesign](/powershell/module/sharepoint-pnp/Get-PnPSiteDesign)
41-
- [Get-PnPSiteDesignRights](/powershell/module/sharepoint-pnp/Get-PnPSiteDesignRights)
42-
- [Get-PnPSiteDesignRun](/powershell/module/sharepoint-pnp/Get-PnPSiteDesignRun)
43-
- [Get-PnPSiteDesignRunStatus](/powershell/module/sharepoint-pnp/Get-PnPSiteDesignRunStatus)
44-
- [Get-PnPSiteDesignTask](/powershell/module/sharepoint-pnp/Get-PnPSiteDesignTask)
45-
- [Get-PnPSiteScript](/powershell/module/sharepoint-pnp/Get-PnPSiteScript)
46-
- [Get-PnPSiteScriptFromList](/powershell/module/sharepoint-pnp/Get-PnPSiteScriptFromList)
47-
- [Get-PnPSiteScriptFromWeb](/powershell/module/sharepoint-pnp/Get-PnPSiteScriptFromWeb)
48-
- [Grant-PnPSiteDesignRights](/powershell/module/sharepoint-pnp/Grant-PnPSiteDesignRights)
49-
- [Invoke-PnPSiteDesign](/powershell/module/sharepoint-pnp/Invoke-PnPSiteDesign)
50-
- [Remove-PnPSiteDesign](/powershell/module/sharepoint-pnp/Remove-PnPSiteDesign)
51-
- [Remove-PnPSiteDesignTask](/powershell/module/sharepoint-pnp/Remove-PnPSiteDesignTask)
52-
- [Remove-PnPSiteScript](/powershell/module/sharepoint-pnp/Remove-PnPSiteScript)
53-
- [Revoke-PnPSiteDesignRights](/powershell/module/sharepoint-pnp/Revoke-PnPSiteDesignRights)
54-
- [Set-PnPSiteDesign](/powershell/module/sharepoint-pnp/Set-PnPSiteDesign)
55-
- [Set-PnPSiteScript](/powershell/module/sharepoint-pnp/Set-PnPSiteScript)
56-
- [Set-PnPSiteScriptPackage](/powershell/module/sharepoint-pnp/Set-PnPSiteScriptPackage)
36+
- [Add-PnPSiteDesign](https://pnp.github.io/powershell/cmdlets/Add-PnPSiteDesign.html)
37+
- [Add-PnPSiteDesignTask](https://pnp.github.io/powershell/cmdlets/Add-PnPSiteDesignTask.html)
38+
- [Add-PnPSiteScript](https://pnp.github.io/powershell/cmdlets/Add-PnPSiteScript.html)
39+
- [Add-PnPSiteScriptPackage](https://pnp.github.io/powershell/cmdlets/Add-PnPSiteScriptPackage.html)
40+
- [Get-PnPSiteDesign](https://pnp.github.io/powershell/cmdlets/Get-PnPSiteDesign.html)
41+
- [Get-PnPSiteDesignRights](https://pnp.github.io/powershell/cmdlets/Get-PnPSiteDesignRights.html)
42+
- [Get-PnPSiteDesignRun](https://pnp.github.io/powershell/cmdlets/Get-PnPSiteDesignRun.html)
43+
- [Get-PnPSiteDesignRunStatus](https://pnp.github.io/powershell/cmdlets/Get-PnPSiteDesignRunStatus.html)
44+
- [Get-PnPSiteDesignTask](https://pnp.github.io/powershell/cmdlets/Get-PnPSiteDesignTask.html)
45+
- [Get-PnPSiteScript](https://pnp.github.io/powershell/cmdlets/Get-PnPSiteScript.html)
46+
- [Get-PnPSiteScriptFromList](https://pnp.github.io/powershell/cmdlets/Get-PnPSiteScriptFromList.html)
47+
- [Get-PnPSiteScriptFromWeb](https://pnp.github.io/powershell/cmdlets/Get-PnPSiteScriptFromWeb.html)
48+
- [Grant-PnPSiteDesignRights](https://pnp.github.io/powershell/cmdlets/Grant-PnPSiteDesignRights.html)
49+
- [Invoke-PnPSiteDesign](https://pnp.github.io/powershell/cmdlets/Invoke-PnPSiteDesign.html)
50+
- [Remove-PnPSiteDesign](https://pnp.github.io/powershell/cmdlets/Remove-PnPSiteDesign.html)
51+
- [Remove-PnPSiteDesignTask](https://pnp.github.io/powershell/cmdlets/Remove-PnPSiteDesignTask.html)
52+
- [Remove-PnPSiteScript](https://pnp.github.io/powershell/cmdlets/Remove-PnPSiteScript.html)
53+
- [Revoke-PnPSiteDesignRights](https://pnp.github.io/powershell/cmdlets/Revoke-PnPSiteDesignRights.html)
54+
- [Set-PnPSiteDesign](https://pnp.github.io/powershell/cmdlets/Set-PnPSiteDesign.html)
55+
- [Set-PnPSiteScript](https://pnp.github.io/powershell/cmdlets/Set-PnPSiteScript.html)
56+
- [Set-PnPSiteScriptPackage](https://pnp.github.io/powershell/cmdlets/Set-PnPSiteScriptPackage.html)
5757

5858
## See also
5959

0 commit comments

Comments
 (0)