From 4b5e6fc9becd6914f9eb36837885398fedce5f61 Mon Sep 17 00:00:00 2001 From: Yorick Kuijs Date: Thu, 10 Feb 2022 15:08:34 +0100 Subject: [PATCH] Fixed failed HQRMtests --- .../Contributing-to-SharePointDsc.md | 16 +- .../Creating-Configuration-Files.md | 10 +- ...ed-the-configured-MaxEnvelopeSize-quota.md | 2 +- .../Export-SharePoint-Configuration.md | 2 +- SharePointDsc/WikiSource/Getting-Started.md | 2 +- SharePointDsc/WikiSource/Home.md | 12 +- ...dules-for-SharePoint-DSC-configurations.md | 4 +- SharePointDsc/WikiSource/Prerequisites.md | 2 +- ...essions-and-the-InstallAccount-variable.md | 2 +- .../WikiSource/Understanding-Resources.md | 260 +++++++++--------- .../Using-CredSSP-on-a-Domain-Controller.md | 2 +- ...n-configurations-that-use-SharePointDsc.md | 2 +- SharePointDsc/WikiSource/_Footer.md | 2 +- SharePointDsc/WikiSource/_Sidebar.md | 24 +- 14 files changed, 171 insertions(+), 171 deletions(-) diff --git a/SharePointDsc/WikiSource/Contributing-to-SharePointDsc.md b/SharePointDsc/WikiSource/Contributing-to-SharePointDsc.md index 2b6abf54c..0e46dc73d 100644 --- a/SharePointDsc/WikiSource/Contributing-to-SharePointDsc.md +++ b/SharePointDsc/WikiSource/Contributing-to-SharePointDsc.md @@ -12,14 +12,14 @@ The Get-TargetResource function should not return $null as a result. It may, how ```PowerShell function Get-TargetResource { - $nullreturn = @{ - ServiceAppName = $ServiceAppName - Name = $Name - RequestLimit = $null - WaitTime = $null - Ensure = "Absent" - } - return $nullreturn + $nullreturn = @{ + ServiceAppName = $ServiceAppName + Name = $Name + RequestLimit = $null + WaitTime = $null + Ensure = "Absent" + } + return $nullreturn } ``` diff --git a/SharePointDsc/WikiSource/Creating-Configuration-Files.md b/SharePointDsc/WikiSource/Creating-Configuration-Files.md index 55eed79e1..50545474e 100644 --- a/SharePointDsc/WikiSource/Creating-Configuration-Files.md +++ b/SharePointDsc/WikiSource/Creating-Configuration-Files.md @@ -10,7 +10,7 @@ a number of components that are common across all deployments. When describing a configuration for a SharePoint Server, there are a number of common components that are likely to exist in every configuration. Namely the components related to the installation of the product - -[SPInstallPreReqs](SPInstallPreReqs) and [SPInstall](SPInstall). +_[SPInstallPreReqs](SPInstallPreReqs)_ and _[SPInstall](SPInstall)_. It is also important to understand how the SharePointDsc resources impersonate and communicate with the SharePoint PowerShell cmdlet's. @@ -18,8 +18,8 @@ For PowerShell 5 (which we recommend) you should use the PsDscRunAsCredential pr the account a resource should run as. However for PowerShell 4 this is not an option, and the InstallAccount option is to be used in that situation, which relies on creating a local PowerShell session that uses CredSSP authentication. -This means you are likely to want to use the xCredSSP resources also (see [Remote sessions and -the InstallAccount variable](Remote-sessions-and-the-InstallAccount-variable)) for more information +This means you are likely to want to use the xCredSSP resources also (see _[Remote sessions and +the InstallAccount variable](Remote-sessions-and-the-InstallAccount-variable)_) for more information on this). There are also a limited number of scenario's in SharePointDsc that will always use this CredSSP approach (such as provisioning the user profile sync service) so it is recommended that even if @@ -31,8 +31,8 @@ The single server deployment is the most straightforward - you will have one con that will describe all of the components that you want to have on that server. This is not likely to be a production deployment, but more a development or testing server. The specifics of what you put in to this configuration are largely up to what you want this server -to be running, but you will always include [SPFarm](SPFarm) to create the farm, and -[SPDistributedCacheService](SPDistributedCacheService) to enable the distributed cache service +to be running, but you will always include _[SPFarm](SPFarm)_ to create the farm, and +_[SPDistributedCacheService](SPDistributedCacheService)_ to enable the distributed cache service in the farm. The rest can be as little or as detailed as you need it to be in order to achieve your desired configuration. diff --git a/SharePointDsc/WikiSource/Error-Exceeded-the-configured-MaxEnvelopeSize-quota.md b/SharePointDsc/WikiSource/Error-Exceeded-the-configured-MaxEnvelopeSize-quota.md index 38026be47..bccffae11 100644 --- a/SharePointDsc/WikiSource/Error-Exceeded-the-configured-MaxEnvelopeSize-quota.md +++ b/SharePointDsc/WikiSource/Error-Exceeded-the-configured-MaxEnvelopeSize-quota.md @@ -24,4 +24,4 @@ Change the network profile to Domain or Private in order to change the setting. ## More information More information about the MaxEnvelopeSize can be found at: * https://msdn.microsoft.com/en-us/library/cc251449.aspx -* https://msdn.microsoft.com/en-us/library/aa384372%28VS.85%29.aspx \ No newline at end of file +* https://msdn.microsoft.com/en-us/library/aa384372%28VS.85%29.aspx diff --git a/SharePointDsc/WikiSource/Export-SharePoint-Configuration.md b/SharePointDsc/WikiSource/Export-SharePoint-Configuration.md index 66c5be394..6de2da5de 100644 --- a/SharePointDsc/WikiSource/Export-SharePoint-Configuration.md +++ b/SharePointDsc/WikiSource/Export-SharePoint-Configuration.md @@ -15,7 +15,7 @@ That is why Nik Charlebois created [ReverseDsc](https://www.powershellgallery.co This module offers generic functionalities to generate DSC configurations and requires a technology specific orchestrator script to export the data. -> For a [Full list](Understanding-Resources) of what can be extracted have a look at our Included Resources section. +> For a _[Full list](Understanding-Resources)_ of what can be extracted have a look at our Included Resources section. Since SharePointDsc v4.5, this orchestrator script (and therefore ReverseDsc support) has been natively integrated into SharePointDsc. diff --git a/SharePointDsc/WikiSource/Getting-Started.md b/SharePointDsc/WikiSource/Getting-Started.md index 53e786147..7a5483887 100644 --- a/SharePointDsc/WikiSource/Getting-Started.md +++ b/SharePointDsc/WikiSource/Getting-Started.md @@ -18,4 +18,4 @@ This is useful in various scenarios, but can become complex depending how broad It's entirely possible that DSC is the right fit for you , and that there is a learning / discipline requirement. Or a Gap in your knowledge/ experience this Getting Started section is designed to help you. -More information on PowerShell Desired State Configuration in general, can be found [here](https://docs.microsoft.com/en-us/powershell/scripting/dsc/overview/overview). \ No newline at end of file +More information on PowerShell Desired State Configuration in general, can be found [here](https://docs.microsoft.com/en-us/powershell/scripting/dsc/overview/overview). diff --git a/SharePointDsc/WikiSource/Home.md b/SharePointDsc/WikiSource/Home.md index 1320ccca2..ac8864aab 100644 --- a/SharePointDsc/WikiSource/Home.md +++ b/SharePointDsc/WikiSource/Home.md @@ -4,7 +4,7 @@ SharePointDsc v#.#.# Here you will find all the information you need to make use of the SharePoint DSC resources, including details of the resources that are available, current capabilities and known issues, and information to help plan a DSC based implementation of SharePoint. -Please leave comments, feature requests, and bug reports in the [issues section](../issues) for this module. +Please leave comments, feature requests, and bug reports in the [issues section](https://github.com/dsccommunity/SharePointDsc/issues) for this module. ## Quick start @@ -17,7 +17,7 @@ To confirm installation, run the below command and ensure you see the SharePoint Get-DscResource -Module SharePointDsc -To view a more detailed explanation, view our [Getting Started](Getting-Started) page. +To view a more detailed explanation, view our _[Getting Started](Getting-Started)_ page. ## Supported SharePoint versions @@ -36,11 +36,11 @@ SharePointDsc currently supports: ## Known Issues There are some known issues (and their solutions/workarounds) with SharePointDsc or PowerShell: -[Error Exceeded the configured MaxEnvelopeSize quota](Error-Exceeded-the-configured-MaxEnvelopeSize-quota) +_[Error Exceeded the configured MaxEnvelopeSize quota](Error-Exceeded-the-configured-MaxEnvelopeSize-quota)_ -[Setting up Central Administration on HTTPS](Setting-up-Central-Administration-on-HTTPS) +_[Setting up Central Administration on HTTPS](Setting-up-Central-Administration-on-HTTPS)_ -[Using CredSSP on a domain controller / single server farm](Using-CredSSP-on-a-Domain-Controller) +_[Using CredSSP on a domain controller / single server farm](Using-CredSSP-on-a-Domain-Controller)_ ## Multilingual support @@ -55,4 +55,4 @@ Resources inside the SharePointDSC module are categorized into 4 main groups. - Distributed Resources - Utility Resources -To understand how to use these resources in your Configuration to avoid Syntax and undesired results go to our [Understanding Resources](Understanding-Resources) section. +To understand how to use these resources in your Configuration to avoid Syntax and undesired results go to our _[Understanding Resources](Understanding-Resources)_ section. diff --git a/SharePointDsc/WikiSource/Other-useful-modules-for-SharePoint-DSC-configurations.md b/SharePointDsc/WikiSource/Other-useful-modules-for-SharePoint-DSC-configurations.md index 41de5c92a..73ae997ac 100644 --- a/SharePointDsc/WikiSource/Other-useful-modules-for-SharePoint-DSC-configurations.md +++ b/SharePointDsc/WikiSource/Other-useful-modules-for-SharePoint-DSC-configurations.md @@ -19,9 +19,9 @@ These resources can manage site configuring for tasks such as bindings, or remov Available at [https://www.powershellgallery.com/packages/xCredSSP](https://www.powershellgallery.com/packages/xCredSSP) -The xCredSSP module is a simple way to automate CredSSP configuration. See [Remote sessions and the InstallAccount variable](Remote-sessions-and-the-InstallAccount-variable) for more information on this. +The xCredSSP module is a simple way to automate CredSSP configuration. See _[Remote sessions and the InstallAccount variable](Remote-sessions-and-the-InstallAccount-variable)_ for more information on this. -## SchannelDsc +## SChannelDsc Available at [https://www.powershellgallery.com/packages/SchannelDsc](https://www.powershellgallery.com/packages/SchannelDsc) diff --git a/SharePointDsc/WikiSource/Prerequisites.md b/SharePointDsc/WikiSource/Prerequisites.md index 8b5a854c4..a20879a70 100644 --- a/SharePointDsc/WikiSource/Prerequisites.md +++ b/SharePointDsc/WikiSource/Prerequisites.md @@ -5,6 +5,6 @@ To use DSC on earlier versions of Windows, install the Windows Management Framew However it is strongly recommended that PowerShell 5.0 (or above) is used, as it adds support for the PsDscRunAsCredential parameter and has overall better performance and troubleshooting capabilities. -The logic behind this is explained on the page "[Remote sessions and the InstallAccount variable](Remote-sessions-and-the-InstallAccount-variable)" page. +The logic behind this is explained on the page _[Remote sessions and the InstallAccount variable](Remote-sessions-and-the-InstallAccount-variable)_ page. [PowerShell 5.1](https://www.microsoft.com/en-us/download/details.aspx?id=54616) includes significant improvements in Desired State Configuration and PowerShell Script Debugging. diff --git a/SharePointDsc/WikiSource/Remote-sessions-and-the-InstallAccount-variable.md b/SharePointDsc/WikiSource/Remote-sessions-and-the-InstallAccount-variable.md index 6eefdabd4..02d0da40c 100644 --- a/SharePointDsc/WikiSource/Remote-sessions-and-the-InstallAccount-variable.md +++ b/SharePointDsc/WikiSource/Remote-sessions-and-the-InstallAccount-variable.md @@ -36,7 +36,7 @@ This removes the need to have InstallAccount on SharePointDsc resources. However The SharePointDsc resources will detect if they are running as the local system account or not and will only use a "remote" session as described above where it is needed. Also note that some resources in SharePointDsc still use the above described remote session technique to simulate other others regardless of whether or not PsDscRunAsCredential is used. -An example of this is [SPUserProfileSyncService](SPUserProfileSyncService) which uses this approach to run as the farm account value. +An example of this is _[SPUserProfileSyncService](SPUserProfileSyncService)_ which uses this approach to run as the farm account value. An example of how to use this property in PowerShell 5 is shown below: diff --git a/SharePointDsc/WikiSource/Understanding-Resources.md b/SharePointDsc/WikiSource/Understanding-Resources.md index 77c9cf39d..ca1ea656c 100644 --- a/SharePointDsc/WikiSource/Understanding-Resources.md +++ b/SharePointDsc/WikiSource/Understanding-Resources.md @@ -22,138 +22,138 @@ The SharePointDsc module includes the following DSC resources |Resource|Type|Requires CredSSP| |--|--|--| -|[SPAccessServiceApp](SPAccessServiceApp) | Distributed | - | -|[SPAccessServices2010](SPAccessServices2010) | Distributed | - | -|[SPAlternateUrl](SPAlternateUrl) | Distributed | - | -|[SPAntivirusSettings](SPAntivirusSettings) | Distributed | - | -|[SPAppCatalog](SPAppCatalog) | Distributed | Yes | -|[SPAppDomain](SPAppDomain) | Distributed | - | -|[SPAppManagementServiceApp](SPAppManagementServiceApp) | Distributed | - | -|[SPAppStoreSettings](SPAppStoreSettings) | Distributed | - | -|[SPAuthenticationRealm](SPAuthenticationRealm) | Distributed | - | -|[SPAzureAccessControlServiceAppProxy](SPAzureAccessControlServiceAppProxy) | Distributed | - | -|[SPBCSServiceApp](SPBCSServiceApp) | Distributed | - | -|[SPBlobCacheSettings](SPBlobCacheSettings) | Specific | - | -|[SPCacheAccounts](SPCacheAccounts) | Distributed | - | -|[SPCertificate](SPCertificate) | Distributed | - | -|[SPCertificateSettings](SPCertificate) | Distributed | - | -|[SPConfigWizard](SPConfigWizard) | Utility | - | -|[SPContentDatabase](SPContentDatabase) | Distributed | - | -|[SPDatabaseAAG](SPDatabaseAAG) | Distributed | - | -|[SPDesignerSettings](SPDesignerSettings) | Distributed | - | -|[SPDiagnosticLoggingSettings](SPDiagnosticLoggingSettings) | Distributed | - | -|[SPDiagnosticsProvider](SPDiagnosticsProvider) | Distributed | - | -|[SPDistributedCacheClientSettings](SPDistributedCacheClientSettings) | Distributed | - | -|[SPDistributedCacheService](SPDistributedCacheService) | Specific | - | -|[SPDocIcon](SPDocIcon) | Common | - | -|[SPExcelServiceApp](SPExcelServiceApp) | Distributed | - | -|[SPFarm](SPFarm) | Specific | - | -|[SPFarmAdministrators](SPFarmAdministrators) | Distributed | - | -|[SPFarmPropertyBag](SPFarmPropertyBag) | Distributed | - | -|[SPFarmSolution](SPFarmSolution) | Distributed | - | -|[SPFeature](SPFeature) | Distributed | - | -|[SPHealthAnalyzerRuleState](SPHealthAnalyzerRuleState) | Distributed | - | -|[SPIncomingEmailSettings](SPIncomingEmailSettings) | Distributed | - | -|[SPInfoPathFormsServiceConfig](SPInfoPathFormsServiceConfig) | Distributed | - | -|[SPInstall](SPInstall) | Common | - | -|[SPInstallLanguagePack](SPInstallLanguagePack) | Common | - | -|[SPInstallPrereqs](SPInstallPrereqs) | Common | - | -|[SPIrmSettings](SPIrmSettings) | Distributed | - | -|[SPLogLevel](SPLogLevel) | Distributed | - | -|[SPMachineTranslationServiceApp](SPMachineTranslationServiceApp) | Distributed | - | -|[SPManagedAccount](SPManagedAccount) | Distributed | - | -|[SPManagedMetaDataServiceApp](SPManagedMetaDataServiceApp) | Distributed | - | -|[SPManagedMetaDataServiceAppDefault](SPManagedMetaDataServiceAppDefault) | Distributed | - | -|[SPManagedPath](SPManagedPath) | Distributed | - | -|[SPMinRoleCompliance](SPMinRoleCompliance) | Utility | - | -|[SPOAppPrincipalMgmtServiceAppProxy](SPOAppPrincipalMgmtServiceAppProxy) | Distributed | - | -|[SPOfficeOnlineServerBinding](SPOfficeOnlineServerBinding) | Distributed | - | -|[SPOfficeOnlineServerSupressionSettings](SPOfficeOnlineServerSupressionSettings) | Distributed | - | -|[SPOutgoingEmailSettings](SPOutgoingEmailSettings) | Distributed | - | -|[SPPasswordChangeSettings](SPPasswordChangeSettings) | Distributed | - | -|[SPPerformancePointServiceApp](SPPerformancePointServiceApp) | Distributed | - | -|[SPPowerPointAutomationServiceApp](SPPowerPointAutomationServiceApp) | Distributed | - | -|[SPProductUpdate](SPProductUpdate) | Common | - | -|[SPProjectServerAdditionalSettings](SPProjectServerAdditionalSettings) | Distributed | - | -|[SPProjectServerADResourcePoolSync](SPProjectServerADResourcePoolSync) | Distributed | - | -|[SPProjectServerGlobalPermissions](SPProjectServerGlobalPermissions) | Distributed | - | -|[SPProjectServerGroup](SPProjectServerGroup) | Distributed | - | -|[SPProjectServerLicense](SPProjectServerLicense) | Distributed | - | -|[SPProjectServerPermissionMode](SPProjectServerPermissionMode) | Distributed | - | -|[SPProjectServerServiceApp](SPProjectServerServiceApp) | Distributed | - | -|[SPProjectServerTimeSheetSettings](SPProjectServerTimeSheetSettings) | Distributed | - | -|[SPProjectServerUserSyncSettings](SPProjectServerUserSyncSettings) | Distributed | - | -|[SPProjectServerWssSettings](SPProjectServerWssSettings) | Distributed | - | -|[SPPublishServiceApplication](SPPublishServiceApplication) | Distributed | - | -|[SPQuotaTemplate](SPQuotaTemplate) | Distributed | - | -|[SPRemoteFarmTrust](SPRemoteFarmTrust) | Distributed | - | -|[SPSearchAuthoritivePage](SPSearchAuthoritivePage) | Distributed | - | -|[SPSearchContentSource](SPSearchContentSource) | Distributed | - | -|[SPSearchCrawlerImpactRule](SPSearchCrawlerImpactRule) | Distributed | - | -|[SPSearchCrawlMapping](SPSearchCrawlMapping) | Distributed | - | -|[SPSearchCrawlRule](SPSearchCrawlRule) | Distributed | - | -|[SPSearchFileType](SPSearchFileType) | Distributed | - | -|[SPSearchIndexPartition](SPSearchIndexPartition) | Distributed | - | -|[SPSearchManagedProperty](SPSearchManagedProperty) | Distributed | - | -|[SPSearchMetadataCategory](SPSearchMetadataCategory) | Distributed | - | -|[SPSearchResultSource](SPSearchResultSource) | Distributed | - | -|[SPSearchServiceApp](SPSearchServiceApp) | Distributed | - | -|[SPSearchServiceSettings](SPSearchServiceSettings) | Distributed | - | -|[SPSearchTopology](SPSearchTopology) | Distributed | - | -|[SPSecureStoreServiceApp](SPSecureStoreServiceApp) | Distributed | - | -|[SPSecurityTokenServiceConfig](SPSecurityTokenServiceConfig) | Distributed | - | -|[SPSelfServiceSiteCreation](SPSelfServiceSiteCreation) | Distributed | - | -|[SPService](SPService) | Distributed | - | -|[SPServiceAppPool](SPServiceAppPool) | Distributed | - | -|[SPServiceAppProxyGroup](SPServiceAppProxyGroup) | Distributed | - | -|[SPServiceAppSecurity](SPServiceAppSecurity) | Distributed | - | -|[SPServiceIdentity](SPServiceIdentity) | Distributed | - | -|[SPServiceInstance](SPServiceInstance) | Specific | - | -|[SPSessionStateService](SPSessionStateService) | Distributed | - | -|[SPShellAdmins](SPShellAdmins) | Distributed | - | -|[SPSite](SPSite) | Distributed | - | -|[SPSitePropertyBag](SPSitePropertyBag) | Distributed | - | -|[SPSiteUrl](SPSiteUrl) | Distributed | - | -|[SPStateServiceApp](SPStateServiceApp) | Distributed | - | -|[SPSubscriptionSettingsServiceApp](SPSubscriptionSettingsServiceApp) | Distributed | - | -|[SPTimerJobState](SPTimerJobState) | Distributed | - | -|[SPTrustedIdentityTokenIssuer](SPTrustedIdentityTokenIssuer) | Distributed | - | -|[SPTrustedIdentityTokenIssuerProviderRealms](SPTrustedIdentityTokenIssuerProviderRealms) | Distributed | - | -|[SPTrustedRootAuthority](SPTrustedRootAuthority) | Distributed | - | -|[SPTrustedSecurityTokenIssuer](SPTrustedSecurityTokenIssuer) | Distributed | - | -|[SPUsageApplication](SPUsageApplication) | Distributed | - | -|[SPUsageDefinition](SPUsageDefinition) | Distributed | - | -|[SPUserProfileProperty](SPUserProfileProperty) | Distributed | - | -|[SPUserProfileSection](SPUserProfileSection) | Distributed | - | -|[SPUserProfileServiceApp](SPUserProfileServiceApp) | Distributed | - | Yes | -|[SPUserProfileServiceAppPermissions](SPUserProfileServiceAppPermissions) | Distributed | - | -|[SPUserProfileSyncConnection](SPUserProfileSyncConnection) | Distributed | - | -|[SPUserProfileSyncService](SPUserProfileSyncService) | Specific | Yes | -|[SPVisioServiceApp](SPVisioServiceApp) | Distributed | - | -|[SPWeb](SPWeb) | Distributed | - | -|[SPWebAppAuthentication](SPWebAppAuthentication) | Distributed | - | -|[SPWebAppBlockedFileTypes](SPWebAppBlockedFileTypes) | Distributed | - | -|[SPWebAppClientCallableSettings](SPWebAppClientCallableSettings) | Distributed | - | -|[SPWebAppGeneralSettings](SPWebAppGeneralSettings) | Distributed | - | -|[SPWebAppHttpThrottlingMonitor](SPWebAppHttpThrottlingMonitor) | Distributed | - | -|[SPWebApplication](SPWebApplication) | Distributed | - | -|[SPWebApplicationAppDomain](SPWebApplicationAppDomain) | Distributed | - | -|[SPWebApplicationExtension](SPWebApplicationExtension) | Distributed | - | -|[SPWebAppPeoplePickerSettings](SPWebAppPeoplePickerSettings) | Distributed | - | -|[SPWebAppPermissions](SPWebAppPermissions) | Distributed | - | -|[SPWebAppPolicy](SPWebAppPolicy) | Distributed | - | -|[SPWebAppPropertyBag](SPWebAppPropertyBag) | Distributed | - | -|[SPWebAppProxyGroup](SPWebAppProxyGroup) | Distributed | - | -|[SPWebAppSiteUseAndDeletion](SPWebAppSiteUseAndDeletion) | Distributed | - | -|[SPWebAppSuiteBar](SPWebAppSuiteBar) | Distributed | - | -|[SPWebAppThrottlingSettings](SPWebAppThrottlingSettings) | Distributed | - | -|[SPWebAppWorkflowSettings](SPWebAppWorkflowSettings) | Distributed | - | -|[SPWordAutomationServiceApp](SPWordAutomationServiceApp) | Distributed | - | -|[SPWorkflowService](SPWorkflowService) | Distributed | - | -|[SPWorkManagementServiceApp](SPWorkManagementServiceApp) | Distributed | - | +|_[SPAccessServiceApp](SPAccessServiceApp)_ | Distributed | - | +|_[SPAccessServices2010](SPAccessServices2010)_ | Distributed | - | +|_[SPAlternateUrl](SPAlternateUrl)_ | Distributed | - | +|_[SPAntivirusSettings](SPAntivirusSettings)_ | Distributed | - | +|_[SPAppCatalog](SPAppCatalog)_ | Distributed | Yes | +|_[SPAppDomain](SPAppDomain)_ | Distributed | - | +|_[SPAppManagementServiceApp](SPAppManagementServiceApp)_ | Distributed | - | +|_[SPAppStoreSettings](SPAppStoreSettings)_ | Distributed | - | +|_[SPAuthenticationRealm](SPAuthenticationRealm)_ | Distributed | - | +|_[SPAzureAccessControlServiceAppProxy](SPAzureAccessControlServiceAppProxy)_ | Distributed | - | +|_[SPBCSServiceApp](SPBCSServiceApp)_ | Distributed | - | +|_[SPBlobCacheSettings](SPBlobCacheSettings)_ | Specific | - | +|_[SPCacheAccounts](SPCacheAccounts)_ | Distributed | - | +|_[SPCertificate](SPCertificate)_ | Distributed | - | +|_[SPCertificateSettings](SPCertificate)_ | Distributed | - | +|_[SPConfigWizard](SPConfigWizard)_ | Utility | - | +|_[SPContentDatabase](SPContentDatabase)_ | Distributed | - | +|_[SPDatabaseAAG](SPDatabaseAAG)_ | Distributed | - | +|_[SPDesignerSettings](SPDesignerSettings)_ | Distributed | - | +|_[SPDiagnosticLoggingSettings](SPDiagnosticLoggingSettings)_ | Distributed | - | +|_[SPDiagnosticsProvider](SPDiagnosticsProvider)_ | Distributed | - | +|_[SPDistributedCacheClientSettings](SPDistributedCacheClientSettings)_ | Distributed | - | +|_[SPDistributedCacheService](SPDistributedCacheService)_ | Specific | - | +|_[SPDocIcon](SPDocIcon)_ | Common | - | +|_[SPExcelServiceApp](SPExcelServiceApp)_ | Distributed | - | +|_[SPFarm](SPFarm)_ | Specific | - | +|_[SPFarmAdministrators](SPFarmAdministrators)_ | Distributed | - | +|_[SPFarmPropertyBag](SPFarmPropertyBag)_ | Distributed | - | +|_[SPFarmSolution](SPFarmSolution)_ | Distributed | - | +|_[SPFeature](SPFeature)_ | Distributed | - | +|_[SPHealthAnalyzerRuleState](SPHealthAnalyzerRuleState)_ | Distributed | - | +|_[SPIncomingEmailSettings](SPIncomingEmailSettings)_ | Distributed | - | +|_[SPInfoPathFormsServiceConfig](SPInfoPathFormsServiceConfig)_ | Distributed | - | +|_[SPInstall](SPInstall)_ | Common | - | +|_[SPInstallLanguagePack](SPInstallLanguagePack)_ | Common | - | +|_[SPInstallPrereqs](SPInstallPrereqs)_ | Common | - | +|_[SPIrmSettings](SPIrmSettings)_ | Distributed | - | +|_[SPLogLevel](SPLogLevel)_ | Distributed | - | +|_[SPMachineTranslationServiceApp](SPMachineTranslationServiceApp)_ | Distributed | - | +|_[SPManagedAccount](SPManagedAccount)_ | Distributed | - | +|_[SPManagedMetaDataServiceApp](SPManagedMetaDataServiceApp)_ | Distributed | - | +|_[SPManagedMetaDataServiceAppDefault](SPManagedMetaDataServiceAppDefault)_ | Distributed | - | +|_[SPManagedPath](SPManagedPath)_ | Distributed | - | +|_[SPMinRoleCompliance](SPMinRoleCompliance)_ | Utility | - | +|_[SPOAppPrincipalMgmtServiceAppProxy](SPOAppPrincipalMgmtServiceAppProxy)_ | Distributed | - | +|_[SPOfficeOnlineServerBinding](SPOfficeOnlineServerBinding)_ | Distributed | - | +|_[SPOfficeOnlineServerSupressionSettings](SPOfficeOnlineServerSupressionSettings)_ | Distributed | - | +|_[SPOutgoingEmailSettings](SPOutgoingEmailSettings)_ | Distributed | - | +|_[SPPasswordChangeSettings](SPPasswordChangeSettings)_ | Distributed | - | +|_[SPPerformancePointServiceApp](SPPerformancePointServiceApp)_ | Distributed | - | +|_[SPPowerPointAutomationServiceApp](SPPowerPointAutomationServiceApp)_ | Distributed | - | +|_[SPProductUpdate](SPProductUpdate)_ | Common | - | +|_[SPProjectServerAdditionalSettings](SPProjectServerAdditionalSettings)_ | Distributed | - | +|_[SPProjectServerADResourcePoolSync](SPProjectServerADResourcePoolSync)_ | Distributed | - | +|_[SPProjectServerGlobalPermissions](SPProjectServerGlobalPermissions)_ | Distributed | - | +|_[SPProjectServerGroup](SPProjectServerGroup)_ | Distributed | - | +|_[SPProjectServerLicense](SPProjectServerLicense)_ | Distributed | - | +|_[SPProjectServerPermissionMode](SPProjectServerPermissionMode)_ | Distributed | - | +|_[SPProjectServerServiceApp](SPProjectServerServiceApp)_ | Distributed | - | +|_[SPProjectServerTimeSheetSettings](SPProjectServerTimeSheetSettings)_ | Distributed | - | +|_[SPProjectServerUserSyncSettings](SPProjectServerUserSyncSettings)_ | Distributed | - | +|_[SPProjectServerWssSettings](SPProjectServerWssSettings)_ | Distributed | - | +|_[SPPublishServiceApplication](SPPublishServiceApplication)_ | Distributed | - | +|_[SPQuotaTemplate](SPQuotaTemplate)_ | Distributed | - | +|_[SPRemoteFarmTrust](SPRemoteFarmTrust)_ | Distributed | - | +|_[SPSearchAuthoritivePage](SPSearchAuthoritivePage)_ | Distributed | - | +|_[SPSearchContentSource](SPSearchContentSource)_ | Distributed | - | +|_[SPSearchCrawlerImpactRule](SPSearchCrawlerImpactRule)_ | Distributed | - | +|_[SPSearchCrawlMapping](SPSearchCrawlMapping)_ | Distributed | - | +|_[SPSearchCrawlRule](SPSearchCrawlRule)_ | Distributed | - | +|_[SPSearchFileType](SPSearchFileType)_ | Distributed | - | +|_[SPSearchIndexPartition](SPSearchIndexPartition)_ | Distributed | - | +|_[SPSearchManagedProperty](SPSearchManagedProperty)_ | Distributed | - | +|_[SPSearchMetadataCategory](SPSearchMetadataCategory)_ | Distributed | - | +|_[SPSearchResultSource](SPSearchResultSource)_ | Distributed | - | +|_[SPSearchServiceApp](SPSearchServiceApp)_ | Distributed | - | +|_[SPSearchServiceSettings](SPSearchServiceSettings)_ | Distributed | - | +|_[SPSearchTopology](SPSearchTopology)_ | Distributed | - | +|_[SPSecureStoreServiceApp](SPSecureStoreServiceApp)_ | Distributed | - | +|_[SPSecurityTokenServiceConfig](SPSecurityTokenServiceConfig)_ | Distributed | - | +|_[SPSelfServiceSiteCreation](SPSelfServiceSiteCreation)_ | Distributed | - | +|_[SPService](SPService)_ | Distributed | - | +|_[SPServiceAppPool](SPServiceAppPool)_ | Distributed | - | +|_[SPServiceAppProxyGroup](SPServiceAppProxyGroup)_ | Distributed | - | +|_[SPServiceAppSecurity](SPServiceAppSecurity)_ | Distributed | - | +|_[SPServiceIdentity](SPServiceIdentity)_ | Distributed | - | +|_[SPServiceInstance](SPServiceInstance)_ | Specific | - | +|_[SPSessionStateService](SPSessionStateService)_ | Distributed | - | +|_[SPShellAdmins](SPShellAdmins)_ | Distributed | - | +|_[SPSite](SPSite)_ | Distributed | - | +|_[SPSitePropertyBag](SPSitePropertyBag)_ | Distributed | - | +|_[SPSiteUrl](SPSiteUrl)_ | Distributed | - | +|_[SPStateServiceApp](SPStateServiceApp)_ | Distributed | - | +|_[SPSubscriptionSettingsServiceApp](SPSubscriptionSettingsServiceApp)_ | Distributed | - | +|_[SPTimerJobState](SPTimerJobState)_ | Distributed | - | +|_[SPTrustedIdentityTokenIssuer](SPTrustedIdentityTokenIssuer)_ | Distributed | - | +|_[SPTrustedIdentityTokenIssuerProviderRealms](SPTrustedIdentityTokenIssuerProviderRealms)_ | Distributed | - | +|_[SPTrustedRootAuthority](SPTrustedRootAuthority)_ | Distributed | - | +|_[SPTrustedSecurityTokenIssuer](SPTrustedSecurityTokenIssuer)_ | Distributed | - | +|_[SPUsageApplication](SPUsageApplication)_ | Distributed | - | +|_[SPUsageDefinition](SPUsageDefinition)_ | Distributed | - | +|_[SPUserProfileProperty](SPUserProfileProperty)_ | Distributed | - | +|_[SPUserProfileSection](SPUserProfileSection)_ | Distributed | - | +|_[SPUserProfileServiceApp](SPUserProfileServiceApp)_ | Distributed | - | Yes | +|_[SPUserProfileServiceAppPermissions](SPUserProfileServiceAppPermissions)_ | Distributed | - | +|_[SPUserProfileSyncConnection](SPUserProfileSyncConnection)_ | Distributed | - | +|_[SPUserProfileSyncService](SPUserProfileSyncService)_ | Specific | Yes | +|_[SPVisioServiceApp](SPVisioServiceApp)_ | Distributed | - | +|_[SPWeb](SPWeb)_ | Distributed | - | +|_[SPWebAppAuthentication](SPWebAppAuthentication)_ | Distributed | - | +|_[SPWebAppBlockedFileTypes](SPWebAppBlockedFileTypes)_ | Distributed | - | +|_[SPWebAppClientCallableSettings](SPWebAppClientCallableSettings)_ | Distributed | - | +|_[SPWebAppGeneralSettings](SPWebAppGeneralSettings)_ | Distributed | - | +|_[SPWebAppHttpThrottlingMonitor](SPWebAppHttpThrottlingMonitor)_ | Distributed | - | +|_[SPWebApplication](SPWebApplication)_ | Distributed | - | +|_[SPWebApplicationAppDomain](SPWebApplicationAppDomain)_ | Distributed | - | +|_[SPWebApplicationExtension](SPWebApplicationExtension)_ | Distributed | - | +|_[SPWebAppPeoplePickerSettings](SPWebAppPeoplePickerSettings)_ | Distributed | - | +|_[SPWebAppPermissions](SPWebAppPermissions)_ | Distributed | - | +|_[SPWebAppPolicy](SPWebAppPolicy)_ | Distributed | - | +|_[SPWebAppPropertyBag](SPWebAppPropertyBag)_ | Distributed | - | +|_[SPWebAppProxyGroup](SPWebAppProxyGroup)_ | Distributed | - | +|_[SPWebAppSiteUseAndDeletion](SPWebAppSiteUseAndDeletion)_ | Distributed | - | +|_[SPWebAppSuiteBar](SPWebAppSuiteBar)_ | Distributed | - | +|_[SPWebAppThrottlingSettings](SPWebAppThrottlingSettings)_ | Distributed | - | +|_[SPWebAppWorkflowSettings](SPWebAppWorkflowSettings)_ | Distributed | - | +|_[SPWordAutomationServiceApp](SPWordAutomationServiceApp)_ | Distributed | - | +|_[SPWorkflowService](SPWorkflowService)_ | Distributed | - | +|_[SPWorkManagementServiceApp](SPWorkManagementServiceApp)_ | Distributed | - | ## Using the Script resource in configurations with SharePointDsc Check-out this [article](Using-the-Script-resource-in-configurations-that-use-SharePointDsc) if you want to use the Script resource to implement custom functionality that is not included in SharePointDsc. -> Of course you can also create an issue in the issue list to request the functionality to be added. Sharing code that you already have will greatly speed up the development effort. \ No newline at end of file +> Of course you can also create an issue in the issue list to request the functionality to be added. Sharing code that you already have will greatly speed up the development effort. diff --git a/SharePointDsc/WikiSource/Using-CredSSP-on-a-Domain-Controller.md b/SharePointDsc/WikiSource/Using-CredSSP-on-a-Domain-Controller.md index e97fd215d..44635e555 100644 --- a/SharePointDsc/WikiSource/Using-CredSSP-on-a-Domain-Controller.md +++ b/SharePointDsc/WikiSource/Using-CredSSP-on-a-Domain-Controller.md @@ -22,4 +22,4 @@ setspn -S wsman/server1.domain.com server1 setspn -S wsman/server1 server1 ``` -After configuring these SPNs, CredSSP will run as expected again! \ No newline at end of file +After configuring these SPNs, CredSSP will run as expected again! diff --git a/SharePointDsc/WikiSource/Using-the-Script-resource-in-configurations-that-use-SharePointDsc.md b/SharePointDsc/WikiSource/Using-the-Script-resource-in-configurations-that-use-SharePointDsc.md index 6ef142ac0..82d2606d3 100644 --- a/SharePointDsc/WikiSource/Using-the-Script-resource-in-configurations-that-use-SharePointDsc.md +++ b/SharePointDsc/WikiSource/Using-the-Script-resource-in-configurations-that-use-SharePointDsc.md @@ -16,4 +16,4 @@ Script SPDscExample } ``` -If you need to pass a credential or additional arguments, you can use the -Credential and -Arguments parameters for these purposes also. \ No newline at end of file +If you need to pass a credential or additional arguments, you can use the -Credential and -Arguments parameters for these purposes also. diff --git a/SharePointDsc/WikiSource/_Footer.md b/SharePointDsc/WikiSource/_Footer.md index f7b23b61f..825189b8f 100644 --- a/SharePointDsc/WikiSource/_Footer.md +++ b/SharePointDsc/WikiSource/_Footer.md @@ -1 +1 @@ -![SharePointDSC](media/footer.png "SharePointDsc") \ No newline at end of file +![SharePointDSC](media/footer.png "SharePointDsc") diff --git a/SharePointDsc/WikiSource/_Sidebar.md b/SharePointDsc/WikiSource/_Sidebar.md index adfcc0ddd..de65a4118 100644 --- a/SharePointDsc/WikiSource/_Sidebar.md +++ b/SharePointDsc/WikiSource/_Sidebar.md @@ -1,14 +1,14 @@ # SharePointDsc Module -- [Home](Home) -- [Getting Started](Getting-Started) -- [Pre-requisites](Prerequisites) -- [Installing the module](Installing-the-module) -- [Exporting SharePoint Configuration](Export-SharePoint-Configuration) -- [Creating Configuration Files](Creating-Configuration-Files) -- [Pre-created Examples](https://github.com/dsccommunity/SharePointDsc/tree/master/SharePointDsc/Examples) -- [Creating an Azure development environment](Creating-an-Azure-development-environment) -- [Understanding Resources & Syntax](Understanding-Resources) -- [Remote PowerShell Authentication](Remote-sessions-and-the-InstallAccount-variable) -- [Contributing to SharePointDsc](Contributing-to-SharePointDsc) -- [Other useful modules for SharePoint DSC configurations](Other-useful-modules-for-SharePoint-DSC-configurations) +- _[Home](Home)_ +- _[Getting Started](Getting-Started)_ +- _[Pre-requisites](Prerequisites)_ +- _[Installing the module](Installing-the-module)_ +- _[Exporting SharePoint Configuration](Export-SharePoint-Configuration)_ +- _[Creating Configuration Files](Creating-Configuration-Files)_ +- _[Pre-created Examples](https://github.com/dsccommunity/SharePointDsc/tree/master/SharePointDsc/Examples)_ +- _[Creating an Azure development environment](Creating-an-Azure-development-environment)_ +- _[Understanding Resources & Syntax](Understanding-Resources)_ +- _[Remote PowerShell Authentication](Remote-sessions-and-the-InstallAccount-variable)_ +- _[Contributing to SharePointDsc](Contributing-to-SharePointDsc)_ +- _[Other useful modules for SharePoint DSC configurations](Other-useful-modules-for-SharePoint-DSC-configurations)_