Skip to content

Commit

Permalink
Merge pull request #1341 from ykuijs/SPWebAppHttpThrottlingMonitor
Browse files Browse the repository at this point in the history
  • Loading branch information
ykuijs committed Aug 24, 2021
2 parents 6e73437 + 8eb096a commit 59601b6
Show file tree
Hide file tree
Showing 13 changed files with 1,163 additions and 14 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- SPWebAppHttpThrottlingMonitor
- Added new resource to manage web application Http Throttling Monitor settings

### Changed

- SPFarm
Expand All @@ -16,9 +21,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- SPAppDomain
- Corrected Verbose logging in Test method
- Corrected issue in Get method where ErrorAction had to be SilentlyContinue
- SPContentDatabase
- Fixed issue where WebAppUrl in the Desired State would cause the test to fail, always resulting
in False.
- SPExcelServiceApp
- Updated links to Docs instead of old TechNet
- SPInstallLanguagePack
- Fixed detection of Norwegian language pack
- SPManagedMetaDataServiceApp
Expand All @@ -28,6 +38,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed issue where an error was thrown if the specified RootDirectory didn't exist on the
current server but did exist on the target server.
- Fixed issue with using FQDNs instead of NetBIOS server names.
- SPWorkManagementServiceApp
- Updated links to Docs instead of old TechNet

## [4.7.0] - 2021-06-10

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function Get-TargetResource
-ScriptBlock {
$params = $args[0]
$appDomain = Get-SPAppDomain
$prefix = Get-SPAppSiteSubscriptionName -ErrorAction Continue
$prefix = Get-SPAppSiteSubscriptionName -ErrorAction SilentlyContinue

return @{
AppDomain = $appDomain
Expand Down Expand Up @@ -86,7 +86,7 @@ function Test-TargetResource
$InstallAccount
)

Write-Verbose -Message "Getting app domain settings"
Write-Verbose -Message "Testing app domain settings"

$CurrentValues = Get-TargetResource @PSBoundParameters

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ function Get-TargetResource
$message = ("Only SharePoint 2013 is supported to deploy Excel Services " + `
"service applications via DSC, as SharePoint 2016 and SharePoint 2019 deprecated " + `
"this service. See " + `
"https://technet.microsoft.com/en-us/library/mt346112(v=office.16).aspx " + `
"https://docs.microsoft.com/en-us/SharePoint/what-s-new/what-s-deprecated-or-removed-from-sharepoint-server-2016 " + `
"for more info.")
Add-SPDscEvent -Message $message `
-EntryType 'Error' `
Expand Down Expand Up @@ -324,7 +324,7 @@ function Set-TargetResource
$message = ("Only SharePoint 2013 is supported to deploy Excel Services " + `
"service applications via DSC, as SharePoint 2016 and SharePoint 2019 deprecated " + `
"this service. See " + `
"https://technet.microsoft.com/en-us/library/mt346112(v=office.16).aspx " + `
"https://docs.microsoft.com/en-us/SharePoint/what-s-new/what-s-deprecated-or-removed-from-sharepoint-server-2016 " + `
"for more info.")
Add-SPDscEvent -Message $message `
-EntryType 'Error' `
Expand Down Expand Up @@ -591,7 +591,7 @@ function Test-TargetResource
$message = ("Only SharePoint 2013 is supported to deploy Excel Services " + `
"service applications via DSC, as SharePoint 2016 and SharePoint 2019 deprecated " + `
"this service. See " + `
"https://technet.microsoft.com/en-us/library/mt346112(v=office.16).aspx " + `
"https://docs.microsoft.com/en-us/SharePoint/what-s-new/what-s-deprecated-or-removed-from-sharepoint-server-2016 " + `
"for more info.")
Add-SPDscEvent -Message $message `
-EntryType 'Error' `
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ parameter, the service application is provisioned.

Only SharePoint 2013 is supported to deploy Excel Services service applications via DSC,
as SharePoint 2016 and SharePoint 2019 have deprecated this service. See
[What's deprecated or removed from SharePoint Server 2016](https://technet.microsoft.com/en-us/library/mt346112(v=office.16).aspx)
[What's deprecated or removed from SharePoint Server 2016](https://docs.microsoft.com/en-us/SharePoint/what-s-new/what-s-deprecated-or-removed-from-sharepoint-server-2016)
for more info.

0 comments on commit 59601b6

Please sign in to comment.