A realtime Outlook user inbox count

Status
Not open for further replies.

liviococcia

Member
Outlook version
Outlook 2013 32 bit
Email Account
Exchange Server
Hello Members

I have a basic network, and MS Exchange knowledge for the charity I work for.

Let me first explain the setup we have, there are 7 user accounts on our domain, each user has there workstations which run the os Windows 8.1, the server is Windows Sever 2010, they use Outlook 2013.

The issue, or question I have is, some staff users will allow there inbox to build with unopened emails, so my manager is wondering if there is a way to have a realtime counter, of all the staff user's accounts inbox read & unread emails.

I am aware that any users account can be added to my managers Outlook account, but that would mean she would be able to read and see other people's email, which she does not want to do.

If possible it would just be a simple counter displaying the all the network user's names, just there inbox email quantities, showing read & unread emails.

Is this possible, how can it be done.

Both my manager, and I are administrators of the network.

Any ideas, or help, or software (freeware would be great), we can also purchase software through the tt-exchange if they have it.

Kind regards
 
You would need to script something in PowerShell and run it on the server. Keep in mind that the read state is meaningless - it doesn't mean the person read or didn't read a message, it just means they didn't mark it as read. (I only mark them read as I finished with a message. )
 
Hello Diane

Sorry for the delay in replying, and thank you very much for your help, and advise.

I would like to mention that I have no experience in scripting, or using powershell, and would appreciate any pointers on how I could go about attempting this myself.

I understand if it's asking alot from yourself, and am just grateful that there is a possibility in creating something.

Kind regards
 
Do you know what version of Exchange server you use?
I know you can get total messages in folders using Get-MailboxFolderStatistics

This creates a text file of mailbox stats:
Code:
Get-Mailbox | Get-MailboxFolderStatistics | Where {$_.Name -match “Inbox|Sent Items|Deleted Items|Junk E-Mail”} | Select Identity, Name, ItemsInFolder | Export-csv c:\temp\MailboxItemCount.csv

There are instructions at https://social.technet.microsoft.co...1/getting-unread-item-count-for-a-single-user that work for a single user. A link on the page goes to a script that will do it for all users.
 
Thanks again Diane, I'm afraid don't no what version of MS Exchange server we are using, but I can find out on Monday, and post back then.

Again, thank you for the links and the command info.

I gather our ES info and come back.

Regards
 
Hi Diane, I just wanted to report that our Exchange Server is 2010
Version 14.02.0387.000.

I hope you could kindly give me some further practical advise , with regards to actually doing a script command for an example users email, say the user's email is johns@example.org.uk, there user account username is johns.

So, given the info about, how would this be written into the coming that you provided to me earlier.

Thanks for an help
Kind regards
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
L Fresh Install of Windows 11, saved previous image, how to retrieve Outlook Contacts Using Outlook 10
C Can't Use Custom Contact form in Outlook Classic since early January 2026 Outlook VBA and Custom Forms 7
e_a_g_l_e_p_i Need help updating email in Outlook 2021 Using Outlook 10
V Outlook spam filter misbehaving Using Outlook 9
L what are the downsides of running both classic and new outlook on same win 11 pc? Using Outlook 2
P Preventing permanent deletions in Outlook on the Web Using Outlook 0
L any trick to embedding images in new outlook and outlook on the web contacts? Using Outlook 4
L new outlook contacts searching Using Outlook 5
R Outlook 2010 Outlook 2010 migration question Using Outlook 2
W New Outlook PEOPLE blank Using Outlook 6
C New Outlook issues with Gmail, particularly labels/folders Using Outlook 3
E What is the next workaround for macro in New Outlook 1.2025.1111.100 Outlook VBA and Custom Forms 3
E Need to digitally sign macro but VBA\Outlook crash Outlook VBA and Custom Forms 4
P Outlook 2003 no longer opens "without" Folder List Showing in Navigation Pane Using Outlook 2
Hornblower409 Outlook 2010 - Never ending update Using Outlook 0
V Outlook created new profile? Using Outlook 1
J Outlook inbox question Using Outlook 4
T How to Add AT&T Contacts to Outlook 365 Using Outlook 5
F Outlook 2021 outlook on iPhone Using Outlook 1
F Outlook 2021 Outlook on iPhone asks for password Using Outlook 0
P ics calendar entries suddenly open up new Outlook Using Outlook 3
P Outlook "forgets" password until system rebooted Using Outlook 2
N Why does Outlook keeping adding to the email address I have in my notes portion of a contact? Using Outlook 2
M Anyone integrated AI website builders with Outlook for automated client communications? Using Outlook 4
V Gmail in Outlook Using Outlook 2
T Where has the Copilot icon gone in my Outlook desktop client? Using Outlook 10
P New way by Microsoft to get people to use the new Outlook Using Outlook 4
C How to keep emails in account in Outlook after closing the IMAP account Using Outlook 1
cymumtaz IMAP calendars in New Outlook Using Outlook 5
T Constantly Have To Log In To Outlook On The Web Using Outlook.com accounts in Outlook 2
T Cannot Find Outlook Noted On Android Using Outlook 4
O Outlook 2024 not showing that messages are replied to or forwarded Using Outlook 3
C Outlook 365 send/receive takes FOREVER - as in 40 minutes Using Outlook 7
I Outlook 2024 LTSC syncing with iCloud calendar - can only make appt. in iCloud Using Outlook 2
Kika Melo Outlook ribbon customisations do not 'stick' Using Outlook 12
J IMAP Folders Confusion in Windows Classic Outlook Using Outlook 1
A Missing Sent Emails in New Outlook Using Outlook 18
S Missing categories in Outlook calendar Using Outlook 10
P Windows 11 tries to open New Outlook when the user clicks on the mail icon on a news article Using Outlook 2
C I don't understand Outlook or Microsoft, anymore Using Outlook 12
P My Feedback to Microsoft and their response; also New Outlook roadmap Using Outlook 0
A New Outlook - Cannot drag IMAP emails to Task List in MyDay Using Outlook 1
L Android Outlook Doesn't Update PC Notification Changes Using Outlook 0
A How to open Excel file saved in Outlook folder? Outlook VBA and Custom Forms 4
D.Moore Outlook desktop client suggested searches question Using Outlook 22
Y Outlook 2016 (64-bit) Copy Local Cal. Events to Another Cal. with Modified Reminder time Using Outlook 2
T Outlook 2019 While connecting an IMAP account in "classic" Outlook 2024 I caused a massive duplication of emails on the server (death loop) Using Outlook 5
D Cannot logon to Outlook.com, or outlook on Mac, outlook not updating on ipad, iphone Using Outlook 1
J unable to get my new install of Outlook to display mailboxes in the single-line format. Using Outlook 1
D Legacy Microsoft Outlook for Mac Support will end in Oct 2025 Using Outlook 8

Similar threads

Back
Top