Microsoft 365
RegKeyName | RegKey Value (Decimal) | Suggested Value (Decimal) |
DedicatedFilterProcessMemoryQuota | 104,857,600 | 209,715,200 |
FilterProcessMemoryQuota | 104,857,600 | 209,715,200 |
FolderHighPriority | 50 | 500 |
Reporting samples with LogParser
Looking for Cheap Reporting? Look no further than the text based log parser. When you’re ready for real reporting then check out Nintex Reporting 🙂
Top 10 users sorted by alias
logparser.exe "SELECT TOP 10 cs-username, count (*) AS TOTAL from \servernamelogshareW3SVCex080215.log group by cs-username order by TOTAL desc“
Top 100 hits by Username
logparser.exe "SELECT top 100 * from \servernamelogshareW3SVCex080215.log where cs-username like ‘%%username’ order by time desc“
Number of hits by IP Address
logparser.exe "select count (*) as number, cs-host, cs-username, c-ip, cs-uri-stem from \servernamelogshareW3SVCex080215.log group by c-ip, cs-host, cs-username, cs-uri-stem order by number desc“
Number of hits by URL match
Logparser.exe "SELECT count (*) from \sp-sfw-r07e$WWWLogW3SVCex080228.log where cs-uri-stem like ‘%%userprofileservice.asmx’"