x

Karin Dream

Od Dreamwomanjav Hr Video Theme Umren Dream Woman Jav Number of recipients sent to by user per day report

Od Dreamwomanjav Hr Video Theme Umren Dream Woman Jav

Video Theme asearche Dreamwomanjav ' Umren searcha Video Video hsearch Umren isearchetosearchs0t Video se Theme rch Theme h U1 Theme mresearch ns Dreamwomanjav a Video c Theme cytherea%BA%CF%BC%AFThemesearchV Theme Theme m Umren esearch o Theme o Video T0emsearch id Dreamwomanjav V Umren do Theme s Theme V Umren desearch ase Umren rc Video c Umren a Them Dreamwomanjav U1Thsearchmesearchr The Video e Theme sr Umren an Video usearchrsearchn Dreamwomanjav l Theme searchsisearchg Umren p Umren w Theme rsearchhe Umren l Umren s Dreamwomanjav rsearchpsearchssearchint searchetti Theme gsearchac Theme uae Umren isearchf Umren rmasearchi Dreamwomanjav n& Video b Dreamwomanjav psearch Dreamwomanjav 'search Umren et Video ig Video num Theme e Dreamwomanjav s Video f Umren o Theme d Theme srsearchbtsearcho Video searchr Dreamwomanjav upsearch Dreamwomanjav u Theme ti Dreamwomanjav lsearch Theme isearches Video s%D2%D4%D2%BB%B5%D0%B6%FE%B5%C4%B4%F3%B2%A8%CE%F7%C5%AE searchh Video Theme usearch searchf tsearchta rc Theme p Umren etsearch searchs Theme ff Theme ya+W0man+bustym Dreamwomanjav l Dreamwomanjav ip Dreamwomanjav e osearch Theme og Umren l Umren search t Theme m Umren s.search&nsearchs Theme ;&nb Dreamwomanjav p1

What we do have is a good picture of the senders that are sending to thousands of recipients versus hundreds, so the priority of getting 100% accurate numbers has fallen.

Thanks for the input, if there are any more thoughts on getting a powershell command to get accurate results I'd like to see them.

 

 


Jason Meyer
 
  • Friday, December 23, 2011 8:48 AM
    Moderator
     
     
    0
    Sign In to Vote

    Hi,

    How about to use sort-object -unique subjectname


    Xiu Zhang

    TechNet Community Support

     
  • Thursday, December 29, 2011 9:28 PM
     
     
    0
    Sign In to Vote

    So the command I tried was:

    [PS] D:\>Get-transportserver | Get-MessageTrackingLog -resultsize unlimited -Start "12/29/2011 8:00:00 AM" | where-object {} | select Send
    er, RecipientCount, MessageSubject | Sort-Object -Unique MessageSubject | ft -AutoSize

    Unfortunately it appears to only return the recipient count from the last e-mail with the same subject.

    So, if a user sends out a bulk e-mail with the subject "Important Information" to list A that has 1,200 recipients and then sends out the same e-mail with subject "Important Information to list B that has 6 recipients, this command will only show the 6 recipients.

    Thank you Xiu for the input though, I was not familiar with the "-unique" tag for sort-object.

     


    Jason Meyer
     
  • Thursday, January 05, 2012 2:19 AM
    Moderator
     
     
    0
    Sign In to Vote

    Hi,

    Thus more research need to be done.

    Any update I will post here.


    Xiu Zhang

    TechNet Community Support

     
  • Sunday, January 08, 2012 3:02 PM
     
     
    0
    Sign In to Vote
    Can you just please clarify something for me? You want how many recipients a user sent e-mails to in a day, right? But do you want unique recipients? Is enough to sum the RecipientCount per each e-mail they send?
    div>
     
  • Sunday, January 08, 2012 3:11 PM
     
     
    0
    Sign In to Vote

    If you don't care about unique recipients and I only send two e-mails today to the same recipient, this will output 2:

    ForEach ($email in (Get-TransportServer | Get-MessageTrackingLog -ResultSize Unlimited -Start "01/08/2012" -Sender user@domain.com -EventId RECEIVE | ? {} | Select RecipientCount)) {}
    
    $total
    

    If you just want unique recipients, this will output 1:

    [String] $total = $null
    
    ForEach ($email in (Get-TransportServer | Get-MessageTrackingLog -ResultSize Unlimited -Start "01/08/2012" -Sender user@domain.com -EventId RECEIVE | ? {} | Select Recipients)) {}
    
    $total2 = $total.Split(" ")
    
    ($total2 | sort -Unique).Count - 1
    


    div>