Update the document workspace site title using SharePoint 2010 web service in powershell

Steps Involved:

  1. Open SharePoint 2010 Management Shell by going to Start | All Programs | SharePoint | Microsoft SharePoint 2010 Products | SharePoint 2010 Management Shell (Run as Administrator).
  2. Run the following script.

Powershell Script:

 
 
## Update the document workspace site title using SharePoint 2010 web service in powershell
$uri="http://serverName:10736/sites/ECT2/DWS/_vti_bin/DWS.asmx?wsdl"
## $title is a string which contains the new title for document workspace site
[
String]$title="DWS Renamed"

## Web Service Reference - http://Site/_vti_bin/DWS.asmx
$dwsWebServiceReference = New-WebServiceProxy -Uri $uri -UseDefaultCredential
$dwsWebServiceReference.RenameDws($title)


Output:


output.jpg