Wednesday, June 19, 2013

SharePoint 2013: Configure State Service

To do this simply change the names to whatever you want, copy each line below individually into the command shell and press enter after each.

>$stateName = “State Service”
>$stateDBName = “State_Service_DB”
>$stateDB = New-SPStateServiceDatabase -Name $stateDBName
>$state = New-SPStateServiceApplication -Name $stateName -Database $stateDB
>New-SPStateServiceApplicationProxy -Name ”$stateName Proxy” -ServiceApplication $state –DefaultProxyGroup

When you have successfully configured the State Service you will see this in your powershell window:
Image

No comments:

Post a Comment

Thank you for your comments!