The ConfigMgr 2012 Package Conversion Manager (PCM) tool allows administrators to convert their legacy SCCM 2007 packages and programs into the new ConfigMgr 2012 Application and Deployment Types. This applies for all legacy packages apart from virtual APP-V packages that…
Mike has blogged nice post on on http://blogs.technet.com/b/michaelgriswold/archive/2012/04/27/how-do-i-get-the-right-permissions-in-configmgr-2012.aspx how RBA works Role and Scope… If you are new to System Center 2012 Configuration Manager and learning the new Role Based Authentication (RBA) model you may initially grasp the concept that…
Few days ago have install Core Hyper-V server 2008 R2 on Desktop machine which has around 8 GB of RAM and assigned IP Address for it through DHCP. Server is running fine with hyper-V manager but when I try to…
earlier I posted entry to list all virtual computers http://eskonr.com/2011/04/sccm-collection-for-virtual-or-physical-computers/ this collection gives you all computers that are Physical (running as Host) not Virtual… select SMS_R_System.ResourceId, SMS_R_System.ResourceType, SMS_R_System.Name, SMS_R_System.SMSUniqueIdentifier, SMS_R_System.ResourceDomainORWorkgroup, SMS_R_System.Client from SMS_R_System Where SMS_R_System.ResourceId not in (select SMS_R_System.ResourceId from …
A month ago or so ,we had SCCM 2012 Beta exam (#70-243 ) Released in other countries(not in india) but now SCCM 2012 is available in all prometric centers to take up the exam. Here is the course content for…
We are announcing support changes for the following releases. Please look for these changes to be reflected in the Supported Configuration pages within a few months. System Center Configuration Manager 2007 SP2 and R3 support Microsoft SQL Server 2012 (upgrade):…
collection to get all 32 Bit and 64 Bit servers. select SMS_R_System.ResourceId, SMS_R_System.ResourceType, SMS_R_System.Name, SMS_R_System.SMSUniqueIdentifier, SMS_R_System.ResourceDomainORWorkgroup, SMS_R_System.Client from SMS_R_System inner join SMS_G_System_COMPUTER_SYSTEM on SMS_G_System_COMPUTER_SYSTEM.ResourceID = SMS_R_System.ResourceId inner join SMS_G_System_OPERATING_SYSTEM on SMS_G_System_OPERATING_SYSTEM.ResourceId = SMS_R_System.ResourceId where (SMS_G_System_COMPUTER_SYSTEM.SystemType = "x64-based PC" or…
In my Recent post,I posted how to enable .net framework feature in windows 7 http://eskonr.com/2012/04/enable-net-framework-3-5-1-feature-in-windows-7/ but need to enable sub functions in it they are Windows communication foundation features. If you try to add these two features in additions to…
In ConfigMgr 2007, we now have several different types of packages, which can make it difficult to find a specific package which is referenced by a task sequence. Here are a couple of tips to help resolve package references:…
Enabling the .Net framework feature in windows 7 can be done using manually but if you want to do this on all clients ,how do you manage it ? Script Based using OCsetup ? or enabling this feature in Image…