Finding all SharePoint objects (alerts, workflows, etc) configured to send mail to a specific user

Hi all,
I'm looking at the mail traffic originating from our SharePoint instance and noticed there are a number of "delivery has failed to these recipients or groups" for people no longer with us.
Is there a means (powershell?) to discover the objects (alerts, workflows, etc...) in SharePoint that are sending mail to these people so they can be removed as part of old account housekeeping?
Thanks!
Paul

Hi
Please checkout below script to remove the alerts enabled for individual users.
http://dunxd.com/2010/12/22/delete-all-alerts-for-a-user-in-sharepoint-with-this-powershell-script/
 You can verify the content of emails which will have names of users  and kind of emails , if that is aa workflow approval or simple alerts.  if its workflow alert you might need to contact the sharepoint administrator/designer who can find
out the source of same
regards Puran Mishra

Similar Messages

  • How to find all the objects by Module.

    Hey all,
    Can any one please help me in finding all the objects by Module.
    I need to have all the objects(like app engines, records, fields, file layouts, etc,.) in AP, AM, GL, BI, AR.
    thank you,
    Bye.

    You can use the OwnerID field as a starting point. The reason why i say that is because there are some objects that cross-over between more than one module.
    http://www.CompShack.com

  • Newbie: How can find all unused objects in XI ?

    How can I find all unused objects in XI Integration Repository? 
    Thanks,
    Badari

    Hi,
    Have a look at these thread, it might be helpful to you
    XI Server Object Cleanup
    How to delete Integration Repository Objects?
    Thanks,
    Pooja
    ps: please mark helpful answers

  • Program or a Report name to find all the objects in a query?

    Dear People,
    Could anyone help me in finding out the program or a report name thorugh which I can find all the objects related to a particular query?
    Thanks in Advance!
    Regards,
    Vinoth V

    Hi,
    RSRQ_QUERYDEFINITION is a program to give all details about query if you executed it in SE38.
    And similarly tcode RSRT1 and RSRT used to execute the queries.
    Tcode RSRREPDIR to know the Query execution time and details.
    Hope helps out,
    Thanks-RK

  • Need some Guide regarding Configuration of Sender Mail Adapters....

    Hellow All Members,
      Can anybody refer me to some blogs other than SAP's own help which talks about use and configuration of sender mail adapters...
    Thanks in Advance,
    Sugata

    Hi Sugata,
    These links i guess should help you understand clearly as to how to configure your sender mail adapter.
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/23/c093409c663228e10000000a1550b0/frameset.htm">Configuring the Sender Mail Adapter</a>
    <a href="/people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure Adapter scenarios – SAP Exchange Infrastructure</a>
    <a href="/people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address Adapter (XI) - how to implement dynamic mail address</a>
    Also refer these links:
    http://www.microsoft.com/exchange/evaluation/compare/ClientCompare.mspx
    http://www.microsoft.com/exchange/evaluation/whatis.mspx
    http://www.trincoll.edu/depts/cc/documentation/email/IMAP_vs_POP/default.htm
    http://www.imap.org/papers/imap.vs.pop.brief.html
    Also please go through these notes:
    <b>804102</b>
    xi 3.0 mail adapter with pop3 user authentication problem
    <b>810238</b>
    XI 3.0 Mail Adapter for POP3 may not report some errors
    Just an additional info <b>"sender mail adapter is to convert e-mails to XI messages"</b>
    Regards,
    abhy

  • Why all of a sudden will my iPad not send emails to one specific address at work but still works to everyone else? just keeps saying "failure to send"

    Why all of a sudden will my iPad not send emails to one specific address at work but still work to everyone else at work?

    Contact the person by telecon. Their email address may have changed.
     Cheers, Tom

  • Is there any software which displays all form objects - tables, views, etc?

    Dear friends,
    I need to know if we have some software product which opens an Oracle form and shows all objects (tables, views, procedures, functions, and so on) accessed by it.
    For each form, this software should show all operations made in each table - that is, whether form creates, updates, reads or deletes data in each table accessed by the form.
    If there's any software which makes such analysis, please let me know. I'd rather be downloading free software, but a trial version or a paid one can be considered as well.
    Best regards,
    Franklin

    Hello all,
    sorry, I don't know whether my 1st message was clear, so I am trying to rewrite it.
    I'm thinking about a software which creates a database objects list report; this report shows all database objects being accessed by the form - for example, it can list all tables being accessed by the form, showing a CRUD (Create, Read, Update and Delete) for each accessed table, or list all packages being executed by the same form, and so on. For example:
    Form: CLI0001.FMB
    Package -> Operation
    PCK_ACCOUNTS -> E (Execute; but that's a suggestion, we can have 'R' instead)
    Table -> Operation
    ACCOUNTS -> CR (Create + Read)
    PAYMENTS -> D (Delete)
    Sequence -> Operation
    SEQ_ACCOUNTS -> R (Read)
    View -> Operation
    VW_CLIENTES -> R (Read)
    If there's any software which can do it, please let me know. Thanks in advance.
    Best regards,
    Franklin
    Edited by: franklinbrasil on 15/10/2008 19:26

  • Finding All Channel Objects?

    I am working on an audio player that will take a parameter
    from a web page and play the appropriate MP3 file. Each page in a
    series of pages calles the same movie. It works but I have a
    seriouis problem with the code. If the user navigates to the next
    page while the current page is still playing the audio, the new
    audio is played on top of the older clip. I suspect that each time
    the same movie is called, a new SoundChannel object is being
    created.
    I'd like to come up with a function to search all current
    objects that are not in the display list and issue a Stop command
    to all existing SoundChannel objects.
    Does anyone know if it is possible to write a function to do
    this? Have you written such a function? I can't come up with any
    other way to stop the currenlty playing audio automatically. I
    can't rely on the user to stop it manually...
    The SoundMixer.stopAll(); doesn't work, I've tried it. :-(
    TIA
    Peter H.

    Peter,
    > Finally, I have a function to play the sound with a
    line:
    >
    > _channel = _snd.play(_pausePosition);
    Everything you've described sounds fine. For what it's
    worth, you don't
    actually have to wait until the sound fully loads before
    issuing the
    Sound.play() method (the sound will progressively download,
    which means it
    starts playing as soon as enough data have loaded) -- but
    again, your
    description so far sounds just fine.
    > I suspect that each time the SWF is called to play
    another
    > MP3, the code is creating another Channel object and
    > playing the newly requested MP3.
    This is the part that puzzled me at first, but now I think I
    understand.
    What I missed in my first read-through was that the new page
    starts playing
    while the initial page is still open. That means there are
    two instances of
    Flash Player running, each with the same SWF, but a different
    parameter.
    Even though both instances of Flash Player are playing the
    same SWF, each
    instance comprises its own unique world. You can't (easily)
    enumerate the
    objects in both SWFs in a collaborative way, because they're
    separate
    entities -- twins, if you will, but still unique human
    beings.
    > Specifically, I was thinking that if I had a way to
    identify
    > all Channel objects instantiated within this movie, I
    could
    > just do something to unload them all from memory to
    > ensure none were already playing.
    By the looks of it, each of your SWF instances, across
    x-number of HTML
    pages, has a single, named SoundChannel instance: _channel.
    So it isn't as
    if you really have to search for instances -- you know them
    at this point --
    it's that you have to get separate SWFs to speak to each
    other and figure
    out who needs to keep mum.
    Off the top of my head, I can imagine using JavaScript to
    feed a second
    parameter to the SWF that a given page opens. The first
    parameter, of
    course, is the MP3 to play. The second parameter could be a
    timestamp.
    This way, each page has an "age," and you could feasibly
    communicate from
    SWF to SWF with instructions that only the youngest SWF be
    allowed to play.
    Inter-SWF communication happens with the LocalConnection
    class. You set
    up an arbitrarily named line of communication, then "listen"
    to that line.
    SWFs can also send messages over one or more lines. See if
    that gets you
    started, and be sure to come back if you have additional
    questions. I'm
    interested in this topic myself now, so I'll try to work up a
    proof of
    concept on my own and we can swap notes. :)
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Error during configuration of Sender Mail Adapter

    Hellow All,
    I was trying to configure Sender Mail Adapter and I am getting this error.
    <b>error occured: exception caught during processing mail message; java.io.IOException: unexpected greeting response; read 220 mailrelay2.lntinfotech.com ESMTP Service (Lotus Domino Release 6.5.5) ready at Fri, 14 Jul 2006 16:11:29 +0530</b>
    Can anybody please suggest me why this error is occured and how to solve that?
    I am waiting with points, come on
    Thanks in advance,
    Sugata

    HI,
    1)Try to do with POP3
    2)Check the URL , give correct Exchange Server Name/IP address.
    3) Hope you have access to read the inbox (sometimes it will not be there)
    Than try it.
    Regards.
    Moorthy

  • Workflow Step 'In Process'- Send mail with PDF attachment

    Hi,
    have to send mail with PDF attachment.
    I have written a function module with following steps,
    1. Convert SPOOL number to PDF using Function Module 'CONVERT_OTFSPOOLJOB_2_PDF'.
    2. Send mail with PDF attachment using Function Module 'SO_DOCUMENT_SEND_API1'.
    The Function Module is giving required output when tested and called in the report(Background Job).
    When I call this Function Module from Method-> Workflow Task the Workflow steps status is 'In Process' and not ending.
    Could you please help me on this??

    Hi shafath,
    When you try to send mail,  You need to call the function FP_JOB_OPEN before calling the function module to generate the pdf. ( /1B****)  . Is it missing in your code?

  • Finding all supporting objects

    Greetings all,
    Is there a simple way to find out which supporting objects are associated with an application when there are multiple applications in a workspace? I know that if the naming conventions are right it is easy, but I am working with an application that had some non conventional names and what I am trying to do is move the application to another workspace and get it cleaned up and corrected so going forward it can be done properly.

    And because the workspace is on apex.oracle.com I can't use SQL Developer :(

  • Where to find all business object number

    Hi all,
    When I create an orange arrow, I need to link it with a business object so it appears correctly and only in the correct situation.
    How can I get all the business object names? Is there a document somewhere. For example, I can t find the number or the name to link the arrow with a warehouse.
    Can anyone help me?
    Thanks a lot
    Vincent

    Hi Vincent,
    Look in the UI SDK help file, it is under the BoLinkedObject Enumeration topic.
    Regards, Lita

  • Find all systems that do not have configuration manager client installed

    Guys I've been installing the SCCM client however I still have a lot of systems where the client has not been installed. Is there some type of report or script that you all run in order to find out who does not have the client installed? Any help with
    this is greatly appreciated. So far I have been using a log on script in order to install clients.

    Are you using AD system discovery? If so you can create a collection with membership query rule looks like this:
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System where SMS_R_System.Client is null  and SMS_R_System.OperatingSystemNameandVersion
    like "Microsoft Windows NT Workstation%" 
    and SMS_R_System.OperatingSystemNameandVersion like "Microsoft Windows NT Workstation%" -
    Take that part out if you want both servers and workstations.

  • Find all local objects

    Hi,
    Is there a way to check all the BW objects that were not assigned to a package?
    I have a lot of InfoObjects and it is time consuming to check each and every object if it has been assigned to a package.
    Thanks in Advance,
    Dona

    Hi Donna,
    Everything you need is kept in table "tadir".
    Query this table with selection on package $TMP for field devclass and the info is yours!
    Additional you can set restrictions on objecttype like IOBJ for infoobject.
    Regards, Patrick Rieken.
    Message was edited by:
            Patrick Rieken - BI-Formance B.V.

  • Configuration to send mail from SAP R/3 to SMTP ; Pls help

    Hi All,
                Could any one please send me the steps to configure the MAIL setup in SAP R/3 to SMTP (Third Party).
    Thanks in Advance,
    Sunil
    [email protected]

    HI Suni,
    Please follow the link below very helpful...
    https://www.sdn.sap.com/irj/sdn/advancedsearch?query=email&cat=sdn_media
    1. tcode SCOT
    2. double click SMTP>> check mark "Node in use" >> Mail Host : "mail.yourdomain.com">> click "internet set"  if you want all email in/out, add * under address area. save/green check mark.
    3. go back to SCOT >> Settings >> Default Domain,: it should be "yourdomain.com" >> SAVE.
    4. View >> Jobs: Click Create button >> name it 'SENDMAIL'. green check marK >> click preodic, run every 5 min or 3 minz depending on your situation or load.
    That's it. very simple.
    Thanks,

Maybe you are looking for

  • Fault Message generated in ABAP Inboud Async Proxy not visible XI Moni

    Hi     I developed a ABAP Inbound AsyncProxy, which raises an exception using a fault message type. The SMB_MONI in the Business System is displaying the message as Application Error. But the XI Monitor is showing it as sucesfully processed.     How

  • Delete photo in album

    When I try to delete a photo by normal method the yellow frame switches to next photo in the Album but the photo to be deleted remains. When I click on the newly selected photo, then the correct photo, to its left, is deleted.  This is in Iphoto 11 o

  • I cannot convert my pdf doc to Word even though I subscribed to the service

    I cannot convert my pdf doc to Word even though I subscribed to the service

  • How to open .cmx files?

    Hi, I have data of images with .cmx formats.  Do you know how to open them with Adobe Illustrator on Mac? Thanks.

  • Find Next command doesn't work right in CS3?

    The Find Next command (F3 in Windows) used to go immediately to the next instance of a search term. What was great was that I could search for a term on one page, close it, then open a different page and immediately press F3. But now, the command kee