Manage SharePoint 2013 with PowerShell Web Access


I’ve been using PowerShell for quite a while now, as you may have gathered from some of my previous posts. 🙂 However, I have yet to really dig into PowerShell Web Access (PSWA) with Windows Server 2012. That is, until today.

I have been slowly getting my VM environment up to par on my new Focal Point Solutions laptop, and the last piece that I was hoping to try was PSWA with SP2013. I assumed this would work, but in a few Google searches I had yet to find anyone who had shown any screenshots of this working – so I decided to be that guy.

In the screenshots below, I am running PSWA from Google Chrome on my host (Windows 8) – connecting to a VM running on my local Hyper-V instance. The VM is SP2013 connected to another VM for a domain controller. I’ve got Hyper-V networking set up so that all of my VMs have 10.x.x.x IP addresses and I can access them from my host without issues. For PSWA, I went with the “test” setup by following the instructions here. That is, i am using a test certificate and I am not using the kind of security i would certainly use for a Production environment. It’s my Virtual environment, sue me…

In any case, i literally followed the Technet instructions to get PSWA installed and configured – and then I opened up my browser and entered the URL of http://servername/PSWA and voila – I get a login prompt:

PSWA_Login

Okay that’s cool, so I entered my domain\spfarm account and password and the server name and then i was able to sign in…

Now for the fun I started typing a few things and as you can see, I’m able to access not only the $Host itself (which interestingly enough is v1, not v3) but by adding the Microsoft.SharePoint.PowerShell snapin I can then run my SharePoint Cmdlets like Get-SPFarm and Get-SPSite.

PSWA_Commands

How sweet is that?

RD

Get Available App Templates in SharePoint 2013 (Preview)


I’m starting to dig deeper into SharePoint 2013 Preview, and one of the first things I wanted to do was poke around the Object Model using PowerShell. In doing so, I thought it would be nice to have a quick and easy PowerShell Function to grab all available app templates.

This is actually very simple and is basically identical to the code which would work in SP2010, we simply grab an SPWeb object and then grab the ListTemplates collection.

Here are two examples of how to run it…

This example gets ALL app templates in a web at URL http://sp2013:

Get-SPAppTemplate -WebUrl http://sp2013

This example gets the Asset Library template in a web at URL http://sp2013:

Get-SPAppTemplate -WebUrl http://sp2013 | Where-Object {$_.name -eq "Asset Library"}

Here is the function, which can be run in SP2013 to return all available app/list templates:

function Get-SPAppTemplate {
<#
.Synopsis
	This advanced PowerShell Function retrieves available app/list templates
	in a specified SharePoint Web.
.Description
	This advanced function retrieves an SPWeb object and retrieves all 
	ListTemplates in the collection. Optionally, you can use *-Object cmdlets
	to retrieve a specific template or to select specific fields.
.Example
	C:\PS>Get-SPAppTemplate -WebUrl http://<webUrl> | Where-Object {$_.name -eq "Asset Library"}
	
	This example searches for an App tepmlate with the name "Asset Library."
.Example
	C:\PS>Get-SPAppTemplate -WebUrl http://<webUrl>
	
	This example retrieves all app templates under the webUrl SPWeb.
.Notes
	Name: Get-SPAppTemplate
	Author: Ryan Dennis
	Last Edit: 9/11/2012
	Keywords: Get-SPWeb,Get-SPAppTemplate
.Link
	http://www.sharepointryan.com
 	http://twitter.com/SharePointRyan
#Requires -Version 3.0
#>
[CmdletBinding()]
Param(
[Parameter(Mandatory=$true)][System.String]$WebUrl
)
$Web = Get-SPWeb $WebUrl
$Web.ListTemplates
$Web.Dispose()
}

Index of SharePoint 2013 PowerShell Cmdlets


I will be posting lots of content in the very near future about SharePoint 2013, but I figured I would start with a list of all of the available PowerShell Cmdlets for the Microsoft.SharePoint.PowerShell Snap-in. There were 572 cmdlets for SharePoint 2010, and in the current preview build there are 712 cmdlets for SharePoint 2013.

Here is the list of all available cmdlets:

