Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
SharePoint : 2013 PowerShell script to enable email on Task List
Add-PSSnapin Microsoft.SharePoint.Powershell $web = Get-SPWeb "http://myServer/myWeb" $list = $web.Lists.TryGetList("Tasks") $list.EnableAssignToEmail = $true $list.Update() |