SCCM Client Health Related Collections
Collection Name WQL Query CCMEval – No Status select...
View ArticleWindows 10 deployment and management lab kit
Microsoft released new Windows 10 Deployment and Management Lab Kit includes everything you need to review the new in-place upgrade option plus traditional deployment methods and other management tools...
View ArticleUpdate 1602 for Technical Preview
https://blogs.technet.microsoft.com/configmgrteam/2016/02/18/update-1602-for-technical-preview-available-now/
View ArticleRDP Enable using PSEXEC
psexec \\XXXXXXXXXX reg add “hklm\system\currentcontrolset\control\terminal server” /f /v fDenyTSConnections /t REG_DWORD /d 0
View Article//////////******* List of Views /Tables with fields**********////////////
////////////////****************************** List of Tables with fields************************/////////////////////////// SELECT T.NAME AS [TABLE NAME], C.NAME AS [COLUMN NAME], P.NAME AS [DATA...
View ArticlePull Distribution Points with Source Distribution Points SQL Query
SELECT DISTINCT dbo.v_DistributionPoints.ServerName AS [Source DP for Pull], dbo.v_DistributionPoints.IsPeerDP, dbo.v_DistributionPoints.IsPullDP, dbo.vPullDPFullMap.PullDPNALPath AS [All Types of DP...
View ArticleSoftware Updates Installed using SCCM or Manually
SELECT sys.Name0,ui.BulletinID, ui.ArticleID,ui.Title, CASE when (ucs.Status=2 and ui.IsDeployed=0 )then ‘Required_General’ when (ucs.Status=2 and ui.IsDeployed=1 )then ‘Required_ITICSDeploy’ WHEN...
View ArticleSCCM 2012: List of Public Microsoft Support Knowledge Base Articles
http://social.technet.microsoft.com/wiki/contents/articles/9539.sccm-2012-list-of-public-microsoft-support-knowledge-base-articles.aspx
View ArticleList of Users to add in a SCCM User Collection
select SMS_R_USER.ResourceID,SMS_R_USER.ResourceType,SMS_R_USER.Name,SMS_R_USER.UniqueUserName,SMS_R_USER.WindowsNTDomain from SMS_R_User where SMS_R_User.UserName in (‘User1′,’User2′)
View ArticleBasic USMT Understanding with example of windows 7 to Windows 10 user profile...
USMT is one of the Tool from ADK (Windows Assessment and Deployment Kit ) User State Migration Tool (USMT) is a tool that can be used to migrate user state, data and settings as part of a image...
View ArticleSpecific application From specific Collection ID
SELECT DISTINCT c.Name0 AS [Machine Name] , a.DisplayName0 AS [software name], a.Version0 AS [Version], dbo.v_FullCollectionMembership.CollectionID FROM dbo.v_Add_Remove_Programs AS a INNER JOIN...
View ArticleHow to find SCCM 2012 collection location
select c.SiteID as ‘Collection ID’,c.CollectionName,f.Name as ‘Folder Name’ from vCollections c inner join FolderMembers fm on fm.InstanceKey=c.SiteID inner join folders f on...
View ArticleBoundaries With Count of Devices
SELECT IP_Subnets0 AS ‘Subnets Detected’, vSMS_Boundary.Value AS ‘Sorted:Boundary Values’, COUNT(v_RA_System_IPSubnets.ResourceID)AS ‘Count of Devices’, vSMS_Boundary.DisplayName,...
View ArticleMy Scripts
Netsh firewall set opmode disable sc config Browser start= auto sc start Browser sc config lanmanserver start= auto sc start lanmanserver sc config lanmanworkstation start= auto sc start...
View ArticleSCCM Client Issues Fix batch file
http://sccm.blog.com/2012/07/03/sccm-client-issues-fix-batch-file/ *************** Install.bat \\10.10.10.10\e$\Softwares\Client\ccmsetup.exe /source:\\10.10.10.10\e$\Softwares\Client...
View ArticleIndividual deployment summary for specific application (AppModel...
select distinct aa.ApplicationName, ae.AssignmentID, aa.CollectionName as ‘Target Collection’, ae.descript as ‘Deployment Type Name’, s1.netbios_name0 as ‘Computer Name’, ci2.LastComplianceMessageTime,...
View ArticleSilverlight WQL query for all Old Versions
https://www.microsoft.com/getsilverlight/locale/en-us/html/Microsoft%20Silverlight%20Release%20History.htm silverlight_olderversions
View ArticleSimple powershell to create a text file On C Drive using SCCM
To create the text file Powershell.exe -Command "New-Item -path 'C:\Test' -name SCCM_Compliant.txt -type file -Force" __________________________ <a...
View Article