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 will automatically be converted to the new application model during the migration process. Once your legacy packages have been migrated and you have installed the Package Conversion Manager utility, then it is just a matter of analysing your packages in order to determine which readiness state it is in, and then converting your packages. There are still a number of…
Author: Eswar Koneti
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 you grant a user a role and scope to define their security access. I find this gets people a little confused some times. The Role is the set of abilities a user is given. To compare to some thing people are more familiar with, Administrator role means you can do things in AD like crate accounts, stop services, etc. That’s…
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 connect to it from another machine as it is CORE and no console based (less resources used by this) ,it gives me error “You do not have the required permission to complete this task. Contact the administrator of the authorization policy for the computer” John has nice post on this here . Below are the steps what I have performed…
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 SMS_R_System inner join SMS_G_System_COMPUTER_SYSTEM on SMS_G_System_COMPUTER_SYSTEM.ResourceID = SMS_R_System.ResourceId where SMS_G_System_COMPUTER_SYSTEM.Model like "%Virtual%") and SMS_R_System.Client is not null
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 it http://www.microsoft.com/learning/en/us/exam.aspx?id=70-243#tab1
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): System Center Configuration Manager 2007 SP2 and System Center Configuration Manager 2007 R3 now support upgrading an existing site database to Microsoft SQL Server 2012. The Reporting Services Point site system and Client Status Reporting feature in System Center Configuration Manager 2007 R3 are also supported with SQL Server 2012. To use SQL Server 2012 for the site database, you…
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 SMS_G_System_COMPUTER_SYSTEM.SystemType = "X86-based PC") and SMS_G_System_OPERATING_SYSTEM.Caption = "Microsoft Windows Server%" Reference Via http://social.technet.microsoft.com/Forums/en-US/configmgradminconsole/thread/ee47ec21-b113-4aed-956d-36205b619091
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 .net framework using DISM,it doesn’t work and you will get error :50 in execmgr.log due to missing elements required for HTTP Activation. I tried enabling these features using command line manually with : Dism.exe /online /Enable-Feature /FeatureName:NetFx3 /FeatureName:WCF-HTTP-Activation /FeatureName:WCF-NonHTTP-Activation It failed with error code 50 saying The operation completed but WCF-HTTP-Activation feature was not enabled. Ensure that the following parent…