Steps Involved:
Powershell Script: ## Remove permission for the group from SharePoint 2010 list using web service in powershell$uri="http://serverName:10736/sites/ECT2/_vti_bin/Permissions.asmx?wsdl" ## $listName is a string which contains the list name from which user permission has to be removed[String]$listName="A1"## $type is a string which contains the object type - List[String]$type="List"## $permissionIdentifier is a string which contains the group for which the permission has to be removed[String]$permissionIdentifier="Group3"## $permissionType is a string which contains the permission type - user[String]$permissionType="group"## Web Service Reference - http://Site/_vti_bin/Permissions.asmx$permissionWebServiceReference = New-WebServiceProxy -Uri $uri -UseDefaultCredential $permissionWebServiceReference.RemovePermission($listName,$type,$permissionIdentifier,$permissionType)
## Remove permission for the group from SharePoint 2010 list using web service in powershell$uri="http://serverName:10736/sites/ECT2/_vti_bin/Permissions.asmx?wsdl" ## $listName is a string which contains the list name from which user permission has to be removed[String]$listName="A1"## $type is a string which contains the object type - List[String]$type="List"## $permissionIdentifier is a string which contains the group for which the permission has to be removed[String]$permissionIdentifier="Group3"## $permissionType is a string which contains the permission type - user[String]$permissionType="group"## Web Service Reference - http://Site/_vti_bin/Permissions.asmx$permissionWebServiceReference = New-WebServiceProxy -Uri $uri -UseDefaultCredential $permissionWebServiceReference.RemovePermission($listName,$type,$permissionIdentifier,$permissionType)