Posts

Showing posts with the label Configuration Manager

Configuration Manager - Maintenance Window for member of specific collection

The below SQL query will provide the details of Maintenance Window with collection name for all members in provided collection. select fcm.Name as 'Server Name',sw.CollectionID,col.Name as 'Collection Name',sw.Name as 'MW Name',sw.Description,sw.StartTime,sw.Duration,sw.IsEnabled from v_ServiceWindow SW inner join v_FullCollectionMembership fcm on fcm.CollectionID = sw.CollectionID inner join v_Collection col on col.CollectionID = sw.CollectionID where fcm.name in (select name from v_FullCollectionMembership where collectionID = ' CollectionID ')

Configuration Manager: Slow Operating System Deployment (OSD) caused by IPv6 6to4 tunnel adapter

Recently we had an issue with a site where OSD was taking long time on random basis. When I was trying to gather more information about similar issues I come across below article. This article very well describe IP6To4 tunnel adapter and it’s impact in network / AD environment. http://blogs.technet.com/b/askpfeplat/archive/2013/11/18/ipv6-for-the-windows-administrator-the-2002-6to4-tunnel-address-and-its-impact.aspx The OSD was extremely slow on random basis. Even few MBs file were taking hours to download. As described in above article, the public IP address was being used in this site as well. The IP 6to4 tunnel adapter was also enabled on SCCM server and client workstations. Once we disabled the IP 6to4 tunnel adapter on SCCM server the build started working fine. We have also disabled this adapter on all workstations via GPO as it may also impact network performance.  It’s over a month now and issue has not been reported back.