2013 - Getting Task assignment emails to work SOLUTION

The option for having SP send emails when a task is assign keeps being removed and added back by Microsoft - currently its gone.
You can get it back by iterating through the site and enabling the
EnableAssignToEmail
This used to work but not anymore:
$web = Get-SPWeb "https://Your Site.com/"
$list = $web.Lists.TryGetList("Tasks")
$list.EnableAssignToEmail = $true
$list.Update()
You have to do this after each Task List you create
It only took me 3 months to figure this out...
Add-PSSnapin Microsoft.Sharepoint.Powershell
[Microsoft.SharePoint.SPSecurity]::RunWithElevatedPrivileges({
$webApplicationURL = "https://Name of your Site/"
$webApp = Get-SPWebApplication $webApplicationURL
if($webApp -ne $null)
  Write-Host "Web Application : " + $webApp.Name
  foreach($siteColl in $webApp.Sites)
     if($siteColl -ne $null)
         Write-Host "Site Collection : " + $siteColl.Url
         foreach($subWeb in $siteColl.AllWebs)
            if($subWeb -ne $null)
                #Print each Subsite
                #Write-Host $subWeb.Url
                 Write-Host "Site: " + $subWeb
                    $site=Get-SPWeb $subWeb.Url
                    # $web=$site.OpenWeb()
                    $lists=$site.Lists
                    if($lists -ne $null)
                        foreach ($list in $lists)
                            if ($list.BaseTemplate -like "Task*")
                                write-host "Attempting to update: " + $list.title
                                $list.EnableAssignToEmail =$true
                                $list.Update()
                 $subWeb.Dispose()
           else
                Echo $subWeb "does not exist"
            $siteColl.Dispose()
     else
            Echo $siteColl "does not exist"
} else
     {       Echo $webApplicationURL "does not exist, check the WebApplication name"
     }Remove-PsSnapin Microsoft.SharePoint.PowerShell
Echo Finish

Hi,
Glad to hear that you solve this issue, thanks for your sharing.
Best Regards
Dennis Guo
TechNet Community Support

Similar Messages

  • CAML query to get task assigned to current logged in user

    I want to know the CAML query to get tasks assigned to the currently logged in user
    Nour

    Hi,
    This is the query that worked for me
    <Where>
    <And>
    <Or>
    <Membership Type=’CurrentUserGroups’>
    <FieldRef Name=’AssignedTo’ />
    </Membership>
    <Eq>
    <FieldRef Name=’AssignedTo’  LookupId=’TRUE’ />
    <Value Type=’Lookup’>123</Value>
    </Eq>
    </Or>
    <Neq>
    <FieldRef Name=’Status’ />
    <Value Type=’Text’>Completed</Value>
    </Neq>
    </And>
    </Where>
    Regards,
    Nishant Rana
    http://nishantrana.wordpress.com https://twitter.com/#!/nishantranacrm

  • Photoshop elements 12 Unable to get the sharing (email) to work.

    Hi, The sharing (emailing) feature talks about using other email client but can not??? I have Outlook 2013. the other option is to use the adobe email service that needs to verify the email that I am using but does not send the verification code that I need to activate the feature. I have Windows 8.                                                           Elements Organizer 12.0.0.0
    Core Version: 12.0 (20130903.r.43239)
    Language Version: 12.0 (20130903.r.43239)
    Current Catalog:
    Catalog Name: My Catalog
    Catalog Location: C:\ProgramData\Adobe\Elements Organizer\Catalogs\My Catalog\
    Catalog Size: 43.1MB
    Catalog Cache Size: 187.1MB
    System:
    Operating System Name: Windows 8
    Operating System Version: 6.2
    System Architecture: Intel CPU Family:6 Model:5 Stepping:1 with MMX, SSE Integer, SSE FP
    Built-in Memory: 7.9GB
    Free Memory: 4.5GB
    Important Drivers / Plug-ins / Libraries:
    Microsoft DirectX Version: 9.0
    Apple QuickTime Version: Not installed
    Adobe Reader Version: 11.0
    Adobe Acrobat Version: Not installed
    CD and DVD drives:
    D: (MATSHITA DVD+-RW BUS: 2 ID: 2 Firmware: UJ8E2)

    Thank you very much.
    AL
    From: Bill Hunt [email protected]
    Sent: Tuesday, January 28, 2014 2:22 PM
    To: aladvantage
    Subject: Photoshop elements 12 Unable to get the
    sharing (email) to work.
    Re: Photoshop elements 12 Unable to get the sharing (email) to work.
    created by Bill Hunt <http://forums.adobe.com/people/the_wine_snob> in
    *Premiere
    Elements* - View the full
    discussion<http://forums.adobe.com/message/6061690#6061690

  • Since upgrading my iPhone 5 to ios 7, I cannot get the internet, email to work on 3g.  I get the message ""could not activate mobile data network. You are not subscribed to a mobile data service".  How do I fix it?

    Since upgrading my iPhone 5 to ios 7, I cannot get the internet, email to work on 3g.  I get the message ""could not activate mobile data network. You are not subscribed to a mobile data service".  How do I fix it?
    I've contacted o2, tried all of their suggested updates and changes, reset my phone 3 times and still no luck.
    Any help appreciated.
    Thanks,
    Louisa

    Hi, l have the same problem, were you able to resolve?

  • How do i get my apple email to work after switching to icloud?

    how do i get my apple email to work after switching to icloud?

    I'm on OS 10.6.8 (Snow Leopard) with Mac Mail 4.5.
    Will deleting a .mac account in Mac Mail lose all saved emails, drafts, etc? I'm afraid of losing all my stuff.
    I just switched to iCloud last night and now I can access my mail only through the iCloud web interface. Mac Mail will not work with my .mac email account. But it still works for my other non-Apple addresses.

  • I can not get my pop3 email to work on my iphone4s

    I am trying to get my pop3 email to work on my iphone.  I have set up the incoming and outgoing servers the same way they are on my computer where it all syncs to outlook.
    Any ideas?

    Do you have any security software installed, blocking these ports? http://support.apple.com/kb/TS3125

  • TS3899 i cannot get my suddenlink email to work

    I cannot get my suddenlink email to work.  I have checked and re-checked settings. Called Suddenlink. Deleted account and then added again.  Was receiving mail just couldn't send any mail.  Now it won't send or receive.  Any help would be appreciated....Thanks!

    I figured it out!  Settings>Suddenlink email>outgoing mail server>SMTP>tap on primary server>turn off Use SSL>change Server Port to 587

  • How to get tasks assigned to me or group in which I belong to using Search Query?

    Hello,
    I want to get the tasks assigned to me or tasks assign to me in which I belong to. I know how to get it using CAML query however I want to get it in my custom search display template using Content Search Web Part.
    <Or>
    <Membership Type="CurrentUserGroups">
    <FieldRef Name="AssignedTo"/>
    </Membership>
    <Eq>
    <FieldRef Name="AssignedTo"/>
    <Value Type="Integer">
    <UserID/>
    </Value>
    </Eq>
    </Or>
    Please let me know how to filter tasks assign to group in which I belong to.
    Here is query which shows tasks assign to me but not to tasks assign to my groups
    (ContentType:Task OR ContentType:RequestTaskContentType OR ContentType:DelegacyAccountingContentType) AND
    AssignedTo:{User.Name} AND
    -Status:Completed AND -Status:Closed AND Status:"Not Applicable"
    Thanks & Regards,
    Jay
    Jayesh Prajapati

    Hi Jay,
    No, you can filter tasks assign to group in which you belong to using Content Search Web Part. Because there is no Query variable for current user group in SharePoint 2013 Search Query. You can have a look at the article:
    https://technet.microsoft.com/en-in/library/jj683123.aspx?f=255&MSPPError=-2147217396
    For a workaround, you can use the My Tasks web part outside of MySites:
    http://bernado-nguyen-hoan.com/2013/03/03/making-my-tasks-web-part-available-outside-of-mysites/
    http://yalla.itgroove.net/2014/04/27/use-sharepoint-tasks-web-part-outside-sites/
    Best Regrads,
    Eric
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to add a link/url to the the task assignment email body?

    Hi,
    I'm currently creating a SharePoint 2013 workflow by using visual studio 2013.
    in the workflow I assign tasks to multiple users by making use of the CompositeTask workflow activity.
    I would like to add a ling to the task form in the body of the assignment email. 
    When using the SingleTask workflow, the output of the activity provides a task item ID which can be used when construction a link/url to the task edit form, but there is no such output.
    How can I add a link to the task form in the body of the email?
    Thanks in advance

    Found this link just after I posted my question:
    http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.workflowservices.activities.taskemailtokens_fields.aspx
    It has a bunch of tokens you can use inside the body of the emails

  • WLI task assignment in parallel work flow

    I have been working with the WLI for a proof of concept leveraging the task assignment
    features. Following the worklist tutorial I was trying to assign a task usining
    a parallel process. The server indicated it was unable to assign the tasks in
    parallel b/c one of the parallel branches claims the task and does not allow for
    the assignment to the other branch.
    Is there a way to do this? Any assistance would be appreciated.
    Thanks,
    William Ferris

    Hi Rami,
    if you use process controlled workflow available in SRM7, you can easily implement the scenario. Using process schema evaluation, you can implement two different schema for department 1 and department 2 based on differement department.
    Thus you can achieve two different workflow - if the requestor is from department 1, one step workflow (only manager)will be triggered. If the requestor is from department 2, two step workflow (first manager of the department and then buyer of department 1)will be triggered .
    I hope, it helps you.
    Thanks and regards,
    Ranjan

  • I can not get my .me email to work since the IOS6 upgrade. Does anyone have the send mail and smtp info. I thought I knew it but I thought wrong.

    For some reason o can get my @me.com email to work. What are the send and receive strings?

    Do you have any security software installed, blocking these ports? http://support.apple.com/kb/TS3125

  • TS3899 Cannot get my shaw email to work with ios8 on iPhone 5c.  Keep getting unable to verify account information

    I have had my shaw email on my phone forever without problem.  updated to ios8 on thursday and today i cannot access it.  Password is correct but kept asking for it and saying it was wrong.  Deleted the account and tried re-adding it and now i get Exchange Account Unable to Verify account information.  I also tried adding it as other and same message.  I went to shaw's info page but they have not updated for ios8 yet.

    Thanks for your reply.  I use Sky email which is managed by google. I have now deleted the account and set it up again and that seems to be working now. I'm still having problems just getting the Internet connection to work. I won't be taking on any more software upgrades in future until I'm sure that they are worth it.

  • Having trouble getting ipad 2 email to work

    Having trouble getting ipad 2 email to work

    Dave, you're not bothering us.  I was just messing with you.  No harm intended.  I apologize.  However, you do need to provide more information with regards to how you're having issues setting up your email.  You may also want to check out the iPad manual:  http://manuals.info.apple.com/en_US/ipad_user_guide.pdf

  • How can I get my iCloud email to work?

    For this entire day, my iCloud email (me.com)has not been working.  I can send but there is no incoming mail.  My other email (cox.net) seems to be working, both incoming and outgoing.  Earlier i the day I was asked to input my password each time but now that seems to be ok, it is just that I can get no incoming mail on the me.com account.  How do I fix this? 
    It is working on the iPad....only my iMac cannot receive email to my icloud account.

    Perfect!  Here's someone else who did it with Lion.  Is this the same thing that you are telling me?  There are a bunch of people having this problem.  Sure glad you are around with the solution.
    SOLUTION OFFERED;
    The same thing happened to me. Last night, everything was fine with Mail 5.2 with Lion. This morning when my iMac booted up, the incoming mail server for my iCloud account was grayed out and said www.example.com. It would not allow me to manually the incoming mail server.
    I contacted Apple tech support through the apple website, and a rep immediately called me. He instructed me to:
    1) Quit Mail
    2) Go to System Preferences > Mail and deselect (uncheck) Mail
    3) Reboot the computer
    I just got home and tried it, and worked great.
    Once I rebooted my iMac, the incoming mail server was populated correctly. I then went to
    System Preferences > Mail and selected (checked) Mail
    My iCloud mail now is current in Mail.

  • Passing form field name to the subject line of the task assign email

    Hello Everyone,
    I am trying to create a process that need to pass one of the field data from a form to the task email assign but could not make it work right as expected. I think I miss something but could not figure it out myself. If any one has done this before, please share your knowledge.
    Thanks in advance,
    Han Dao

    Hi Jasmin,
    I thought it simple thing to do by passing the xPath to the subject line but for some reasons, it does not work instead it show the whole xpath on the subject line. Here is my xpath:
    {$/process_data/FormData/object/data/xdp/datasets/data/FSFIELDS_/Form1936/EmpInfoSub/UserM gr$}
    where Form1936 is the pageName, EmpInfoSub is sub-form, and UserMgr is field name on the form.
    Thanks,
    Han Dao

