Assume you have an Exchange 2013 server with existing Server Monitoring Overrides which you can get by running on the Exchange Shell:
Get-ServerMonitoringOverride -Server servername | ft -auto
and the output shows something like:
Identity ItemType PropertyName PropertyValue
-------- -------- ------------ -------------
MailboxSpace\StorageLogicalDriveSpaceMonitor\G: Monitor MonitoringThreshold 50000
MailboxSpace\StorageLogicalDriveSpaceMonitor\H: Monitor MonitoringThreshold 50000
MailboxSpace\StorageLogicalDriveSpaceMonitor\L: Monitor MonitoringThreshold 25000
In the above example there are server overrides to prevent the default Exchange monitoring to rise an alert when a drive drops below the default 100GB limit.
And let's say that you want to change an existing override (for example the existing one has expired, or you want to change the PropertyValue of MonitoringThreshold to be 10000 instead).
How would you modify an existing ServerMonitorOverride in this instance?