A.K.A The Communicator
Archive for December, 2010
Automated PowerShell Script to backup SharePoint Farm or Site Collection with email Notification
Dec 7th
In today’s fast paced environment, we really like most of our things to be automated and at the same time get an alert on how things are going, so we can take necessary steps as required. Administering a SharePoint 2010 farm is no different, and as a day to day activity we have to take periodic backups of the entire farm or a particular Site Collection and at the same time be prepared for disaster recovery if required.
I have prepared a small yet powerful PowerShell script for taking a backup of the entire SharePoint 2010 farm and at the same time notifying you via email the outcome of the Script i.e. Was the backup successful or did it fail and the reason why it failed.
Let’s Start
# ==============================================================================================
# NAME: SP2010_Farm_Backup_With_Notification.ps1
# AUTHOR: Mukesh Parmar
# DATE: 07 December 2010
# COMMENT: A Powerful Script to take backup of the entire SharePoint 2010 Farm with email notification.
# Website: http://thecommunicator.co.cc
# ==============================================================================================
Add-PsSnapin Microsoft.SharePoint.Powershell –ErrorAction SilentlyContinue
try
{
$today = (Get-Date -Format dd-MM-yyyy)
#Location of the Backup Folder
[IO.Directory]::CreateDirectory("E:\Backup\DailyFarmBackUp\$today")
# This will actually initiate the SPFarm backup.
Backup-SPFarm -Directory E:\Backup\DailyFarmBackup\$today -BackupMethod full
# Edit the From Address as per your environment.
$emailFrom = "SPADMIN@Sharepoint.com"
# Edit the mail address to which the Notification should be sent.
$emailTo = "Admin@SharePoint.Com"
# Subject for the notification email. The + “$today” part will add the date in the subject.
$subject = "The SharePoint Farm Backup was Successful for "+"$today"
# Body or the notification email. The + “$today” part will add the date in the subject.
$body = "The SharePoint Farm Backup was Successful for "+"$today"
# IP address of your SMTP server. Make sure relay Is enabled for the SharePoint server on your SMTP server
$smtpServer = "192.168.0.0"
$smtp = new-object Net.Mail.SmtpClient($smtpServer)
$smtp.Send($emailFrom, $emailTo, $subject, $body)
}
Catch
{
$ErrorMessage = $_.Exception.Message
# Configure the below parameters as per the above.
$emailFrom = "SPADMIN@Sharepoint.com"
$emailTo = "Admin@SharePoint.Com"
$subject = "The SharePoint Farm Backup Job failed on "+"$today"
$body = "The SharePoint Farm Backup Job failed on "+"$today and the reason for failure was $ErrorMessage."
$smtpServer = "192.168.0.0"
$smtp = new-object Net.Mail.SmtpClient($smtpServer)
$smtp.Send($emailFrom, $emailTo, $subject, $body)
}
A brief on the execution of the above script
- First it will get the current system Date in dd-MM-yyyy format [07-12-2010].
- It will create a folder with Current Date as the name in the following location E:\Backup\DailyFarmBackup\
- Next step will be to start SharePoint 2010 Farm backup procedure in the newly created folder.
- Once the backup is complete it will send a notification email to the email address mentioned in the $emailTo field.
- If the backup fails for some reason, you will receive an email containing the reason why the backup failed.
You can download the above script & the another one for backing up the Site Collection from the following locations
SP2010_Farm_Backup_With_Notification
SP2010_Site_Collection_Backup_With_Notification
Rename the above files extension from .txt to .ps1
Note
- Once you have configured the script as per your environment, create a new task in Task Scheduler for the above script and set it to run as per your requirement.
- Make sure you periodically check the backup folder size as this script will not delete those for you.
- Make sure you provide a valid From/To address and SMTP server IP address, validate these settings by checking with your Exchange Administrator if needed.
- As I have mentioned before the script is very powerful, you can change the task to whatever you like to automate and get an email for failure or success for that particular task.
UserName showing up as DomainName\UserName instead of Full Name in SharePoint 2010
Dec 6th
I have seen a lot of people facing a problem in SharePoint 2010, where the UserName is displayed as DomainName\UserName instead of its Full Name. As a solution a lot of people are suggesting to setup the User Profile Synchronization service, but there are organizations who would not like to use it just to fix this issue.


The above image shows that my UserName which was supposed to be displayed as Mukesh Parmar is shown as SharkHeads\Mukesh. This is not right & I would like it to be displayed correctly and without installing and configuring User Profile Synchronization Service.
Let’s Start
The fact is you really do not need to setup User Profile Synchronization service, just to show the user’s display name right. We can utilize the existing SharePoint 2010 CMDLet Set-SPUser to set the User Properties in SharePoint or force a Manual User Profile Update from AD [Active Directory].
To change the Display Name we will be using the Set-SPUser CMDLet with the following switches.

Set-SPUser -Identity ‘SharkHeads\Mukesh’ -DisplayName ‘Mukesh Parmar’ –Web http://SharePointServer
Or [To force a manual sync for the user properties from AD]
Set-SPUser -Identity ‘SharkHeads\Mukesh’ –Web http://SharePointServer –SyncFromAD .
Change the above user details as per your environment. Once the command is successfully executed, the changes should now reflect on the site as seen below.