Add-SPAppDeniedEndpoint                                                                                                
Add-SPClaimTypeMapping                                                                                                 
Add-SPDiagnosticsPerformanceCounter                                                                                    
Add-SPDistributedCacheServiceInstanceOnLocalServer                                                                     
Add-SPEduClassMember                                                                                                   
Add-SPEduUser                                                                                                          
Add-SPInfoPathUserAgent                                                                                                
Add-SPPluggableSecurityTrimmer                                                                                         
Add-SPProfileLeader                                                                                                    
Add-SPProfileSyncConnection                                                                                            
Add-SPRoutingMachineInfo                                                                                               
Add-SPRoutingMachinePool                                                                                               
Add-SPRoutingRule                                                                                                      
Add-SPScaleOutDatabase                                                                                                 
Add-SPServerScaleOutDatabase                                                                                           
Add-SPServiceApplicationProxyGroupMember                                                                               
Add-SPShellAdmin                                                                                                       
Add-SPSiteSubscriptionFeaturePackMember                                                                                
Add-SPSiteSubscriptionProfileConfig                                                                                    
Add-SPSocialAppPermissions                                                                                             
Add-SPSolution                                                                                                         
Add-SPThrottlingRule                                                                                                   
Add-SPUserLicenseMapping                                                                                               
Add-SPUserSolution                                                                                                     
Backup-SPConfigurationDatabase                                                                                         
Backup-SPEnterpriseSearchServiceApplicationIndex                                                                       
Backup-SPFarm                                                                                                          
Backup-SPSite                                                                                                          
Clear-SPAppDeniedEndpoints                                                                                             
Clear-SPBusinessDataCatalogEntityNotificationWeb                                                                       
Clear-SPDistributedCacheItem                                                                                           
Clear-SPLogLevel                                                                                                       
Clear-SPMetadataWebServicePartitionData                                                                                
Clear-SPPerformancePointServiceApplicationTrustedLocation                                                              
Clear-SPScaleOutDatabaseDeletedDataSubRange                                                                            
Clear-SPScaleOutDatabaseLog                                                                                            
Clear-SPScaleOutDatabaseTenantData                                                                                     
Clear-SPSecureStoreCredentialMapping                                                                                   
Clear-SPSecureStoreDefaultProvider                                                                                     
Clear-SPServerScaleOutDatabaseDeletedDataSubRange                                                                      
Clear-SPServerScaleOutDatabaseLog                                                                                      
Clear-SPServerScaleOutDatabaseTenantData                                                                               
Clear-SPSiteSubscriptionBusinessDataCatalogConfig                                                                      
Connect-SPConfigurationDatabase                                                                                        
Convert-SPWebApplication                                                                                               
Copy-LocalActivitiesToWorkflowService                                                                                  
Copy-SPBusinessDataCatalogAclToChildren                                                                                
Copy-SPSite                                                                                                            
Disable-SPAppAutoProvision                                                                                             
Disable-SPBusinessDataCatalogEntity                                                                                    
Disable-SPFeature                                                                                                      
Disable-SPHealthAnalysisRule                                                                                           
Disable-SPSessionStateService                                                                                          
Disable-SPSingleSignOn                                                                                                 
Disable-SPTimerJob                                                                                                     
Disable-SPUserLicensing                                                                                                
Disable-SPWebApplicationHttpThrottling                                                                                 
Disconnect-SPConfigurationDatabase                                                                                     
Dismount-SPContentDatabase                                                                                             
Dismount-SPStateServiceDatabase                                                                                        
Enable-SPAppAutoProvision                                                                                              
Enable-SPBusinessDataCatalogEntity                                                                                     
Enable-SPFeature                                                                                                       
Enable-SPHealthAnalysisRule                                                                                            
Enable-SPSessionStateService                                                                                           
Enable-SPTimerJob                                                                                                      
Enable-SPUserLicensing                                                                                                 
Enable-SPWebApplicationHttpThrottling                                                                                  
Export-SPAppPackage                                                                                                    
Export-SPBusinessDataCatalogModel                                                                                      
Export-SPEnterpriseSearchTopology                                                                                      
Export-SPInfoPathAdministrationFiles                                                                                   
Export-SPMetadataWebServicePartitionData                                                                               
Export-SPPerformancePointContent                                                                                       
Export-SPScaleOutDatabaseTenantData                                                                                    
Export-SPServerScaleOutDatabaseTenantData                                                                              
Export-SPSiteSubscriptionBusinessDataCatalogConfig                                                                     
Export-SPSiteSubscriptionSettings                                                                                      
Export-SPWeb                                                                                                           
Get-SPAlternateURL                                                                                                     
Get-SPAppAcquisitionSettings                                                                                           
Get-SPAppAutoProvisionConnection                                                                                       
Get-SPAppDeniedEndpoints                                                                                               
Get-SPAppDisableSettings                                                                                               
Get-SPAppDomain                                                                                                        
Get-SPAppHostingQuotas                                                                                                 
Get-SPAppInstance                                                                                                      
Get-SPAppMarketplaceSettings                                                                                           
Get-SPAppPrincipal                                                                                                     
Get-SPAppScaleProfile                                                                                                  
Get-SPAppSiteSubscriptionName                                                                                          
Get-SPAppStateSyncLastRunTime                                                                                          
Get-SPAppStateUpdateInterval                                                                                           
Get-SPAuthenticationProvider                                                                                           
Get-SPAuthenticationRealm                                                                                              
Get-SPBackupHistory                                                                                                    
Get-SPBingMapsBlockInAllLocales                                                                                        
Get-SPBingMapsKey                                                                                                      
Get-SPBrowserCustomerExperienceImprovementProgram                                                                      
Get-SPBusinessDataCatalogEntityNotificationWeb                                                                         
Get-SPBusinessDataCatalogMetadataObject                                                                                
Get-SPBusinessDataCatalogThrottleConfig                                                                                
Get-SPCertificateAuthority                                                                                             
Get-SPClaimProvider                                                                                                    
Get-SPClaimProviderManager                                                                                             
Get-SPClaimTypeEncoding                                                                                                
Get-SPContentDatabase                                                                                                  
Get-SPContentDeploymentJob                                                                                             
Get-SPContentDeploymentPath                                                                                            
Get-SPCustomLayoutsPage                                                                                                
Get-SPDatabase                                                                                                         
Get-SPDataConnectionFile                                                                                               
Get-SPDataConnectionFileDependent                                                                                      
Get-SPDeletedSite                                                                                                      
Get-SPDesignerSettings                                                                                                 
Get-SPDiagnosticConfig                                                                                                 
Get-SPDiagnosticsPerformanceCounter                                                                                    
Get-SPDiagnosticsProvider                                                                                              
Get-SPDistributedCacheClientSetting                                                                                    
Get-SPEduServiceSetting                                                                                                
Get-SPEnterpriseSearchAdministrationComponent                                                                          
Get-SPEnterpriseSearchComponent                                                                                        
Get-SPEnterpriseSearchContentEnrichmentConfiguration                                                                   
Get-SPEnterpriseSearchCrawlContentSource                                                                               
Get-SPEnterpriseSearchCrawlCustomConnector                                                                             
Get-SPEnterpriseSearchCrawlDatabase                                                                                    
Get-SPEnterpriseSearchCrawlExtension                                                                                   
Get-SPEnterpriseSearchCrawlLogReadPermission                                                                           
Get-SPEnterpriseSearchCrawlMapping                                                                                     
Get-SPEnterpriseSearchCrawlRule                                                                                        
Get-SPEnterpriseSearchFileFormat                                                                                       
Get-SPEnterpriseSearchHostController                                                                                   
Get-SPEnterpriseSearchLanguageResourcePhrase                                                                           
Get-SPEnterpriseSearchLinguisticComponentsStatus                                                                       
Get-SPEnterpriseSearchLinksDatabase                                                                                    
Get-SPEnterpriseSearchMetadataCategory                                                                                 
Get-SPEnterpriseSearchMetadataCrawledProperty                                                                          
Get-SPEnterpriseSearchMetadataManagedProperty                                                                          
Get-SPEnterpriseSearchMetadataMapping                                                                                  
Get-SPEnterpriseSearchOwner                                                                                            
Get-SPEnterpriseSearchPropertyRule                                                                                     
Get-SPEnterpriseSearchPropertyRuleCollection                                                                           
Get-SPEnterpriseSearchQueryAndSiteSettingsService                                                                      
Get-SPEnterpriseSearchQueryAndSiteSettingsServiceInstance                                                              
Get-SPEnterpriseSearchQueryAndSiteSettingsServiceProxy                                                                 
Get-SPEnterpriseSearchQueryAuthority                                                                                   
Get-SPEnterpriseSearchQueryDemoted                                                                                     
Get-SPEnterpriseSearchQueryKeyword                                                                                     
Get-SPEnterpriseSearchQueryScope                                                                                       
Get-SPEnterpriseSearchQueryScopeRule                                                                                   
Get-SPEnterpriseSearchQuerySpellingCorrection                                                                          
Get-SPEnterpriseSearchQuerySuggestionCandidates                                                                        
Get-SPEnterpriseSearchRankingModel                                                                                     
Get-SPEnterpriseSearchResultItemType                                                                                   
Get-SPEnterpriseSearchSecurityTrimmer                                                                                  
Get-SPEnterpriseSearchService                                                                                          
Get-SPEnterpriseSearchServiceApplication                                                                               
Get-SPEnterpriseSearchServiceApplicationBackupStore                                                                    
Get-SPEnterpriseSearchServiceApplicationProxy                                                                          
Get-SPEnterpriseSearchServiceInstance                                                                                  
Get-SPEnterpriseSearchSiteHitRule                                                                                      
Get-SPEnterpriseSearchStatus                                                                                           
Get-SPEnterpriseSearchTopology                                                                                         
Get-SPEnterpriseSearchVssDataPath                                                                                      
Get-SPFarm                                                                                                             
Get-SPFarmConfig                                                                                                       
Get-SPFeature                                                                                                          
Get-SPHealthAnalysisRule                                                                                               
Get-SPHelpCollection                                                                                                   
Get-SPInfoPathFormsService                                                                                             
Get-SPInfoPathFormTemplate                                                                                             
Get-SPInfoPathUserAgent                                                                                                
Get-SPInfoPathWebServiceProxy                                                                                          
Get-SPInternalAppStateSyncLastRunTime                                                                                  
Get-SPInternalAppStateUpdateInterval                                                                                   
Get-SPIRMSettings                                                                                                      
Get-SPLogEvent                                                                                                         
Get-SPLogLevel                                                                                                         
Get-SPManagedAccount                                                                                                   
Get-SPManagedPath                                                                                                      
Get-SPMetadataServiceApplication                                                                                       
Get-SPMetadataServiceApplicationProxy                                                                                  
Get-SPMobileMessagingAccount                                                                                           
Get-SPODataConnectionSetting                                                                                           
Get-SPODataConnectionSettingMetadata                                                                                   
Get-SPOfficeStoreAppsDefaultActivation                                                                                 
Get-SPPendingUpgradeActions                                                                                            
Get-SPPerformancePointServiceApplication                                                                               
Get-SPPerformancePointServiceApplicationTrustedLocation                                                                
Get-SPPluggableSecurityTrimmer                                                                                         
Get-SPProcessAccount                                                                                                   
Get-SPProduct                                                                                                          
Get-SPProfileLeader                                                                                                    
Get-SPProfileServiceApplicationSecurity                                                                                
Get-SPRequestManagementSettings                                                                                        
Get-SPRoutingMachineInfo                                                                                               
Get-SPRoutingMachinePool                                                                                               
Get-SPRoutingRule                                                                                                      
Get-SPScaleOutDatabase                                                                                                 
Get-SPScaleOutDatabaseDataState                                                                                        
Get-SPScaleOutDatabaseInconsistency                                                                                    
Get-SPScaleOutDatabaseLogEntry                                                                                         
Get-SPSecureStoreApplication                                                                                           
Get-SPSecureStoreSystemAccounts                                                                                        
Get-SPSecurityTokenServiceConfig                                                                                       
Get-SPServer                                                                                                           
Get-SPServerScaleOutDatabase                                                                                           
Get-SPServerScaleOutDatabaseDataState                                                                                  
Get-SPServerScaleOutDatabaseInconsistency                                                                              
Get-SPServerScaleOutDatabaseLogEntry                                                                                   
Get-SPServiceApplication                                                                                               
Get-SPServiceApplicationEndpoint                                                                                       
Get-SPServiceApplicationPool                                                                                           
Get-SPServiceApplicationProxy                                                                                          
Get-SPServiceApplicationProxyGroup                                                                                     
Get-SPServiceApplicationSecurity                                                                                       
Get-SPServiceContext                                                                                                   
Get-SPServiceHostConfig                                                                                                
Get-SPServiceInstance                                                                                                  
Get-SPSessionStateService                                                                                              
Get-SPShellAdmin                                                                                                       
Get-SPSite                                                                                                             
Get-SPSiteAdministration                                                                                               
Get-SPSiteSubscription                                                                                                 
Get-SPSiteSubscriptionConfig                                                                                           
Get-SPSiteSubscriptionEdiscoveryHub                                                                                    
Get-SPSiteSubscriptionEdiscoverySearchScope                                                                            
Get-SPSiteSubscriptionFeaturePack                                                                                      
Get-SPSiteSubscriptionIRMConfig                                                                                        
Get-SPSiteSubscriptionMetadataConfig                                                                                   
Get-SPSiteUpgradeSessionInfo                                                                                           
Get-SPSiteURL                                                                                                          
Get-SPSolution                                                                                                         
Get-SPStateServiceApplication                                                                                          
Get-SPStateServiceApplicationProxy                                                                                     
Get-SPStateServiceDatabase                                                                                             
Get-SPTaxonomySession                                                                                                  
Get-SPThrottlingRule                                                                                                   
Get-SPTimerJob                                                                                                         
Get-SPTopologyServiceApplication                                                                                       
Get-SPTopologyServiceApplicationProxy                                                                                  
Get-SPTrustedIdentityTokenIssuer                                                                                       
Get-SPTrustedRootAuthority                                                                                             
Get-SPTrustedSecurityTokenIssuer                                                                                       
Get-SPTrustedSecurityTokenService                                                                                      
Get-SPTrustedServiceTokenIssuer                                                                                        
Get-SPUpgradeActions                                                                                                   
Get-SPUsageApplication                                                                                                 
Get-SPUsageDefinition                                                                                                  
Get-SPUsageService                                                                                                     
Get-SPUser                                                                                                             
Get-SPUserLicense                                                                                                      
Get-SPUserLicenseMapping                                                                                               
Get-SPUserLicensing                                                                                                    
Get-SPUserSettingsProvider                                                                                             
Get-SPUserSettingsProviderManager                                                                                      
Get-SPUserSolution                                                                                                     
Get-SPWeb                                                                                                              
Get-SPWebApplication                                                                                                   
Get-SPWebApplicationHttpThrottlingMonitor                                                                              
Get-SPWebPartPack                                                                                                      
Get-SPWebTemplate                                                                                                      
Get-SPWOPIBinding                                                                                                      
Get-SPWOPISuppressionSetting                                                                                           
Get-SPWOPIZone                                                                                                         
Get-SPWorkflowConfig                                                                                                   
Get-TranslationThrottlingSettings                                                                                      
Get-WorkflowServiceApplicationProxy                                                                                    
Grant-SPBusinessDataCatalogMetadataObject                                                                              
Grant-SPObjectSecurity                                                                                                 
Import-SPAppPackage                                                                                                    
Import-SPBusinessDataCatalogDotNetAssembly                                                                             
Import-SPBusinessDataCatalogModel                                                                                      
Import-SPEnterpriseSearchCustomExtractionDictionary                                                                    
Import-SPEnterpriseSearchPopularQueries                                                                                
Import-SPEnterpriseSearchThesaurus                                                                                     
Import-SPEnterpriseSearchTopology                                                                                      
Import-SPInfoPathAdministrationFiles                                                                                   
Import-SPMetadataWebServicePartitionData                                                                               
Import-SPPerformancePointContent                                                                                       
Import-SPScaleOutDatabaseTenantData                                                                                    
Import-SPServerScaleOutDatabaseTenantData                                                                              
Import-SPSiteSubscriptionBusinessDataCatalogConfig                                                                     
Import-SPSiteSubscriptionSettings                                                                                      
Import-SPWeb                                                                                                           
Initialize-SPResourceSecurity                                                                                          
Initialize-SPStateServiceDatabase                                                                                      
Install-SPApp                                                                                                          
Install-SPApplicationContent                                                                                           
Install-SPDataConnectionFile                                                                                           
Install-SPEduSites                                                                                                     
Install-SPFeature                                                                                                      
Install-SPHelpCollection                                                                                               
Install-SPService                                                                                                      
Install-SPSolution                                                                                                     
Install-SPUserSolution                                                                                                 
Install-SPWebPartPack                                                                                                  
Merge-SPLogFile                                                                                                        
Mount-SPContentDatabase                                                                                                
Mount-SPStateServiceDatabase                                                                                           
Move-SPBlobStorageLocation                                                                                             
Move-SPDeletedSite                                                                                                     
Move-SPProfileManagedMetadataProperty                                                                                  
Move-SPSite                                                                                                            
Move-SPSocialComments                                                                                                  
Move-SPUser                                                                                                            
New-SPAlternateURL                                                                                                     
New-SPAppManagementServiceApplication                                                                                  
New-SPAppManagementServiceApplicationProxy                                                                             
New-SPAuthenticationProvider                                                                                           
New-SPAzureAccessControlServiceApplicationProxy                                                                        
New-SPBECWebServiceApplicationProxy                                                                                    
New-SPBusinessDataCatalogServiceApplication                                                                            
New-SPBusinessDataCatalogServiceApplicationProxy                                                                       
New-SPCentralAdministration                                                                                            
New-SPClaimProvider                                                                                                    
New-SPClaimsPrincipal                                                                                                  
New-SPClaimTypeEncoding                                                                                                
New-SPClaimTypeMapping                                                                                                 
New-SPConfigurationDatabase                                                                                            
New-SPContentDatabase                                                                                                  
New-SPContentDeploymentJob                                                                                             
New-SPContentDeploymentPath                                                                                            
New-SPEduClass                                                                                                         
New-SPEnterpriseSearchAdminComponent                                                                                   
New-SPEnterpriseSearchAnalyticsProcessingComponent                                                                     
New-SPEnterpriseSearchContentEnrichmentConfiguration                                                                   
New-SPEnterpriseSearchContentProcessingComponent                                                                       
New-SPEnterpriseSearchCrawlComponent                                                                                   
New-SPEnterpriseSearchCrawlContentSource                                                                               
New-SPEnterpriseSearchCrawlCustomConnector                                                                             
New-SPEnterpriseSearchCrawlDatabase                                                                                    
New-SPEnterpriseSearchCrawlExtension                                                                                   
New-SPEnterpriseSearchCrawlMapping                                                                                     
New-SPEnterpriseSearchCrawlRule                                                                                        
New-SPEnterpriseSearchFileFormat                                                                                       
New-SPEnterpriseSearchIndexComponent                                                                                   
New-SPEnterpriseSearchLanguageResourcePhrase                                                                           
New-SPEnterpriseSearchLinksDatabase                                                                                    
New-SPEnterpriseSearchMetadataCategory                                                                                 
New-SPEnterpriseSearchMetadataCrawledProperty                                                                          
New-SPEnterpriseSearchMetadataManagedProperty                                                                          
New-SPEnterpriseSearchMetadataMapping                                                                                  
New-SPEnterpriseSearchQueryAuthority                                                                                   
New-SPEnterpriseSearchQueryDemoted                                                                                     
New-SPEnterpriseSearchQueryKeyword                                                                                     
New-SPEnterpriseSearchQueryProcessingComponent                                                                         
New-SPEnterpriseSearchQueryScope                                                                                       
New-SPEnterpriseSearchQueryScopeRule                                                                                   
New-SPEnterpriseSearchRankingModel                                                                                     
New-SPEnterpriseSearchResultItemType                                                                                   
New-SPEnterpriseSearchSecurityTrimmer                                                                                  
New-SPEnterpriseSearchServiceApplication                                                                               
New-SPEnterpriseSearchServiceApplicationProxy                                                                          
New-SPEnterpriseSearchSiteHitRule                                                                                      
New-SPEnterpriseSearchTopology                                                                                         
New-SPLogFile                                                                                                          
New-SPManagedAccount                                                                                                   
New-SPManagedPath                                                                                                      
New-SPMarketplaceWebServiceApplicationProxy                                                                            
New-SPMetadataServiceApplication                                                                                       
New-SPMetadataServiceApplicationProxy                                                                                  
New-SPODataConnectionSetting                                                                                           
New-SPPerformancePointServiceApplication                                                                               
New-SPPerformancePointServiceApplicationProxy                                                                          
New-SPPerformancePointServiceApplicationTrustedLocation                                                                
New-SPPowerPointConversionServiceApplication                                                                           
New-SPPowerPointConversionServiceApplicationProxy                                                                      
New-SPProfileServiceApplication                                                                                        
New-SPProfileServiceApplicationProxy                                                                                   
New-SPRequestManagementRuleCriteria                                                                                    
New-SPSecureStoreApplication                                                                                           
New-SPSecureStoreApplicationField                                                                                      
New-SPSecureStoreServiceApplication                                                                                    
New-SPSecureStoreServiceApplicationProxy                                                                               
New-SPSecureStoreTargetApplication                                                                                     
New-SPServiceApplicationPool                                                                                           
New-SPServiceApplicationProxyGroup                                                                                     
New-SPSite                                                                                                             
New-SPSiteSubscription                                                                                                 
New-SPSiteSubscriptionFeaturePack                                                                                      
New-SPStateServiceApplication                                                                                          
New-SPStateServiceApplicationProxy                                                                                     
New-SPStateServiceDatabase                                                                                             
New-SPSubscriptionSettingsServiceApplication                                                                           
New-SPSubscriptionSettingsServiceApplicationProxy                                                                      
New-SPTranslationServiceApplication                                                                                    
New-SPTranslationServiceApplicationProxy                                                                               
New-SPTrustedIdentityTokenIssuer                                                                                       
New-SPTrustedRootAuthority                                                                                             
New-SPTrustedSecurityTokenIssuer                                                                                       
New-SPTrustedSecurityTokenService                                                                                      
New-SPTrustedServiceTokenIssuer                                                                                        
New-SPUsageApplication                                                                                                 
New-SPUsageLogFile                                                                                                     
New-SPUser                                                                                                             
New-SPUserLicenseMapping                                                                                               
New-SPUserSettingsProvider                                                                                             
New-SPWeb                                                                                                              
New-SPWebApplication                                                                                                   
New-SPWebApplicationExtension                                                                                          
New-SPWOPIBinding                                                                                                      
New-SPWOPISuppressionSetting                                                                                           
New-SPWordConversionServiceApplication                                                                                 
New-SPWorkManagementServiceApplication                                                                                 
New-SPWorkManagementServiceApplicationProxy                                                                            
New-WorkflowServiceApplicationProxy                                                                                    
Publish-SPServiceApplication                                                                                           
Receive-SPServiceApplicationConnectionInfo                                                                             
Register-SPAppPrincipal                                                                                                
Register-SPWorkflowService                                                                                             
Remove-SPActivityFeedItems                                                                                             
Remove-SPAlternateURL                                                                                                  
Remove-SPAppDeniedEndpoint                                                                                             
Remove-SPAppPrincipalPermission                                                                                        
Remove-SPBusinessDataCatalogModel                                                                                      
Remove-SPClaimProvider                                                                                                 
Remove-SPClaimTypeMapping                                                                                              
Remove-SPConfigurationDatabase                                                                                         
Remove-SPContentDatabase                                                                                               
Remove-SPContentDeploymentJob                                                                                          
Remove-SPContentDeploymentPath                                                                                         
Remove-SPDeletedSite                                                                                                   
Remove-SPDiagnosticsPerformanceCounter                                                                                 
Remove-SPDistributedCacheServiceInstanceOnLocalServer                                                                  
Remove-SPEduClassMember                                                                                                
Remove-SPEnterpriseSearchComponent                                                                                     
Remove-SPEnterpriseSearchContentEnrichmentConfiguration                                                                
Remove-SPEnterpriseSearchCrawlContentSource                                                                            
Remove-SPEnterpriseSearchCrawlCustomConnector                                                                          
Remove-SPEnterpriseSearchCrawlDatabase                                                                                 
Remove-SPEnterpriseSearchCrawlExtension                                                                                
Remove-SPEnterpriseSearchCrawlLogReadPermission                                                                        
Remove-SPEnterpriseSearchCrawlMapping                                                                                  
Remove-SPEnterpriseSearchCrawlRule                                                                                     
Remove-SPEnterpriseSearchFileFormat                                                                                    
Remove-SPEnterpriseSearchLanguageResourcePhrase                                                                        
Remove-SPEnterpriseSearchLinksDatabase                                                                                 
Remove-SPEnterpriseSearchMetadataCategory                                                                              
Remove-SPEnterpriseSearchMetadataManagedProperty                                                                       
Remove-SPEnterpriseSearchMetadataMapping                                                                               
Remove-SPEnterpriseSearchQueryAuthority                                                                                
Remove-SPEnterpriseSearchQueryDemoted                                                                                  
Remove-SPEnterpriseSearchQueryKeyword                                                                                  
Remove-SPEnterpriseSearchQueryScope                                                                                    
Remove-SPEnterpriseSearchQueryScopeRule                                                                                
Remove-SPEnterpriseSearchRankingModel                                                                                  
Remove-SPEnterpriseSearchResultItemType                                                                                
Remove-SPEnterpriseSearchSecurityTrimmer                                                                               
Remove-SPEnterpriseSearchServiceApplication                                                                            
Remove-SPEnterpriseSearchServiceApplicationProxy                                                                       
Remove-SPEnterpriseSearchServiceApplicationSiteSettings                                                                
Remove-SPEnterpriseSearchSiteHitRule                                                                                   
Remove-SPEnterpriseSearchTenantConfiguration                                                                           
Remove-SPEnterpriseSearchTenantSchema                                                                                  
Remove-SPEnterpriseSearchTopology                                                                                      
Remove-SPInfoPathUserAgent                                                                                             
Remove-SPManagedAccount                                                                                                
Remove-SPManagedPath                                                                                                   
Remove-SPODataConnectionSetting                                                                                        
Remove-SPPerformancePointServiceApplication                                                                            
Remove-SPPerformancePointServiceApplicationProxy                                                                       
Remove-SPPerformancePointServiceApplicationTrustedLocation                                                             
Remove-SPPluggableSecurityTrimmer                                                                                      
Remove-SPProfileLeader                                                                                                 
Remove-SPProfileSyncConnection                                                                                         
Remove-SPRoutingMachineInfo                                                                                            
Remove-SPRoutingMachinePool                                                                                            
Remove-SPRoutingRule                                                                                                   
Remove-SPScaleOutDatabase                                                                                              
Remove-SPSecureStoreApplication                                                                                        
Remove-SPServerScaleOutDatabase                                                                                        
Remove-SPServiceApplication                                                                                            
Remove-SPServiceApplicationPool                                                                                        
Remove-SPServiceApplicationProxy                                                                                       
Remove-SPServiceApplicationProxyGroup                                                                                  
Remove-SPServiceApplicationProxyGroupMember                                                                            
Remove-SPShellAdmin                                                                                                    
Remove-SPSite                                                                                                          
Remove-SPSiteSubscription                                                                                              
Remove-SPSiteSubscriptionBusinessDataCatalogConfig                                                                     
Remove-SPSiteSubscriptionFeaturePack                                                                                   
Remove-SPSiteSubscriptionFeaturePackMember                                                                             
Remove-SPSiteSubscriptionMetadataConfig                                                                                
Remove-SPSiteSubscriptionProfileConfig                                                                                 
Remove-SPSiteSubscriptionSettings                                                                                      
Remove-SPSiteUpgradeSessionInfo                                                                                        
Remove-SPSiteURL                                                                                                       
Remove-SPSocialAppPermissions                                                                                          
Remove-SPSocialItemByDate                                                                                              
Remove-SPSolution                                                                                                      
Remove-SPSolutionDeploymentLock                                                                                        
Remove-SPStateServiceDatabase                                                                                          
Remove-SPThrottlingRule                                                                                                
Remove-SPTranslationServiceJobHistory                                                                                  
Remove-SPTrustedIdentityTokenIssuer                                                                                    
Remove-SPTrustedRootAuthority                                                                                          
Remove-SPTrustedSecurityTokenIssuer                                                                                    
Remove-SPTrustedSecurityTokenService                                                                                   
Remove-SPTrustedServiceTokenIssuer                                                                                     
Remove-SPUsageApplication                                                                                              
Remove-SPUser                                                                                                          
Remove-SPUserLicenseMapping                                                                                            
Remove-SPUserSettingsProvider                                                                                          
Remove-SPUserSolution                                                                                                  
Remove-SPWeb                                                                                                           
Remove-SPWebApplication                                                                                                
Remove-SPWOPIBinding                                                                                                   
Remove-SPWOPISuppressionSetting                                                                                        
Remove-SPWordConversionServiceJobHistory                                                                               
Rename-SPServer                                                                                                        
Repair-SPManagedAccountDeployment                                                                                      
Repair-SPSite                                                                                                          
Repartition-SPEnterpriseSearchLinksDatabases                                                                           
Request-SPUpgradeEvaluationSite                                                                                        
Restart-SPAppInstanceJobs                                                                                              
Restore-SPDeletedSite                                                                                                  
Restore-SPEnterpriseSearchServiceApplication                                                                           
Restore-SPEnterpriseSearchServiceApplicationIndex                                                                      
Restore-SPFarm                                                                                                         
Restore-SPSite                                                                                                         
Resume-SPEnterpriseSearchServiceApplication                                                                            
Resume-SPStateServiceDatabase                                                                                          
Revoke-SPBusinessDataCatalogMetadataObject                                                                             
Revoke-SPObjectSecurity                                                                                                
Set-SPAlternateURL                                                                                                     
Set-SPAppAcquisitionSettings                                                                                           
Set-SPAppAutoProvisionConnection                                                                                       
Set-SPAppDisableSettings                                                                                               
Set-SPAppDomain                                                                                                        
Set-SPAppHostingQuotas                                                                                                 
Set-SPAppManagementDeploymentId                                                                                        
Set-SPAppMarketplaceSettings                                                                                           
Set-SPAppPrincipalPermission                                                                                           
Set-SPAppScaleProfile                                                                                                  
Set-SPAppSiteSubscriptionName                                                                                          
Set-SPAppStateUpdateInterval                                                                                           
Set-SPAuthenticationRealm                                                                                              
Set-SPBingMapsBlockInAllLocales                                                                                        
Set-SPBingMapsKey                                                                                                      
Set-SPBrowserCustomerExperienceImprovementProgram                                                                      
Set-SPBusinessDataCatalogEntityNotificationWeb                                                                         
Set-SPBusinessDataCatalogMetadataObject                                                                                
Set-SPBusinessDataCatalogServiceApplication                                                                            
Set-SPBusinessDataCatalogThrottleConfig                                                                                
Set-SPCentralAdministration                                                                                            
Set-SPClaimProvider                                                                                                    
Set-SPContentDatabase                                                                                                  
Set-SPContentDeploymentJob                                                                                             
Set-SPContentDeploymentPath                                                                                            
Set-SPCustomLayoutsPage                                                                                                
Set-SPDataConnectionFile                                                                                               
Set-SPDesignerSettings                                                                                                 
Set-SPDiagnosticConfig                                                                                                 
Set-SPDiagnosticsProvider                                                                                              
Set-SPDistributedCacheClientSetting                                                                                    
Set-SPEduServiceSetting                                                                                                
Set-SPEnterpriseSearchAdministrationComponent                                                                          
Set-SPEnterpriseSearchContentEnrichmentConfiguration                                                                   
Set-SPEnterpriseSearchCrawlContentSource                                                                               
Set-SPEnterpriseSearchCrawlDatabase                                                                                    
Set-SPEnterpriseSearchCrawlLogReadPermission                                                                           
Set-SPEnterpriseSearchCrawlRule                                                                                        
Set-SPEnterpriseSearchLinguisticComponentsStatus                                                                       
Set-SPEnterpriseSearchLinksDatabase                                                                                    
Set-SPEnterpriseSearchMetadataCategory                                                                                 
Set-SPEnterpriseSearchMetadataCrawledProperty                                                                          
Set-SPEnterpriseSearchMetadataManagedProperty                                                                          
Set-SPEnterpriseSearchMetadataMapping                                                                                  
Set-SPEnterpriseSearchPrimaryHostController                                                                            
Set-SPEnterpriseSearchQueryAuthority                                                                                   
Set-SPEnterpriseSearchQueryKeyword                                                                                     
Set-SPEnterpriseSearchQueryScope                                                                                       
Set-SPEnterpriseSearchQueryScopeRule                                                                                   
Set-SPEnterpriseSearchQuerySpellingCorrection                                                                          
Set-SPEnterpriseSearchRankingModel                                                                                     
Set-SPEnterpriseSearchResultItemType                                                                                   
Set-SPEnterpriseSearchService                                                                                          
Set-SPEnterpriseSearchServiceApplication                                                                               
Set-SPEnterpriseSearchServiceApplicationProxy                                                                          
Set-SPEnterpriseSearchServiceInstance                                                                                  
Set-SPEnterpriseSearchTopology                                                                                         
Set-SPFarmConfig                                                                                                       
Set-SPInfoPathFormsService                                                                                             
Set-SPInfoPathFormTemplate                                                                                             
Set-SPInfoPathWebServiceProxy                                                                                          
Set-SPInternalAppStateUpdateInterval                                                                                   
Set-SPIRMSettings                                                                                                      
Set-SPLogLevel                                                                                                         
Set-SPManagedAccount                                                                                                   
Set-SPMetadataServiceApplication                                                                                       
Set-SPMetadataServiceApplicationProxy                                                                                  
Set-SPMobileMessagingAccount                                                                                           
Set-SPODataConnectionSetting                                                                                           
Set-SPODataConnectionSettingMetadata                                                                                   
Set-SPOfficeStoreAppsDefaultActivation                                                                                 
Set-SPPassPhrase                                                                                                       
Set-SPPerformancePointSecureDataValues                                                                                 
Set-SPPerformancePointServiceApplication                                                                               
Set-SPPowerPointConversionServiceApplication                                                                           
Set-SPProfileServiceApplication                                                                                        
Set-SPProfileServiceApplicationProxy                                                                                   
Set-SPProfileServiceApplicationSecurity                                                                                
Set-SPRequestManagementSettings                                                                                        
Set-SPRoutingMachineInfo                                                                                               
Set-SPRoutingMachinePool                                                                                               
Set-SPRoutingRule                                                                                                      
Set-SPScaleOutDatabaseDataRange                                                                                        
Set-SPScaleOutDatabaseDataSubRange                                                                                     
Set-SPSecureStoreApplication                                                                                           
Set-SPSecureStoreDefaultProvider                                                                                       
Set-SPSecureStoreServiceApplication                                                                                    
Set-SPSecureStoreSystemAccounts                                                                                        
Set-SPSecurityTokenServiceConfig                                                                                       
Set-SPServerScaleOutDatabaseDataRange                                                                                  
Set-SPServerScaleOutDatabaseDataSubRange                                                                               
Set-SPServiceApplication                                                                                               
Set-SPServiceApplicationEndpoint                                                                                       
Set-SPServiceApplicationPool                                                                                           
Set-SPServiceApplicationSecurity                                                                                       
Set-SPServiceHostConfig                                                                                                
Set-SPSessionStateService                                                                                              
Set-SPSite                                                                                                             
Set-SPSiteAdministration                                                                                               
Set-SPSiteSubscriptionConfig                                                                                           
Set-SPSiteSubscriptionEdiscoveryHub                                                                                    
Set-SPSiteSubscriptionIRMConfig                                                                                        
Set-SPSiteSubscriptionMetadataConfig                                                                                   
Set-SPSiteSubscriptionProfileConfig                                                                                    
Set-SPSiteURL                                                                                                          
Set-SPStateServiceApplication                                                                                          
Set-SPStateServiceApplicationProxy                                                                                     
Set-SPStateServiceDatabase                                                                                             
Set-SPSubscriptionSettingsServiceApplication                                                                           
Set-SPThrottlingRule                                                                                                   
Set-SPTimerJob                                                                                                         
Set-SPTopologyServiceApplication                                                                                       
Set-SPTopologyServiceApplicationProxy                                                                                  
Set-SPTranslationServiceApplication                                                                                    
Set-SPTranslationServiceApplicationProxy                                                                               
Set-SPTrustedIdentityTokenIssuer                                                                                       
Set-SPTrustedRootAuthority                                                                                             
Set-SPTrustedSecurityTokenIssuer                                                                                       
Set-SPTrustedSecurityTokenService                                                                                      
Set-SPTrustedServiceTokenIssuer                                                                                        
Set-SPUsageApplication                                                                                                 
Set-SPUsageDefinition                                                                                                  
Set-SPUsageService                                                                                                     
Set-SPUser                                                                                                             
Set-SPWeb                                                                                                              
Set-SPWebApplication                                                                                                   
Set-SPWebApplicationHttpThrottlingMonitor                                                                              
Set-SPWOPIBinding                                                                                                      
Set-SPWOPIZone                                                                                                         
Set-SPWordConversionServiceApplication                                                                                 
Set-SPWorkflowConfig                                                                                                   
Set-SPWorkManagementServiceApplication                                                                                 
Set-SPWorkManagementServiceApplicationProxy                                                                            
Set-TranslationThrottlingSettings                                                                                      
Split-SPScaleOutDatabase                                                                                               
Split-SPServerScaleOutDatabase                                                                                         
Start-SPAdminJob                                                                                                       
Start-SPAssignment                                                                                                     
Start-SPContentDeploymentJob                                                                                           
Start-SPDiagnosticsSession                                                                                             
Start-SPEnterpriseSearchQueryAndSiteSettingsServiceInstance                                                            
Start-SPEnterpriseSearchServiceInstance                                                                                
Start-SPInfoPathFormTemplate                                                                                           
Start-SPServiceInstance                                                                                                
Start-SPTimerJob                                                                                                       
Stop-SPAssignment                                                                                                      
Stop-SPDiagnosticsSession                                                                                              
Stop-SPDistributedCacheServiceInstanceGracefullyOnLocalServer                                                          
Stop-SPEnterpriseSearchQueryAndSiteSettingsServiceInstance                                                             
Stop-SPEnterpriseSearchServiceInstance                                                                                 
Stop-SPInfoPathFormTemplate                                                                                            
Stop-SPServiceInstance                                                                                                 
Suspend-SPEnterpriseSearchServiceApplication                                                                           
Suspend-SPStateServiceDatabase                                                                                         
Test-SPContentDatabase                                                                                                 
Test-SPInfoPathFormTemplate                                                                                            
Test-SPSite                                                                                                            
Uninstall-SPAppInstance                                                                                                
Uninstall-SPDataConnectionFile                                                                                         
Uninstall-SPFeature                                                                                                    
Uninstall-SPHelpCollection                                                                                             
Uninstall-SPSolution                                                                                                   
Uninstall-SPUserSolution                                                                                               
Uninstall-SPWebPartPack                                                                                                
Unpublish-SPServiceApplication                                                                                         
Update-SPAppCatalogSettings                                                                                            
Update-SPAppInstance                                                                                                   
Update-SPFarmEncryptionKey                                                                                             
Update-SPInfoPathAdminFileUrl                                                                                          
Update-SPInfoPathFormTemplate                                                                                          
Update-SPInfoPathUserFileUrl                                                                                           
Update-SPProfilePhotoStore                                                                                             
Update-SPRepopulateMicroblogFeedCache                                                                                  
Update-SPRepopulateMicroblogLMTCache                                                                                   
Update-SPSecureStoreApplicationServerKey                                                                               
Update-SPSecureStoreCredentialMapping                                                                                  
Update-SPSecureStoreGroupCredentialMapping                                                                             
Update-SPSecureStoreMasterKey                                                                                          
Update-SPSolution                                                                                                      
Update-SPUserSolution                                                                                                  
Update-SPWOPIProofKey                                                                                                  
Upgrade-SPContentDatabase                                                                                              
Upgrade-SPEnterpriseSearchServiceApplication                                                                           
Upgrade-SPEnterpriseSearchServiceApplicationSiteSettings                                                               
Upgrade-SPFarm                                                                                                         
Upgrade-SPSingleSignOnDatabase                                                                                         
Upgrade-SPSite