Skip to content
This repository was archived by the owner on Jan 19, 2021. It is now read-only.

Commit 08eb375

Browse files
Merge pull request #886 from SharePoint/dev
June 2017 Release
2 parents f1ce067 + 398c994 commit 08eb375

File tree

291 files changed

+72499
-240
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

291 files changed

+72499
-240
lines changed

Commands/Admin/GetTenantSite.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ namespace SharePointPnP.PowerShell.Commands
1111
{
1212

1313
[Cmdlet(VerbsCommon.Get, "PnPTenantSite", SupportsShouldProcess = true)]
14-
[CmdletAlias("Get-SPOTenantSite")]
1514
[CmdletHelp(@"Office365 only: Uses the tenant API to retrieve site information.",
1615
Category = CmdletHelpCategory.TenantAdmin,
1716
OutputType = typeof(Microsoft.Online.SharePoint.TenantAdministration.SiteProperties),

Commands/Admin/GetTimeZoneId.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
namespace SharePointPnP.PowerShell.Commands
88
{
99
[Cmdlet(VerbsCommon.Get, "PnPTimeZoneId")]
10-
[CmdletAlias("Get-SPOTimeZoneId")]
1110
[CmdletHelp("Returns a time zone ID",
1211
Category = CmdletHelpCategory.TenantAdmin,
1312
OutputType = typeof(IEnumerable<Zone>),

Commands/Admin/GetWebTemplates.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
namespace SharePointPnP.PowerShell.Commands
88
{
99
[Cmdlet(VerbsCommon.Get, "PnPWebTemplates")]
10-
[CmdletAlias("Get-SPOWebTemplates")]
1110
[CmdletHelp(@"Office365 only: Returns the available web templates.",
1211
Category = CmdletHelpCategory.TenantAdmin,
1312
OutputType=typeof(Microsoft.Online.SharePoint.TenantAdministration.SPOTenantWebTemplateCollection),

Commands/Admin/NewTenantSite.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
namespace SharePointPnP.PowerShell.Commands
1212
{
1313
[Cmdlet(VerbsCommon.New, "PnPTenantSite")]
14-
[CmdletAlias("New-SPOTenantSite")]
1514
[CmdletHelp("Creates a new site collection for the current tenant",
1615
DetailedDescription = @"The New-PnPTenantSite cmdlet creates a new site collection for the current company. However, creating a new SharePoint
1716
Online site collection fails if a deleted site with the same URL exists in the Recycle Bin. If you want to use this command for an on-premises farm, please refer to http://blogs.msdn.com/b/vesku/archive/2014/06/09/provisioning-site-collections-using-sp-app-model-in-on-premises-with-just-csom.aspx ",

Commands/Admin/RemoveTenantSite.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
namespace SharePointPnP.PowerShell.Commands
1111
{
1212
[Cmdlet(VerbsCommon.Remove, "PnPTenantSite", ConfirmImpact = ConfirmImpact.High, SupportsShouldProcess = true)]
13-
[CmdletAlias("Remove-SPOTenantSite")]
1413
[CmdletHelp("Office365 only: Removes a site collection from the current tenant",
1514
Category = CmdletHelpCategory.TenantAdmin)]
1615
[CmdletExample(

Commands/Admin/SetTenantSite.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
namespace SharePointPnP.PowerShell.Commands
1313
{
1414
[Cmdlet(VerbsCommon.Set, "PnPTenantSite")]
15-
[CmdletAlias("Set-SPOTenantSite")]
1615
[CmdletHelp(@"Office365 only: Uses the tenant API to set site information.",
1716
Category = CmdletHelpCategory.TenantAdmin)]
1817
[CmdletExample(

Commands/Apps/GetAppInstance.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
namespace SharePointPnP.PowerShell.Commands.Apps
99
{
1010
[Cmdlet(VerbsCommon.Get, "PnPAppInstance")]
11-
[CmdletAlias("Get-SPOAppInstance")]
1211
[CmdletHelp("Returns a SharePoint AddIn Instance in the site",
1312
Category = CmdletHelpCategory.Apps,
1413
OutputType = typeof(List<AppInstance>),

Commands/Apps/ImportAppPackage.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
namespace SharePointPnP.PowerShell.Commands.Apps
99
{
1010
[Cmdlet(VerbsData.Import, "PnPAppPackage")]
11-
[CmdletAlias("Import-SPOAppPackage")]
1211
[CmdletHelp("Adds a SharePoint Addin to a site",
1312
DetailedDescription = "This commands requires that you have an addin package to deploy",
1413
Category = CmdletHelpCategory.Apps,

Commands/Apps/UninstallAppInstance.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
namespace SharePointPnP.PowerShell.Commands.Apps
77
{
88
[Cmdlet(VerbsLifecycle.Uninstall, "PnPAppInstance", SupportsShouldProcess = true)]
9-
[CmdletAlias("Uninstall-SPOAppInstance")]
109
[CmdletHelp("Removes an app from a site", Category = CmdletHelpCategory.Apps)]
1110
[CmdletExample(Code = @"PS:> Uninstall-PnPAppInstance -Identity $appinstance", Remarks = "Uninstalls the app instance which was retrieved with the command Get-PnPAppInstance", SortOrder = 1)]
1211
[CmdletExample(Code = @"PS:> Uninstall-PnPAppInstance -Identity 99a00f6e-fb81-4dc7-8eac-e09c6f9132fe", Remarks = "Uninstalls the app instance with the ID '99a00f6e-fb81-4dc7-8eac-e09c6f9132fe'", SortOrder = 2)]

Commands/Base/ConnectOnline.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
namespace SharePointPnP.PowerShell.Commands.Base
1717
{
1818
[Cmdlet(VerbsCommunications.Connect, "PnPOnline", SupportsShouldProcess = false)]
19-
[CmdletAlias("Connect-SPOnline")]
2019
[CmdletHelp("Connects to a SharePoint site and creates a context that is required for the other PnP Cmdlets",
2120
DetailedDescription = "If no credentials have been specified, and the CurrentCredentials parameter has not been specified, you will be prompted for credentials.",
2221
Category = CmdletHelpCategory.Base)]

0 commit comments

Comments
 (0)