Maybe you are looking for

  • CCMS alert monitoring data for ORACLE is not visible in Central system

    Hello, I have installed sapccm4x agents in the CI of the Satellite System and it shows in the Central System as sucessfully registered under Agents for remote System and the RFC Connection test is also successfull. When i check in RZ20 in Central Sys

  • Reading package contents in SQL Plus

    Hi, I'd asked a similar question last week, but didn't see it responded to with a proper reply. Ive created a package in SQL Plus, and much like you use the DESCRIBE command to see info on tables that are created, I'd like to see the contents and scr

  • Viewing code of a package

    Oracle 9.2.0.5 on HP-UX 11.23. I tray to see the code of a package and I only see a encrypted code (of the package). I am doing this connected as the owner of this package. Any idea?

  • HT1338 FCP-X 10.1.3 will not output HDMI video through Blackmagic Intensity Pro

    I can not get HDMI video output through FCP-X 10.1.3.  I tested the card and I get video through it to my HDMI monitor using Blackmagic Media Express, so I know the card, monitor, and cable are in perfect working condition.  I have windows>AV output

  • First time connection nokia6600 to pc suite

    when i run pc suite on my pc, it says to connect phone to pc. i try and do this through bluetooth, but it says i'm disconnected. i'm running latest version of nokia 6600 pc suite on windows xp. i can send files to and from phone/ pc ok, in other soft