Skip to content

Commit

Permalink
Merge pull request #942 from PowerShell/release-2.6
Browse files Browse the repository at this point in the history
Release 2.6
  • Loading branch information
kwirkykat authored Oct 24, 2018
2 parents 0d3f59e + db86c28 commit 8bebbf5
Show file tree
Hide file tree
Showing 75 changed files with 6,012 additions and 511 deletions.
53 changes: 53 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,58 @@
# Change log for SharePointDsc

## 2.6

* SPFarm
* Fixed issue where Central Admin service was not starting for non-english farms
* SPManagedMetadataServiceApp
* Added additional content type settings (ContentTypePushdownEnabled &
ContentTypeSyndicationEnabled).
* Fixed issue where Get method would throw an error when the proxy did not exist.
* Fixed an issue where the resource checks if the proxy exists and if not, it is
created.
* SPSearchContentSource
* Fixed issue with numerical Content Sources name
* Fixed issue where the code throws an error when the content source cannot be
successfully created
* SPSearchManagedProperty
* Added a new resource to support Search Managed Properties
* Fix for multiple aliases
* SPSearchResultSource
* Added a new ScopeUrl parameter to allow for local source creation
* SPSearchTopology
* Updated Readme.md to remove some incorrect information
* Fixed logic to handle the FirstPartitionDirectory in Get-TargetResource
* SPSelfServiceSiteCreation
* New resource to manage self-service site creation
* SPServiceAppSecurity
* Added local farm token.
* Fixed issues that prevented the resource to work as expected in many situations.
* SPSite
* Added the possibility for creating the default site groups
* Added the possibility to set AdministrationSiteType
* Fixed test method that in some cases always would return false
* Fixed a typo in the values to check for AdministrationSiteType
* Fixed an access denied issue when creating default site groups
when the run as account does not have proper permissions for the site
* SPTrustedIdentityTokenIssuer
* Added parameter UseWReplyParameter
* SPUserProfileServiceApp
* Fixed issue which was introduced in v2.5 where the service application proxy
was not created.
* Updated resource to grant the InstallAccount permissions to a newly created service
application to prevent issues in the Get method.
* SPUserProfileSyncConnection
* Fixed issue where empty IncludedOUs and ExcludedOUs would throw an error
* SPWebAppClientCallableSettings
* New resource to manage web application client callable settings including
proxy libraries.
* SPWebAppPropertyBag
* New resource to manage web application property bag
* SPWebAppSuiteBar
* Fixed incorrect test method that resulted in this resource to never apply changes.
* Enable usage of SuiteBarBrandingElementHtml for SharePoint 2016
(only supported if using a SharePoint 2013 masterpage)

## 2.5

* SPAppCatalog
Expand Down
14 changes: 7 additions & 7 deletions Modules/SharePointDsc/DSCResources/MSFT_SPFarm/MSFT_SPFarm.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ function Get-TargetResource
$centralAdminProvisioned = $false
$ca = Get-SPServiceInstance -Server $env:ComputerName `
| Where-Object -Filterscript {
$_.TypeName -eq "Central Administration" -and $_.Status -eq "Online"
$_.Name -eq "WSS_Administration" -and $_.Status -eq "Online"
}
if ($null -ne $ca)
{
Expand Down Expand Up @@ -358,15 +358,15 @@ function Set-TargetResource
{
$serviceInstance = Get-SPServiceInstance -Server $env:COMPUTERNAME `
| Where-Object -FilterScript {
$_.TypeName -eq "Central Administration"
$_.Name -eq "WSS_Administration"
}
if ($null -eq $serviceInstance)
{
$domain = (Get-CimInstance -ClassName Win32_ComputerSystem).Domain
$fqdn = "$($env:COMPUTERNAME).$domain"
$serviceInstance = Get-SPServiceInstance -Server $fqdn `
| Where-Object -FilterScript {
$_.TypeName -eq "Central Administration"
$_.Name -eq "WSS_Administration"
}
}
if ($null -eq $serviceInstance)
Expand All @@ -380,15 +380,15 @@ function Set-TargetResource
# Unprovision central administration
$serviceInstance = Get-SPServiceInstance -Server $env:COMPUTERNAME `
| Where-Object -FilterScript {
$_.TypeName -eq "Central Administration"
$_.Name -eq "WSS_Administration"
}
if ($null -eq $serviceInstance)
{
$domain = (Get-CimInstance -ClassName Win32_ComputerSystem).Domain
$fqdn = "$($env:COMPUTERNAME).$domain"
$serviceInstance = Get-SPServiceInstance -Server $fqdn `
| Where-Object -FilterScript {
$_.TypeName -eq "Central Administration"
$_.Name -eq "WSS_Administration"
}
}
if ($null -eq $serviceInstance)
Expand Down Expand Up @@ -600,15 +600,15 @@ function Set-TargetResource
{
$serviceInstance = Get-SPServiceInstance -Server $env:COMPUTERNAME `
| Where-Object -FilterScript {
$_.TypeName -eq "Central Administration"
$_.Name -eq "WSS_Administration"
}
if ($null -eq $serviceInstance)
{
$domain = (Get-CimInstance -ClassName Win32_ComputerSystem).Domain
$fqdn = "$($env:COMPUTERNAME).$domain"
$serviceInstance = Get-SPServiceInstance -Server $fqdn `
| Where-Object -FilterScript {
$_.TypeName -eq "Central Administration"
$_.Name -eq "WSS_Administration"
}
}
if ($null -eq $serviceInstance)
Expand Down
Loading

0 comments on commit 8bebbf5

Please sign in to comment.