I have a ConfigMgr 2012 Development environment, with considerable amount of clients and collections. One fine day i was testing Nomad deployment in some of my member servers. As it is a Development environment a single member server can be a member of multiple ConfigMgr collections. One of the member from patching team configured maintenance window of 5 mins on a test collection and the member server is a member of that collection too..
So when i deployed Nomad Branch agent deployment failed with a message "Service windows too short". Remember as i said before to check the maintenance window in all collection i had to visit the property page of all collection and there is not default report to show the maintenance window of all collections. So i thought i would build SQL query to list maintenance window of all collections.. here is the query,
SELECT v_Collection.Name, v_Collection.Comment,v_ServiceWindow.Description, v_ServiceWindow.StartTime, v_ServiceWindow.DurationFROM v_ServiceWindowJOIN v_Collection ON v_Collection.CollectionID = v_ServiceWindow.CollectionIDORDER BY v_Collection.Name
Create a report with this query and that report will list maintenance window configured in all collections.
Hope this helps..
S A Delphin
0 comments:
Post a Comment