You might be thinking, by using the above CMDLet, I can only change one user DisplayName at a time, I have around 100′s of users having the Displayname in the following format DomainName\UserName. How do I fix those?
No need to panic you can use the following to do the same.
Get-SPUser –Web http://SharePointServer | Set-SPUser –SyncFromAD
The above will fix all users display name in that particular Web Application.
Note
Below are few point to consider:-
- When using –SyncFromAD switch, make sure that the Display Name field is set correctly in User Properties of Active Directory.
- This is not an ideal solution if you are frequently adding new users and changing the user properties in AD. Tho you can schedule the above in Task Scheduler as per your requirement.
- The above will not fix the Display Name for all Web Application in your farm, you will need to run the above command separately for all sites or create a script for the same or you can setup the User Profile Synchronization Service.
- For a full list of switches for the Set-SPUser CMDLet you can check the following link.
SharePoint 2010 PowerShell CMDLets Master List
Dec 6th
Master list of all PowerShell CMDLets available for SharePoint 2010 |
| Cmdlet name |
Description |
| Add-SPClaimTypeMapping |
Adds a claim mapping to a trusted security token service (STS) identity provider. |
| Add-SPDiagnosticsPerformanceCounter |
Adds an instance of a performance counter. |
| Add-SPInfoPathUserAgent |
Adds a user agent to a farm. |
| Add-SPServiceApplicationProxyGroupMember |
Adds a member to the service application proxy group. |
| Add-SPShellAdmin |
Adds a user to the SharePoint_Shell_Access role for the specified database. |
| Add-SPSiteSubscriptionFeaturePackMember |
Adds a feature to a SharePoint feature set. |
| Add-SPSiteSubscriptionProfileConfig |
Adds a new site subscription to a User Profile Service application. |
| Add-SPSolution |
Uploads a SharePoint solution package to the farm. |
| Add-SPUserSolution |
Uploads a new sandboxed solution to the solution gallery. |
| Backup-SPConfigurationDatabase |
Performs a farm-level configuration-only backup. |
| Backup-SPFarm |
Creates a backup of an individual database, Web application, or the entire farm. |
| Backup-SPSite |
Performs a backup of a site collection. |
| Clear-SPLogLevel |
Resets the Windows trace logging and event logging levels to their default values. |
| Clear-SPMetadataWebServicePartitionData |
Removes all data for a site subscription on a metadata Web service application |
| Clear-SPPerformancePointServiceApplicationTrustedLocation |
Clears all the trusted locations for a PerformancePoint Services application identity |
| Clear-SPSecureStoreCredentialMapping |
Deletes a credential mapping from a Secure Store Service application. |
| Clear-SPSecureStoreDefaultProvider |
Clears the secure store provider. |
| Clear-SPSiteSubscriptionBusinessDataCatalogConfig |
Deletes all data from the Business Data Connectivity Metadata Store for a specified partition. |
| Connect-SPConfigurationDatabase |
Connects the local server computer to a farm. |
| Copy-SPBusinessDataCatalogAclToChildren |
Copies a set of permissions of a Business Data Connectivity Metadata Store metadata object to its child objects. |
| Disable-SPBusinessDataCatalogEntity |
Deactivates an external content type in the Business Data Connectivity Metadata Store. |
| Disable-SPFeature |
Disables an installed SharePoint feature at a given scope. |
| Disable-SPInfoPathFormTemplate |
Deactivates an InfoPath 2010 form template from the specified site collection. |
| Disable-SPSessionStateService |
Turns off the session state service on the farm |
| Disable-SPSingleSignOn |
Disables the single sign-on (SSO) service on a farm server. |
| Disable-SPTimerJob |
Disables a timer job. |
| Disable-SPWebApplicationHttpThrottling |
Turns off network throttling for a Web application. |
| Disconnect-SPConfigurationDatabase |
Disconnects the local server computer from the farm. |
| Dismount-SPContentDatabase |
Detaches a content database from the Web application it is currently associated with. |
| Dismount-SPStateServiceDatabase |
Removes the association to a state service database from the farm without dropping the database in the Microsoft SQL Server database |
| Enable-SPBusinessDataCatalogEntity |
Activates an external content type in the Business Data Connectivity Metadata Store. |
| Enable-SPFeature |
Enables an installed SharePoint feature at the given scope. |
| Enable-SPInfoPathFormTemplate |
Activates an InfoPath 2010 form template in the specified site collection. |
| Enable-SPSessionStateService |
Creates a session state database and turns on the session state service |
| Enable-SPTimerJob |
Enables a timer job. |
| Enable-SPWebApplicationHttpThrottling |
Turns on network throttling for a Web application. |
| Export-SPBusinessDataCatalogModel |
Exports a Business Data Connectivity Model. |
| Export-SPEnterpriseSearchTopology |
Exports an existing search topology. |
| Export-SPInfoPathAdministrationFiles |
Saves InfoPath 2010 form templates on the SharePoint Central Administration Web site and .udcx files to a .cab file. |
| Export-SPMetadataWebServicePartitionData |
Exports the data from a metadata Web service for a site subscription. |
| Export-SPSiteSubscriptionBusinessDataCatalogConfig |
Exports all data from the Business Data Connectivity Metadata Store associated with a partition. |
| Export-SPSiteSubscriptionSettings |
Creates a backup file of site subscription data. |
| Export-SPWeb |
Exports a site collection, Web application, list, or library. |
| Get-SPAccessServiceApplication |
Returns an Access Services application or a collection of Access Services applications. |
| Get-SPAlternateURL |
Returns all alternate URLs that match a given set of criteria. |
| Get-SPAuthenticationProvider |
Returns an authentication provider. |
| Get-SPBackupHistory |
Returns a history of backup and restore operations. |
| Get-SPBrowserCustomerExperienceImprovementProgram |
Returns the current opt-in state for the browser Customer Experience Improvement Program. |
| Get-SPBusinessDataCatalogMetadataObject |
Returns a Business Data Connectivity Metadata Store metadata object. |
| Get-SPBusinessDataCatalogThrottleConfig |
Returns the throttling configuration for a Business Data Connectivity Service application. |
| Get-SPCertificateAuthority |
Returns the SharePoint certificate authority (CA). |
| Get-SPClaimProvider |
Returns a claim provider. |
| Get-SPClaimProviderManager |
Returns a claim provider manager. |
| Get-SPContentDatabase |
Returns one or more content databases. |
| Get-SPContentDeploymentJob |
Returns a content deployment job or a collection of content deployment jobs. |
| Get-SPContentDeploymentPath |
Returns a content deployment path or a collection of content deployment paths. |
| Get-SPCustomLayoutsPage |
Returns a mapping to a custom layout page. |
| Get-SPDatabase |
Retrieves all properties of a database. |
| Get-SPDataConnectionFile |
Returns a data connection file or a collection of data connection files. |
| Get-SPDataConnectionFileDependent |
Returns deployed forms on the server dependent on a universal data connection. |
| Get-SPDesignerSettings |
Displays Microsoft SharePoint Designer 2010 features. |
| Get-SPDiagnosticConfig |
Retrieves ULS diagnostic configuration values of the farm. |
| Get-SPDiagnosticsPerformanceCounter |
Returns a collection of performance counters. |
| Get-SPDiagnosticsProvider |
Returns a diagnostics provider. |
| Get-SPEnterpriseSearchAdministrationComponent |
Returns the administration component for a search service application. |
| Get-SPEnterpriseSearchCrawlComponent |
Returns a crawl component for a shared search application. |
| Get-SPEnterpriseSearchCrawlContentSource |
Returns a crawl content source. |
| Get-SPEnterpriseSearchCrawlCustomConnector |
Returns a CustomConnector object type. |
| Get-SPEnterpriseSearchCrawlDatabase |
Returns a crawl store. |
| Get-SPEnterpriseSearchCrawlExtension |
Returns the file types to be included in the content index. |
| Get-SPEnterpriseSearchCrawlMapping |
Returns a crawl mapping for the search application. |
| Get-SPEnterpriseSearchCrawlRule |
Accesses crawl rules. |
| Get-SPEnterpriseSearchCrawlTopology |
Returns a crawl topology. |
| Get-SPEnterpriseSearchExtendedClickThroughExtractorJobDefinition |
Gets an object representing the click-through extractor-job instance of a specific FAST Search for SharePoint search service application. |
| Get-SPEnterpriseSearchExtendedConnectorProperty |
Returns the value of the property of the search service application. |
| Get-SPEnterpriseSearchExtendedQueryProperty |
Returns the properties used for connecting SharePoint to a FAST Search for SharePoint service. |
| Get-SPEnterpriseSearchIndexPartition |
Returns an index partition for a query topology. |
| Get-SPEnterpriseSearchLanguageResourcePhrase |
Returns a language resource phrase. |
| Get-SPEnterpriseSearchMetadataCategory |
Returns a crawled property category. |
| Get-SPEnterpriseSearchMetadataCrawledProperty |
Returns a crawled property. |
| Get-SPEnterpriseSearchMetadataManagedProperty |
Returns a managed property. |
| Get-SPEnterpriseSearchMetadataMapping |
Returns the current state of a managed property mapping. |
| Get-SPEnterpriseSearchPropertyDatabase |
Returns a property store. |
| Get-SPEnterpriseSearchQueryAndSiteSettingsService |
Returns the search manager service. |
| Get-SPEnterpriseSearchQueryAndSiteSettingsServiceInstance |
Returns the service manager service instance. |
| Get-SPEnterpriseSearchQueryAndSiteSettingsServiceProxy |
Returns the search manager service proxy. |
| Get-SPEnterpriseSearchQueryAuthority |
Returns an authoritative page. |
| Get-SPEnterpriseSearchQueryComponent |
Returns a query component. |
| Get-SPEnterpriseSearchQueryDemoted |
Returns a demoted site rule. |
| Get-SPEnterpriseSearchQueryKeyword |
Returns a keyword term. |
| Get-SPEnterpriseSearchQueryScope |
Returns a query results scope. |
| Get-SPEnterpriseSearchQueryScopeRule |
Returns a shared scope rule. |
| Get-SPEnterpriseSearchQuerySuggestionCandidates |
Returns a list of queries. |
| Get-SPEnterpriseSearchQueryTopology |
Returns a query topology. |
| Get-SPEnterpriseSearchRankingModel |
Returns a ranking model. |
| Get-SPEnterpriseSearchSecurityTrimmer |
Returns a custom security trimmer. |
| Get-SPEnterpriseSearchService |
Returns the search service for a farm. |
| Get-SPEnterpriseSearchServiceApplication |
Returns the search service application for a farm. |
| Get-SPEnterpriseSearchServiceApplicationProxy |
Returns the search service application proxy. |
| Get-SPEnterpriseSearchServiceInstance |
Returns the search service instance for a farm. |
| Get-SPEnterpriseSearchSiteHitRule |
Returns the shared site hit rule. |
| Get-SPExcelBlockedFileType |
Returns a file type or list of file types that are prevented from being loaded. |
| Get-SPExcelDataConnectionLibrary |
Returns a trusted data connection library or a list of trusted data connection libraries. |
| Get-SPExcelDataProvider |
Returns a safe data provider or a list of safe data providers. |
| Get-SPExcelFileLocation |
Returns a trusted file location or a list of trusted file locations. |
| Get-SPExcelServiceApplication |
Returns an SPExcelServiceApplication object. |
| Get-SPExcelUserDefinedFunction |
Returns a user-defined function or a collection of user-defined functions. |
| Get-SPFarm |
Returns the local SharePoint farm. |
| Get-SPFarmConfig |
Returns a global property or a collection of global properties for the local farm. |
| Get-SPFeature |
Returns the SharePoint features based on a given scope. |
| Get-SPHelpCollection |
Returns Help collection files. |
| Get-SPInfoPathFormsService |
Returns the InfoPath Forms Services in SharePoint Server 2010 settings that are in the farm. |
| Get-SPInfoPathFormTemplate |
Returns an InfoPath 2010 form template. |
| Get-SPInfoPathUserAgent |
Returns a user agent or all the currently defined user agents for the farm. |
| Get-SPInfoPathWebServiceProxy |
Returns the Web proxy settings for the Web application. |
| Get-SPLogEvent |
Returns results from a Unified Logging Service (ULS) trace log. |
| Get-SPLogLevel |
Returns a list of objects or diagnostic levels. |
| Get-SPManagedAccount |
Retrieves accounts registered in the configuration database. |
| Get-SPManagedPath |
Returns all managed paths that match the given criteria. |
| Get-SPMetadataServiceApplication |
Returns the properties of a service application or a collection of service applications. |
| Get-SPMetadataServiceApplicationProxy |
Returns the properties of a service application proxy or a collection of service application proxies. |
| Get-SPMobileMessagingAccount |
Retrieves mobile messaging accounts for the specified Web application. |
| Get-SPPerformancePointSecureDataValues |
Displays unattended service account settings. |
| Get-SPPerformancePointServiceApplication |
Returns a PerformancePoint Service application object and properties. |
| Get-SPPerformancePointServiceApplicationTrustedLocation |
Returns a trusted location object and properties for a PerformancePoint Services application. |
| Get-SPProcessAccount |
Returns a system account or a managed account. |
| Get-SPProduct |
Returns a list of the SharePoint-related products installed in the farm and the versions of all updates installed for each product. |
| Get-SPProfileServiceApplicationSecurity |
Returns permission and identity information. |
| Get-SPSearchService |
Returns a search service. |
| Get-SPSearchServiceInstance |
Returns an instance of a search service. |
| Get-SPSecureStoreApplication |
Returns a Secure Store application. |
| Get-SPSecurityTokenServiceConfig |
Returns the security token service (STS) for the farm. |
| Get-SPServer |
Returns the server or servers in the farm that match the given identity. |
| Get-SPServiceApplication |
Returns the specified service application. |
| Get-SPServiceApplicationEndpoint |
Returns the endpoint of a service application. |
| Get-SPServiceApplicationPool |
Returns the specified Internet Information Services (IIS) application pool. |
| Get-SPServiceApplicationProxy |
Returns an instance of the specified service application proxy. |
| Get-SPServiceApplicationProxyGroup |
Returns the proxy group for the specified service application. |
| Get-SPServiceApplicationSecurity |
Returns the SPObjectSecurity object for a service application. |
| Get-SPServiceContext |
Returns a service context. |
| Get-SPServiceHostConfig |
Returns the common Web service settings. |
| Get-SPServiceInstance |
Returns the services instance for a specific server or the entire farm. |
| Get-SPSessionStateService |
Returns the properties of the session state service, including time-out and database settings |
| Get-SPShellAdmin |
Returns the names of all users who have the SharePoint_Shell_Access role. |
| Get-SPSite |
Returns all site collections that match the given criteria. |
| Get-SPSiteAdministration |
Returns a site administration object that farm administrators can use to view certain information about site collections to which they might not have access. |
| Get-SPSiteSubscription |
Returns the site subscription for the given URL or all site subscriptions in the local farm. |
| Get-SPSiteSubscriptionConfig |
Returns the configuration properties of a site subscription. |
| Get-SPSiteSubscriptionEdiscoveryHub |
Displays the eDiscovery hub for a site subscription. |
| Get-SPSiteSubscriptionEdiscoverySearchScope |
Displays the search scope for the eDiscovery hub of the specified site collection. |
| Get-SPSiteSubscriptionFeaturePack |
Retrieves available SharePoint feature sets or the Feature set assigned to a given site subscription. |
| Get-SPSiteSubscriptionMetadataConfig |
Returns the site subscription configuration settings for a metadata service application. |
| Get-SPSolution |
Returns a specified SharePoint solution. |
| Get-SPStateServiceApplication |
Returns state service applications on the farm |
| Get-SPStateServiceApplicationProxy |
Returns state service application proxies on the farm. |
| Get-SPStateServiceDatabase |
Returns a state service database. |
| Get-SPTaxonomySession |
Returns a TaxonomySession object. |
| Get-SPTimerJob |
Returns timer jobs. |
| Get-SPTopologyServiceApplication |
Displays properties of the topology service application for the current farm. |
| Get-SPTopologyServiceApplicationProxy |
Retrieves the topology service application proxy. |
| Get-SPTrustedIdentityTokenIssuer |
Returns an identity provider. |
| Get-SPTrustedRootAuthority |
Returns a trusted root authority. |
| Get-SPTrustedServiceTokenIssuer |
Returns the object that represents the farm trust. |
| Get-SPUsageApplication |
Returns a specified usage application. |
| Get-SPUsageDefinition |
Returns a usage definition object. |
| Get-SPUsageService |
Returns a usage service. |
| Get-SPUser |
Returns the user account or accounts that match a given search criteria. |
| Get-SPUserSolution |
Returns a specified sandboxed solution. |
| Get-SPVisioExternalData |
Returns the settings for external data connections for a Visio Services application. |
| Get-SPVisioPerformance |
Returns the Visio Services settings for the performance of a Visio Services application. |
| Get-SPVisioSafeDataProvider |
Returns the settings of a safe data provider for a Visio Services application. |
| Get-SPVisioServiceApplication |
Returns properties of a Visio Services application or a collection of Visio Services applications. |
| Get-SPVisioServiceApplicationProxy |
Returns properties of a Visio Services application proxy or a collection of Visio Services application proxies |
| Get-SPWeb |
Returns all subsites that match the given criteria. |
| Get-SPWebAnalyticsServiceApplication |
Returns the settings for a Web Analytics Service application. |
| Get-SPWebAnalyticsServiceApplicationProxy |
Retrieves a new Web Analytics Service application proxy. |
| Get-SPWebApplication |
Returns all Web applications that match the given criteria. |
| Get-SPWebApplicationHttpThrottlingMonitor |
Reads all counters for network throttling on a Web application. |
| Get-SPWebPartPack |
Returns the Web Part packages that were installed for the specified scope. |
| Get-SPWebTemplate |
Displays all globally installed site templates that match the given identity. |
| Get-SPWorkflowConfig |
Returns workflow settings for the specified Web application. |
| Grant-SPBusinessDataCatalogMetadataObject |
Grants a right to a principal for the specified Business Data Connectivity Metadata Store metadata object. |
| Grant-SPObjectSecurity |
Adds a new security principal to an SPObjectSecurity object. |
| Grant-SPServiceApplication |
Grants a user account access to the service application. |
| Import-SPBusinessDataCatalogDotNetAssembly |
Imports data that is associated with the Business Data Connectivity Metadata Store for a partition. |
| Import-SPBusinessDataCatalogModel |
Imports a Business Data Connectivity Model. |
| Import-SPEnterpriseSearchTopology |
Imports and activates a topology from an XML file. |
| Import-SPInfoPathAdministrationFiles |
Imports InfoPath 2010 form templates and .udcx files that are located on the SharePoint Central Administration Web site. |
| Import-SPMetadataWebServicePartitionData |
Restores the data for a site subscription. |
| Import-SPSiteSubscriptionSettings |
Restores a backup of subscription site settings to the given subscription identifier. |
| Import-SPWeb |
Imports a site collection, Web application, list, or library. |
| Initialize-SPResourceSecurity |
Enforces resource security on the local server. |
| Initialize-SPStateServiceDatabase |
Installs the state database schema into a state service database |
| Install-SPApplicationContent |
Copies shared application data to existing Web application folders. |
| Install-SPDataConnectionFile |
Installs the provided data connection file. |
| Install-SPFeature |
Installs a SharePoint feature by using the Feature.xml file. |
| Install-SPHelpCollection |
Installs the provided Help site collection files in the current farm. |
| Install-SPInfoPathFormTemplate |
Installs an InfoPath 2010 form template on a farm. |
| Install-SPService |
Installs and provisions services on a farm. |
| Install-SPSolution |
Deploys an installed SharePoint solution in the farm. |
| Install-SPUserSolution |
Activates a sandboxed solution in a site collection. |
| Install-SPWebPartPack |
Installs the specified Web Part package to the specified location. |
| Install-SPWebTemplate |
Installs the given site template. |
| Merge-SPLogFile |
Combines trace log entries from all farm computers into a single log file on the local computer. |
| Mount-SPContentDatabase |
Attaches an existing content database to the farm. |
| Mount-SPStateServiceDatabase |
Attaches an existing state service database to the farm |
| Move-SPBlobStorageLocation |
Copies a Windows SharePoint Services 3.0 database by using Remote BLOB Storage (RBS). |
| Move-SPProfileManagedMetadataProperty |
Moves multiple-string values into a term set. |
| Move-SPSite |
Moves site collections from one content database to another. |
| Move-SPUser |
Migrates a user account in SharePoint 2010 Products. |
| New-SPAccessServiceApplication |
Creates a new instance of an Access Services application. |
| New-SPAlternateUrl |
Creates a new public or internal URL for the specified Web application zone or resource. |
| New-SPAuthenticationProvider |
Creates a new authentication provider in the farm. |
| New-SPBusinessDataCatalogServiceApplication |
Creates a new Business Data Connectivity service application in the farm. |
| New-SPBusinessDataCatalogServiceApplicationProxy |
Creates a new Business Data Connectivity service application proxy in the farm. |
| New-SPCentralAdministration |
Creates a new SharePoint Central Administration Web application. |
| New-SPClaimProvider |
Registers a new claim provider in the farm. |
| New-SPClaimsPrincipal |
Creates a new claims principal. |
| New-SPClaimTypeMapping |
Creates a claim mapping rule for a security token service (STS) identity provider. |
| New-SPConfigurationDatabase |
Creates a new configuration database. |
| New-SPContentDatabase |
Creates a new content database and attaches it to the specified Web application. |
| New-SPContentDeploymentJob |
Creates a content deployment job. |
| New-SPContentDeploymentPath |
Creates a new content deployment path. |
| New-SPEnterpriseSearchCrawlComponent |
Adds a query component to a query topology. |
| New-SPEnterpriseSearchCrawlContentSource |
Creates a new crawl content source for a shared search application. |
| New-SPEnterpriseSearchCrawlCustomConnector |
Registers a protocol for custom crawling. |
| New-SPEnterpriseSearchCrawlDatabase |
Creates a crawl database which can be added to a search service application. |
| New-SPEnterpriseSearchCrawlExtension |
Adds an extension rule to a shared search application. |
| New-SPEnterpriseSearchCrawlMapping |
Creates a crawl mapping rule for a shared search application. |
| New-SPEnterpriseSearchCrawlRule |
Creates a new crawl rule. |
| New-SPEnterpriseSearchCrawlTopology |
Adds a crawl topology to a shared search application. |
| New-SPEnterpriseSearchExtendedConnectorProperty |
Adds new Extended Connector properties. |
| New-SPEnterpriseSearchLanguageResourcePhrase |
Adds a language resource phrase to a shared search application. |
| New-SPEnterpriseSearchMetadataCategory |
Adds a crawled property category to a search service application. |
| New-SPEnterpriseSearchMetadataCrawledProperty |
Adds a crawled property to a search application crawled property category. |
| New-SPEnterpriseSearchMetadataManagedProperty |
Adds a managed property to a shared search application. |
| New-SPEnterpriseSearchMetadataMapping |
Adds a managed property mapping to a shared search application. |
| New-SPEnterpriseSearchPropertyDatabase |
Creates a new property store for use by a search service application. |
| New-SPEnterpriseSearchQueryAuthority |
Adds an authoritative page to a shared search application. |
| New-SPEnterpriseSearchQueryComponent |
Adds a query component to a query topology. |
| New-SPEnterpriseSearchQueryDemoted |
Adds a demoted site rule to a shared search application. |
| New-SPEnterpriseSearchQueryKeyword |
Adds a keyword term to a shared search application. |
| New-SPEnterpriseSearchQueryScope |
Adds a query results scope to a shared search application. |
| New-SPEnterpriseSearchQueryScopeRule |
Adds a shared scope rule to a query scope. |
| New-SPEnterpriseSearchQueryTopology |
Adds a query topology to a shared search application. |
| New-SPEnterpriseSearchRankingModel |
Adds a ranking model to a shared search application. |
| New-SPEnterpriseSearchSecurityTrimmer |
Adds a custom security trimmer to a shared search application. |
| New-SPEnterpriseSearchServiceApplication |
Adds a search service application to a farm. |
| New-SPEnterpriseSearchServiceApplicationProxy |
Adds a new search application proxy to a farm.. |
| New-SPEnterpriseSearchSiteHitRule |
Adds a new site hit rule for a search application. |
| New-SPExcelBlockedFileType |
Adds a file type to the list of file types that Excel Services Application prevents from being loaded. |
| New-SPExcelDataConnectionLibrary |
Adds a new data connection library to Excel Services Application. |
| New-SPExcelDataProvider |
Adds a new safe data provider to Excel Services Application. |
| New-SPExcelFileLocation |
Adds a new trusted location to Excel Services Application. |
| New-SPExcelServiceApplication |
Creates a new instance of Excel Services Application. |
| New-SPExcelUserDefinedFunction |
Adds a new user-defined function to Excel Services Application. |
| New-SPLogFile |
Creates a new log file. |
| New-SPManagedAccount |
Registers a new managed account. |
| New-SPManagedPath |
Creates a new managed path for the given Web application for all host header site collections. |
| New-SPMetadataServiceApplication |
Creates a new metadata service application. |
| New-SPMetadataServiceApplicationProxy |
Creates a new metadata service application proxy. |
| New-SPPerformancePointServiceApplication |
Creates a new service application for PerformancePoint Services. |
| New-SPPerformancePointServiceApplicationProxy |
Creates a proxy for a PerformancePoint Services application. |
| New-SPPerformancePointServiceApplicationTrustedLocation |
Creates a new trusted location for a PerformancePoint Services application. |
| New-SPProfileServiceApplication |
Adds a User Profile Service application to a farm. |
| New-SPProfileServiceApplicationProxy |
Creates a User Profile Service application proxy on the local farm. |
| New-SPSecureStoreApplication |
Creates a new Secure Store application. |
| New-SPSecureStoreApplicationField |
Creates a new Secure Store application fields object. |
| New-SPSecureStoreServiceApplication |
Creates a new Secure Store Service application in the farm. |
| New-SPSecureStoreServiceApplicationProxy |
Creates a new Secure Store Service application proxy in the farm. |
| New-SPSecureStoreTargetApplication |
Creates a new Secure Store target application. |
| New-SPServiceApplicationPool |
Creates a new Web service application pool. |
| New-SPServiceApplicationProxyGroup |
Creates a new service application proxy group. |
| New-SPSite |
Creates a new site collection at the specified URL. |
| New-SPSiteSubscription |
Creates a new site subscription. |
| New-SPSiteSubscriptionFeaturePack |
Creates a new SharePoint feature set that can be used to limit the features available to a site subscription. |
| New-SPStateServiceApplication |
Creates a new state service application |
| New-SPStateServiceApplicationProxy |
Creates a proxy for a state service application |
| New-SPStateServiceDatabase |
Creates and provisions a new state service database, and installs the state database schema into it |
| New-SPSubscriptionSettingsServiceApplication |
Creates a new subscription settings service application. |
| New-SPSubscriptionSettingsServiceApplicationProxy |
Creates an application proxy to a subscription settings service application. |
| New-SPTrustedIdentityTokenIssuer |
Creates an identity provider in the farm. |
| New-SPTrustedRootAuthority |
Creates a trusted root authority. |
| New-SPTrustedServiceTokenIssuer |
Creates a trust with a SharePoint farm. |
| New-SPUsageApplication |
Creates a new usage application. |
| New-SPUsageLogFile |
Starts a new usage log file on the current server computer. |
| New-SPUser |
Adds an existing user to a SharePoint site with the designated permissions. |
| New-SPVisioSafeDataProvider |
Adds a new data provider to a Visio Services application. |
| New-SPVisioServiceApplication |
Adds a new Visio Services application to a farm. |
| New-SPVisioServiceApplicationProxy |
Adds a new Visio Services application proxy to a farm. |
| New-SPWeb |
Creates a new site in an existing site collection. |
| New-SPWebAnalyticsServiceApplication |
Adds a new Web Analytics Service application to the farm. |
| New-SPWebAnalyticsServiceApplicationProxy |
Adds a new Web Analytics Service application proxy to the farm. |
| New-SPWebApplication |
Creates a new Web application within the local farm. |
| New-SPWebApplicationExtension |
Creates a new zone instance for the Web application. |
| New-SPWordConversionServiceApplication |
Creates a new instance of a Word Automation Services application on the farm. |
| Ping-SPEnterpriseSearchContentService |
Sends a request to the content distributor. |
| Publish-SPServiceApplication |
Shares the specified local service application outside the farm. |
| Receive-SPSharedServiceApplicationInfo |
Configures this farm to receive service information from another farm. |
| Remove-SPAlternateUrl |
Completely deletes the specified alternate URL. |
| Remove-SPBusinessDataCatalogModel |
Deletes a Business Data Connectivity Model. |
| Remove-SPClaimProvider |
Unregisters a claim provider. |
| Remove-SPClaimTypeMapping |
Deletes a claim type mapping rule for a security token service (STS) identity provider. |
| Remove-SPConfigurationDatabase |
Permanently removes a configuration database. |
| Remove-SPContentDatabase |
Deletes a content database. |
| Remove-SPContentDeploymentJob |
Removes a content deployment job. |
| Remove-SPContentDeploymentPath |
Removes a content deployment path. |
| Remove-SPDiagnosticsPerformanceCounter |
Removes an instance of a performance counter. |
| Remove-SPEnterpriseSearchCrawlComponent |
Deletes a crawl component from a shared search application. |
| Remove-SPEnterpriseSearchCrawlContentSource |
Deletes a specified crawl content source from a search application. |
| Remove-SPEnterpriseSearchCrawlCustomConnector |
Removes a CustomConnector object. |
| Remove-SPEnterpriseSearchCrawlDatabase |
Sets properties of a crawl database for a search service application. |
| Remove-SPEnterpriseSearchCrawlExtension |
Removes a file name extension from the list of files that can be crawled. |
| Remove-SPEnterpriseSearchCrawlMapping |
Deletes a crawl mapping. |
| Remove-SPEnterpriseSearchCrawlRule |
Deletes a crawl rule. |
| Remove-SPEnterpriseSearchCrawlTopology |
Deletes a crawl topology. |
| Remove-SPEnterpriseSearchExtendedConnectorProperty |
Removes properties of search service applications of ExtendedConnector type. |
| Remove-SPEnterpriseSearchLanguageResourcePhrase |
Deletes a language resource phrase from a shared search application. |
| Remove-SPEnterpriseSearchMetadataCategory |
Deletes a crawled property category. |
| Remove-SPEnterpriseSearchMetadataManagedProperty |
Deletes a metadata managed property. |
| Remove-SPEnterpriseSearchMetadataMapping |
Deletes a metadata mapping from a managed property. |
| Remove-SPEnterpriseSearchPropertyDatabase |
Deletes a property store. |
| Remove-SPEnterpriseSearchQueryAuthority |
Deletes an authoritative page. |
| Remove-SPEnterpriseSearchQueryComponent |
Deletes a query component. |
| Remove-SPEnterpriseSearchQueryDemoted |
Deletes a demoted site rule. |
| Remove-SPEnterpriseSearchQueryKeyword |
Deletes a query keyword. |
| Remove-SPEnterpriseSearchQueryScope |
Deletes a query scope. |
| Remove-SPEnterpriseSearchQueryScopeRule |
Deletes query results scope rules. |
| Remove-SPEnterpriseSearchQueryTopology |
Deletes a query topology. |
| Remove-SPEnterpriseSearchRankingModel |
Deletes a ranking model. |
| Remove-SPEnterpriseSearchSecurityTrimmer |
Deletes a custom security trimmer. |
| Remove-SPEnterpriseSearchServiceApplication |
Deletes a search service application. |
| Remove-SPEnterpriseSearchServiceApplicationProxy |
Deletes a search service application proxy. |
| Remove-SPEnterpriseSearchSiteHitRule |
Deletes a site hit rule. |
| Remove-SPExcelBlockedFileType |
Removes an entry from the list of file types that are prevented from being loaded on Excel Services Application. |
| Remove-SPExcelDataConnectionLibrary |
Removes a data connection library from Excel Services Application. |
| Remove-SPExcelDataProvider |
Removes a data provider from Excel Services Application. |
| Remove-SPExcelFileLocation |
Removes a trusted file location from Excel Services Application. |
| Remove-SPExcelUserDefinedFunction |
Removes a user-defined function from Excel Services Application. |
| Remove-SPInfoPathUserAgent |
Removes a user agent. |
| Remove-SPManagedAccount |
Removes a managed account registration from the farm. |
| Remove-SPManagedPath |
Deletes the specified managed path from the specified host header or Web application. |
| Remove-SPPerformancePointServiceApplication |
Deletes a PerformancePoint Services application from a farm. |
| Remove-SPPerformancePointServiceApplicationProxy |
Deletes the proxy for a PerformancePoint Services application. |
| Remove-SPPerformancePointServiceApplicationTrustedLocation |
Removes a single trusted location from a PerformancePoint Services application. |
| Remove-SPSecureStoreApplication |
Deletes a Secure Store application. |
| Remove-SPServiceApplication |
Deletes the specified service application on the local server. |
| Remove-SPServiceApplicationPool |
Completely deletes the specified Web service application pool. |
| Remove-SPServiceApplicationProxy |
Deletes the specified service application proxy. |
| Remove-SPServiceApplicationProxyGroup |
Completely deletes the specified service application proxy group. |
| Remove-SPServiceApplicationProxyGroupMember |
Removes one or more proxies from the specified service application proxy group. |
| Remove-SPShellAdmin |
Removes a user from the SharePoint_Shell_Access role. |
| Remove-SPSite |
Completely deletes an existing site collection and all subsites. |
| Remove-SPSiteSubscription |
Removes data stored in a subscription settings service application for a set of site subscriptions. |
| Remove-SPSiteSubscriptionBusinessDataCatalogConfig |
Removes the Business Data Connectivity Metadata Store for a partition. |
| Remove-SPSiteSubscriptionFeaturePack |
Removes a SharePoint feature set from a site subscription. |
| Remove-SPSiteSubscriptionFeaturePackMember |
Removes a feature definition from the provided SharePoint feature set. |
| Remove-SPSiteSubscriptionMetadataConfig |
Removes site subscription configuration settings. |
| Remove-SPSiteSubscriptionProfileConfig |
Deletes a site subscription from a User Profile Service application. |
| Remove-SPSiteSubscriptionSettings |
Removes the settings service data for a specified site subscription, or finds and removes orphaned data. |
| Remove-SPSocialItemByDate |
Deletes tags, notes, or ratings. |
| Remove-SPSolution |
Removes a SharePoint solution from a farm. |
| Remove-SPSolutionDeploymentLock |
Removes the solution deployment lock for a server. |
| Remove-SPStateServiceDatabase |
Removes a state service database from a state service application and drops it from the SQL Server |
| Remove-SPTrustedIdentityTokenIssuer |
Deletes a security token service (STS) identity provider from the farm. |
| Remove-SPTrustedRootAuthority |
Deletes a trusted root authority. |
| Remove-SPTrustedServiceTokenIssuer |
Deletes the object that represents the farm trust. |
| Remove-SPUsageApplication |
Removes a usage application from the local farm. |
| Remove-SPUser |
Removes a user from a Web site. |
| Remove-SPUserSolution |
Removes a sandboxed solution from the solution gallery. |
| Remove-SPVisioSafeDataProvider |
Removes a data provider from a Visio Services application. |
| Remove-SPWeb |
Completely deletes the specified Web. |
| Remove-SPWebApplication |
Deletes the specified Web application. |
| Remove-SPWordConversionServiceJobHistory |
Removes entries from the Word Automation Services job history database. |
| Rename-SPServer |
Renames a server that is currently connected to the farm. |
| Repair-SPManagedAccountDeployment |
Repairs the local managed account credential deployment. |
| Restart-SPEnterpriseSearchQueryComponent |
Restarts a failed query component. |
| Restore-SPEnterpriseSearchServiceApplication |
Restores a third-party backup of a search application. |
| Restore-SPFarm |
Restores one or more items from a backup. |
| Restore-SPSite |
Restores a site collection. |
| Resume-SPEnterpriseSearchServiceApplication |
Resumes a search service application that was suspended. |
| Resume-SPStateServiceDatabase |
Resumes a paused state service database so that new rows of data are received |
| Revoke-SPBusinessDataCatalogMetadataObject |
Revokes a right to a principal in the specified Business Data Connectivity Metadata Store metadata object. |
| Revoke-SPObjectSecurity |
Removes a security principal from a SPObjectSecurity object. |
| Revoke-SPServiceApplication |
Revokes a user’s access to a service application. |
| Set-SPAccessServiceApplication |
Sets global properties of an existing Access Services application. |
| Set-SPAlternateUrl |
Configures the specified alternate URL. |
| Set-SPBrowserCustomerExperienceImprovementProgram |
Turns on or off the browser Customer Experience Improvement Program. |
| Set-SPBusinessDataCatalogMetadataObject |
Sets the value of a property or attribute of a Business Data Connectivity Metadata Store metadata object. |
| Set-SPBusinessDataCatalogServiceApplication |
Sets global properties for a Business Data Connectivity service application in the farm. |
| Set-SPBusinessDataCatalogThrottleConfig |
Sets the throttling configuration for a Business Data Connectivity Service application. |
| Set-SPCentralAdministration |
Sets the port for the SharePoint Central Administration Web site. |
| Set-SPClaimProvider |
Updates registration of a claims provider. |
| Set-SPContentDatabase |
Sets global properties of a SharePoint content database. |
| Set-SPContentDeploymentJob |
Sets properties of a content deployment job. |
| Set-SPContentDeploymentPath |
Sets properties of a content deployment path. |
| Set-SPCustomLayoutsPage |
Maps a new path for a custom layout page. |
| Set-SPDataConnectionFile |
Sets properties of a data connection file. |
| Set-SPDesignerSettings |
Sets Microsoft SharePoint Designer 2010 features. |
| Set-SPDiagnosticConfig |
Sets diagnostic configuration settings on the farm. |
| Set-SPDiagnosticsProvider |
Enables a diagnostics provider and updates its retention policy. |
| Set-SPEnterpriseSearchAdministrationComponent |
Sets properties of an administration component for a search service application. |
| Set-SPEnterpriseSearchCrawlContentSource |
Sets the properties of a crawl content source for a shared search application. |
| Set-SPEnterpriseSearchCrawlDatabase |
Sets properties of a crawl database for a search service application. |
| Set-SPEnterpriseSearchCrawlRule |
Sets properties for a crawl rule. |
| Set-SPEnterpriseSearchCrawlTopology |
Sets the properties of a crawl topology on a shared search application. |
| Set-SPEnterpriseSearchExtendedConnectorProperty |
Sets the value of an ExtendedConnector object. |
| Set-SPEnterpriseSearchExtendedQueryProperty |
Sets FAST Search for SharePoint service-specific properties. |
| Set-SPEnterpriseSearchIndexPartition |
Sets properties of an index partition for a query topology. |
| Set-SPEnterpriseSearchMetadataCategory |
Sets properties of a crawled property category for a shared search application. |
| Set-SPEnterpriseSearchMetadataCrawledProperty |
Sets the properties of a metadata crawled property for a shared search application. |
| Set-SPEnterpriseSearchMetadataManagedProperty |
Sets the properties of a metadata managed property. |
| Set-SPEnterpriseSearchMetadataMapping |
Sets the properties of a managed property mapping for a shared search application. |
| Set-SPEnterpriseSearchPropertyDatabase |
Modifies properties for a property store. |
| Set-SPEnterpriseSearchQueryAuthority |
Sets the properties of an authoritative page for a shared search application. |
| Set-SPEnterpriseSearchQueryComponent |
Modifies properties for a query component. |
| Set-SPEnterpriseSearchQueryKeyword |
Sets the properties of a keyword term for a shared search application. |
| Set-SPEnterpriseSearchQueryScope |
Sets the properties of a query results scope for a shared search application. |
| Set-SPEnterpriseSearchQueryScopeRule |
Sets the properties of a shared scope rule for a query scope. |
| Set-SPEnterpriseSearchQueryTopology |
Sets the properties of a query topology for a shared search application. |
| Set-SPEnterpriseSearchRankingModel |
Sets the properties of a ranking model for a shared search application. |
| Set-SPEnterpriseSearchService |
Sets the properties of a search service for a farm. |
| Set-SPEnterpriseSearchServiceApplication |
Sets the properties of a search service application for a farm. |
| Set-SPEnterpriseSearchServiceApplicationProxy |
Sets properties of a search service application proxy. |
| Set-SPEnterpriseSearchServiceInstance |
Sets the properties of a search service instance. |
| Set-SPExcelDataConnectionLibrary |
Sets properties of a data connection library for Excel Services Application. |
| Set-SPExcelDataProvider |
Sets properties of a safe data provider for Excel Services Application. |
| Set-SPExcelFileLocation |
Sets properties of a trusted file location for Excel Services Application. |
| Set-SPExcelServiceApplication |
Sets global properties for Excel Services Application. |
| Set-SPExcelUserDefinedFunction |
Sets properties of a user-defined function in Excel Services Application. |
| Set-SPFarmConfig |
Sets a global property or a collection of global properties for the local farm. |
| Set-SPInfoPathFormsService |
Sets parameters for InfoPath Forms Services in SharePoint Server 2010. |
| Set-SPInfoPathFormTemplate |
Sets properties of an InfoPath 2010 form template. |
| Set-SPInfoPathWebServiceProxy |
Sets parameters for an existing SharePoint Web service application. |
| Set-SPLogLevel |
Sets the trace and event level for a set of categories. |
| Set-SPManagedAccount |
Configures the managed account. |
| Set-SPMetadataServiceApplication |
Sets the properties for a metadata service application. |
| Set-SPMetadataServiceApplicationProxy |
Sets the properties for a metadata service application proxy. |
| Set-SPMobileMessagingAccount |
Configures the specified mobile messaging account. |
| Set-SPPassPhrase |
Sets the passphrase to a new value. |
| Set-SPPerformancePointSecureDataValues |
Sets global settings for the unattended service account. |
| Set-SPPerformancePointServiceApplication |
Sets global run-time properties for a PerformancePoint Services application. |
| Set-SPProfileServiceApplication |
Sets properties of a User Profile Service application. |
| Set-SPProfileServiceApplicationProxy |
Sets properties of a proxy for a User Profile Service application. |
| Set-SPProfileServiceApplicationSecurity |
Sets permission and identity information. |
| Set-SPSearchService |
Sets properties of a search service. |
| Set-SPSearchServiceInstance |
Sets properties of a search service instance. |
| Set-SPSecureStoreApplication |
Sets properties of a Secure Store application. |
| Set-SPSecureStoreDefaultProvider |
Sets or updates the secure store provider. |
| Set-SPSecureStoreServiceApplication |
Sets properties of a Secure Store Service application in the farm. |
| Set-SPSecurityTokenServiceConfig |
Updates the settings of the SharePoint security token service (STS) identity provider. |
| Set-SPServiceApplication |
Sets properties of a service application. |
| Set-SPServiceApplicationEndpoint |
Sets the host of an endpoint for a service application. |
| Set-SPServiceApplicationPool |
Changes the account used for the Identity of the specified application pool. |
| Set-SPServiceApplicationSecurity |
Updates the SPObjectSecurity object for a service application. |
| Set-SPServiceHostConfig |
Configures one or more common settings for all Web services. |
| Set-SPSessionStateService |
Updates the credentials that are used to communicate with the state service database |
| Set-SPSite |
Configures the specified site collection. |
| Set-SPSiteAdministration |
Allows farm administrators to configure any site collection. |
| Set-SPSiteSubscriptionConfig |
Sets the configuration properties of a site subscription. |
| Set-SPSiteSubscriptionEdiscoveryHub |
Sets properties for the eDiscovery hub of a site subscription. |
| Set-SPSiteSubscriptionMetadataConfig |
Sets the site subscription configuration settings for a specified metadata service application. |
| Set-SPSiteSubscriptionProfileConfig |
Sets the parameters of a site subscription. |
| Set-SPStateServiceApplication |
Updates the name of a state service application |
| Set-SPStateServiceApplicationProxy |
Updates the name of a state service application proxy |
| Set-SPStateServiceDatabase |
Updates properties of a state service database |
| Set-SPSubscriptionSettingsServiceApplication |
Sets properties of a subscription settings service application. |
| Set-SPTimerJob |
Sets the schedule for running a timer job. |
| Set-SPTopologyServiceApplication |
Sets the properties on the topology service application of the local farm. |
| Set-SPTopologyServiceApplicationProxy |
Sets the proxy properties of the topology service application. |
| Set-SPTrustedIdentityTokenIssuer |
Sets the identity providers of a Web application. |
| Set-SPTrustedRootAuthority |
Creates a new trusted root authority. |
| Set-SPTrustedServiceTokenIssuer |
Updates a trust with the farm. |
| Set-SPUsageApplication |
Sets properties of a usage application. |
| Set-SPUsageDefinition |
Sets the retention period for a usage provider. |
| Set-SPUsageService |
Sets the properties of a usage service. |
| Set-SPUser |
Configures properties on an existing user. |
| Set-SPVisioExternalData |
Configures settings related to external data connections for a Visio Services application. |
| Set-SPVisioPerformance |
Sets performance properties for a Visio Services application. |
| Set-SPVisioSafeDataProvider |
Specifies a description of a safe data provider for a Visio Services application. |
| Set-SPVisioServiceApplication |
Sets the ServiceApplicationPool property for a Visio Services application. |
| Set-SPWeb |
Configures the specified subsite. |
| Set-SPWebAnalyticsServiceApplication |
Sets properties of a Web Analytics Service application. |
| Set-SPWebAnalyticsServiceApplicationProxy |
Sets a new proxy for the Web Analytics Service application. |
| Set-SPWebApplication |
Configures the specified Web application. |
| Set-SPWebApplicationHttpThrottlingMonitor |
Sets the Health Score bucket values for an existing network throttling performance counter for a specified Web application. |
| Set-SPWebTemplate |
Changes the title and description of an installed site template. |
| Set-SPWordConversionServiceApplication |
Sets properties of a Word Automation Services application. |
| Set-SPWorkflowConfig |
Configures the workflow settings for the specified Web application. |
| Start-SPAdminJob |
Immediately starts any waiting administrative job on the local computer. |
| Start-SPAssignment |
Initiates a new assignment store. |
| Start-SPContentDeploymentJob |
Starts a content deployment job. |
| Start-SPEnterpriseSearchQueryAndSiteSettingsServiceInstance |
Starts an instance of a search manager service. |
| Start-SPEnterpriseSearchServiceInstance |
Starts an instance of a search service. |
| Start-SPInfoPathFormTemplate |
Activates a previously quiesced InfoPath 2010 form template. |
| Start-SPServiceInstance |
Starts the service instance for a service on a specific server or the farm. |
| Start-SPTimerJob |
Runs a timer job once. |
| Stop-SPAssignment |
Disposes of objects in the provided assignment collection. |
| Stop-SPEnterpriseSearchQueryAndSiteSettingsServiceInstance |
Stops an instance of a search manager service. |
| Stop-SPEnterpriseSearchServiceInstance |
Stops an instance of a search manager service. |
| Stop-SPInfoPathFormTemplate |
Disables an InfoPath 2010 form template on a farm before an upgrade. |
| Stop-SPServiceInstance |
Stops the service instance for a service. |
| Suspend-SPEnterpriseSearchServiceApplication |
Suspends a search service application, pausing all crawls and search operations, to perform a task such as system maintenance. |
| Suspend-SPStateServiceDatabase |
Pauses a state database and thus prevents new rows of data from being added to a database |
| Test-SPContentDatabase |
Tests a content database. |
| Test-SPInfoPathFormTemplate |
Validates that an InfoPath 2010 form template is browser-enabled. |
| Uninstall-SPDataConnectionFile |
Removes a data connection file. |
| Uninstall-SPFeature |
Uninstalls an installed feature definition. |
| Uninstall-SPHelpCollection |
Removes Help collection files. |
| Uninstall-SPInfoPathFormTemplate |
Removes an InfoPath 2010 form template from a farm. |
| Uninstall-SPSolution |
Retracts a deployed SharePoint solution. |
| Uninstall-SPUserSolution |
Deactivates a sandboxed solution in a site collection. |
| Uninstall-SPWebPartPack |
Uninstalls the specified Web Part package. |
| Uninstall-SPWebTemplate |
Uninstalls the given site template. |
| Unpublish-SPServiceApplication |
Stops sharing the specified service application outside the farm. |
| Update-SPFarmEncryptionKey |
Changes the value of the farm encryption key and, using the new key, re-encrypts all the data. |
| Update-SPInfoPathAdminFileUrl |
Updates InfoPath 2010 form templates (.xsn files) and universal data connections (.udcx files), including all .xsn files and .udcx files that were deployed by an administrator. |
| Update-SPProfilePhotoStore |
Updates the profile photo store to be compatible with Microsoft SharePoint Server 2010 |
| Update-SPSecureStoreApplicationServerKey |
Synchronizes the key on a server running SharePoint Server by using the Secure Store master key. |
| Update-SPSecureStoreCredentialMapping |
Sets a new credential mapping for a Secure Store Service application. |
| Update-SPSecureStoreGroupCredentialMapping |
Sets a new group credential mapping for a Secure Store Service application. |
| Update-SPSecureStoreMasterKey |
Changes the master key of a Secure Store Service application. |
| Update-SPSolution |
Upgrades a deployed SharePoint solution. |
| Update-SPUserSolution |
Upgrades an activated sandboxed solution in a farm. |
| Upgrade-SPContentDatabase |
Upgrades a content database. |
| Upgrade-SPEnterpriseSearchServiceApplication |
Upgrades a search service application. |
| Upgrade-SPSingleSignOnDatabase |
Migrates the application definitions from single sign-on (SSO) database to Secure Store database as target applications. |

