LogJam in SCCM Inboxes..
Dear All,
I have just started administration of SCCM. I have been given some tasks to work. One of them is to monitor Log Jam in Inboxes. I am not aware of this. Can anyone guide me to get information on this.
Regards,
Aditya Kumar
May 14th, 2010 6:55am
I'm assuming "log jam in inboxes"means "Inbox backlogs"....
You can monitor through powershell as well through VB scripts
You can create the schedule task to run these scripts
Get-ChildItem “c:\Program Files\Microsoft Configuration Manager\inboxes” -recurse | Where {!$_.PSIsContainer} | Group Directory | Format-Table Name, Count -autosize from
http://systemcentercentral.com/BlogDetails/tabid/143/IndexId/12979/Default.aspx
http://www.snowland.se/2008/11/25/count-files-in-sccm-inboxes/
Test these scripts then schedule it....
Note : I have not tested this.Abhishek Joshi | Blog :- www.MicrosoftTechEd.com Personal site : www.AbhishekJoshi.com
Free Windows Admin Tool Kit Click here and download it now
May 14th, 2010 8:09am
If you haven't yet, do read the description on the inboxes
http://technet.microsoft.com/en-us/library/bb892790.aspx
May 14th, 2010 9:04am