Eswar Koneti's Blog

All about Configmgr and its connected objects…….

  • About Author
      View eswar koneti's LinkedIn profile
  • Enter your email address to subscribe to this blog and receive notifications of new posts by email.

    Join 99 other subscribers

  • Awards


  • FaceBook Updates

  • Catagories

  • Meta

  • Copyright!

    All the blog posts in this website are owned by Eswar Koneti and may not be reused in any mode without prior approval of Eswar Koneti. You may quote one paragraph from the blog posts if you link to the original blog post.
    Happy Reading!

Publish Custom Office Templates End users

Posted by Eswar Koneti on 5th June 2012

This post is going to be a something new today to publish Custom Office templates made available to all users when they open PowerPoint or Word or Excel Office applications.

This can be done several ways like AD group policy management or Scripting or other ways But I would prefer to do it using Configuration Manager.

After end of the session,You should create and deploy these Office 2010 templates for users with Microsoft Word 2010, PowerPoint 2010, and Excel 2010.

Here is what the requirement is and available to all end users when the user go for New file.

image thumb Publish Custom Office Templates End users

The Whole procedure involves

Creation of custom templates

creation of thumbnails and preview files

Creation of XML configuration file that describes the custom template, thumbnail, and preview files

Creation of registry key that enables Office to read the XML configuration file

Create your templates :

Step 1: Create Custom template (could be PowerPoint or Word or Excel etc) and save it as .dotx (for word) .potx (for PowerPoint) , .xltx (for Excel) on local Drive.

Create thumbnail and preview files (optional):

This is an optional step, but thumbnail and preview files can be very helpful to users because they enable users to quickly view and select templates. To see examples of thumbnail and preview files, click Sample Templates, on the Available Templates pane. If you decide not to create thumbnail and preview files for a custom template, users see the name of the template in the Available Templates pane.

Create an XML configuration file that describes the custom template, thumbnail, and preview files :

To display your custom templates in the Available Templates pane, you must create an XML configuration file. Office 2010 references this file to determine how to locate and display your template, thumbnail, and preview files.

Use the below sample xml code and save it as .xml (name ESKONR_Template.xml)

 

<?xml version="1.0" encoding="utf-8"?>
<o:featuredcontent lcid="1033" xmlns:o="urn:schemas-microsoft-com:office:office">

    <o:application id="PP">
        <o:featuredtemplates startdate="2011-03-01" enddate="2041-03-01">

            <!– TEMPLATE 1 –>
            <o:featuredtemplate title="ESKONR" source="C:\Program Files\Microsoft Office\Templates\ESKONR\ESKONR_Template_2012.pot" >

        </o:featuredtemplate>
        </o:featuredtemplates>
    </o:application>
</o:featuredcontent>

Changes you need to edit : Title: which is title name users will see it when they click New .

Source: Location for custom templates for PowerPoint,Excel or Word

filename : for Thumbnail preview if you don’t have ,remove the 2 lines (media and preview filename).

If you have multiple templates let say for word 2 ,Excel 2 ,you will have to create 4 templates one for each representing template name.

Once you are done with creating XML file,save it to location where templates are stored.

 

Create registry key that enables Office to read the XML configuration file:

Open the notepad and paste it ,save it as filename.reg

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Common\Spotlight\Providers\ESKONR]
"LastUpdateTimestamp"=hex:dd,ab,b8,4f,00,00,00,00
"ServiceURL"="C:\\Program Files\\Microsoft Office\\Templates\\ESKONR\\ESKONR_Template.xml"

Edit the reg key that matches with your Title and XML file names(bold letters need changes).

With this,we have got all our prerequisites files in hand.

Now we have got Templates,XML file and Registry Key .With this,we need to deploy all these pieces using Configuration Manager by copying the templates to User local drive folder.

We will achieve this using Simple Batch script using command Xcopy.

Open the notepad and paste the script which copies templates,XML files into user machines folder and run the registry at the end.

@ Echo off
REM Copy templates and registry files
REM Written by eswar koneti

mkdir "C:\Program Files\Microsoft Office\Templates\ESKONR"

Xcopy "%~dp0ESKONR_Template_2012.pot" "C:\Program Files\Microsoft Office\Templates\ESKONR" /Y
Xcopy "%~dp0ESKONR_Template.xml" "C:\Program Files\Microsoft Office\Templates\ESKONR" /Y

Xcopy "%~dp0Templates.reg" "C:\Program Files\Microsoft Office\Templates\ESKONR" /Y

reg import "C:\Program Files\Microsoft Office\Templates\ESKONR\Templates.reg" /Y

Create a package in SCCM using above batch file as command line and run the script using administrative rights and for each user who ever logs in so that it will be applicable to all users irrespective of computer.

Hope it helps!

Update :

What if there is new version of the content to be replaced on end user machines ?

To make this work,you will have to change the path of the existing template used in the above process .

Below is the registry location which you will have to identify and update accordingly.

HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Common\Spotlight\Content\ESKONR\PP1033\FeaturedTemplates\1\1

Tags: , , , , , , , ,
Posted in Documentation, SCCM 2007 | No Comments »

SCCM collection to use wildcard in String matching

Posted by Eswar Koneti on 5th June 2012

Creating collection to get computers that starts and end with particular string is used mostly using % .If this percentile used at the end of the variable name, you get all computer names that starts from particular string and if you use this in the beginning, gets all computers that ends with particular string.

Examples : To get all computer names that starts with ESKONR, use ESKONR% , to get all computer name that ends with ESKONR ,use %ESKONR.

But what if  need all computer name that has letters like ESK in the middle of the computer name. Let says i have computers with 15 digits and they have ES placed in 10-11 . Example : INHYD1202ES0003

We can use underscore as wildcard for one character space and use them along with Like statement and apply to fields.

Collection :

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.Name like "__________ES___" and SMS_R_System.ResourceDomainORWorkgroup = "ESKONR"

We have used 9 underscores in our query before E and 4 Underscores after S to tell that first 9 digits can be any thing and last 4 digits can be anything .

Underscores (_) as wildcard can be used at any location in the query but one can replace one character only.

Hope it helps!

Tags: , , , , , , , , , ,
Posted in Collections, SCCM 2007, SCCM 2012, WQL Quiries | No Comments »

SCCM report computers with lower version applications installed

Posted by Eswar Koneti on 24th May 2012

 

Full Details :http://social.technet.microsoft.com/Forums/en-US/configmgrgeneral/thread/7b4d3810-a262-4c63-8dd6-7cc906b85941

select sys.name0,sys.AD_Site_Name0,FCM.SiteCode,ARP.DisplayName0,ARP.Version0,ARP.InstallDate0 from V_R_system sys
inner join v_Add_Remove_Programs ARP on arp.resourceID=sys.ResourceID
inner join v_FullCollectionMembership FCM on FCM.ResourceID=sys.ResourceID
and arp.DisplayName0 like ‘%project reader%’ and ARP.Version0 < ’4%’

For collection ,follow the post here on http://eskonr.com/2012/05/sccm-collection-computers-with-lower-version-application/

Tags: , , , , , , , , , , ,
Posted in SCCM Reports, SQL Quiries | No Comments »

sccm collection computers with lower version application

Posted by Eswar Koneti on 24th May 2012

Full Details http://social.technet.microsoft.com/Forums/en-US/configmgrgeneral/thread/7b4d3810-a262-4c63-8dd6-7cc906b85941

This collection is created using sub selected queries http://eskonr.com/2011/12/sccm-collection-sub-selected-quiries/

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_ADD_REMOVE_PROGRAMS on SMS_G_System_ADD_REMOVE_PROGRAMS.ResourceID = SMS_R_System.ResourceId where SMS_G_System_ADD_REMOVE_PROGRAMS.ResourceID not in (select SMS_R_SYSTEM.ResourceID from SMS_R_System inner join SMS_G_System_ADD_REMOVE_PROGRAMS on SMS_G_System_ADD_REMOVE_PROGRAMS.ResourceID = SMS_R_System.ResourceId inner join SMS_G_System_ADD_REMOVE_PROGRAMS_64 on SMS_G_System_ADD_REMOVE_PROGRAMS_64.ResourceId = SMS_R_System.ResourceId where (SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName like "%project reader%" or SMS_G_System_ADD_REMOVE_PROGRAMS_64.DisplayName like "%project reader%") and (SMS_G_System_ADD_REMOVE_PROGRAMS.Version > "4%" or SMS_G_System_ADD_REMOVE_PROGRAMS_64.Version > "4%"))

Tags: , , , , , , , , , ,
Posted in SCCM Reports, WQL Quiries | No Comments »

SCCM 2012 Client center alpha is available

Posted by Eswar Koneti on 22nd May 2012

Project Description
The tool is designed for IT Professionals to troubleshoot SCCM/CM12 Client related Issues. The Client Center for Configuration Manager provides a quick and easy overview of client settings, including running services and Agent settings in a good easy to use, user interface.

This Tool is currently an alpha Version. For testing purposes only… !

Requirements

  • Windows Remote Management (WinRM) must be enabled and configured on all target computers. (Run "winrm quickconfig" in a command prompt.)
  • Microsoft .NET Framework 4 (on the computer running the Tool)
  • Configuration Manager 2012 Agent on the target computer (some features will also work with SCCM2007)
  • Admin rights on the target computer.
  • Tested on Windows7 x64 and Server 2008 R2

Please read for more information about version,download link http://sccmclictr.codeplex.com/

To install it,click on clickonce link http://sccmclictr.codeplex.com/releases/clickonce/SCCMCliCtrWPF.application?localhost

If you have any wishes or ideas, please place your comment on the Project-Page

Thanks to Roger for nice client troubleshooting tool!

Tags: , , , , , , , ,
Posted in SCCM 2012, Setup & Deployment | 2 Comments »

Scripted Deployment of SCCM 2012 Secondary Site

Posted by Eswar Koneti on 22nd May 2012

In System Center 2012 Configuration Manager, you can no longer deploy a secondary site server using Setup (wizard or scripted). Instead, you must use the Configuration Manager console to create a new secondary site. This is less than ideal if you want to deploy several secondary sites or want to automate the process for any other reason.
This project provides a script that will allow you to install a new System Center 2012 Configuration Manager secondary site server without using the Configuration Manager console. The script essentially performs the same actions as the Configuration Manager console, writing changes to the site control information through WMI.

The initial script is provided in VBScript, but I know one of our Configuration Manager MVP’s has been working on a Power Shell version that I hope we’ll be able to get added in the near future. The initial script is very basic, but should provide enough information to get you started and start some ideas flowing. I’ve already listed several To Do’s in the header of the script, but if you have other ideas, please let me know through the discussion.

Thanks to Jim Dempsey for developing this script !

Disclaimer:
Everything provided as part of this project is provided for informational purposes only. Microsoft and the project’s contributor(s) make no warranties, express or implied.

Download the script based tool Via http://cm12secsitescript.codeplex.com/

How to use the script,please refer http://blogs.technet.com/b/keithmayer/archive/2012/05/20/scripted-deployment-of-a-systemcenter-configuration-manager-2012-secondary-site-itcamp-sms.aspx

Tags: , , , , , , , , , ,
Posted in SCCM 2012, Setup & Deployment | No Comments »

SCCM 2012 Client Log files

Posted by Eswar Koneti on 18th May 2012

Unlike SCCM 2007,lot of changes with respect to sccm 2012 hierarchy, additional features,roles and look wise.

Log files are most Coveted for any kind of troubleshooting in sccm without which troubleshooting is Problematic and they are heart for troubleshooting.

Several log files are added in sccm 2012 because of its new features and added roles.

CAS.log : Content Access service. Maintains the local package cache on the client.

Ccm32BitLauncher.log :Records actions for starting applications on the client marked as “run as 32bit”.

CcmEval.log : Records Configuration Manager client status evaluation activities and details for components that are required by the Configuration Manager client.

CcmEvalTask.log : Records the Configuration Manager client status evaluation activities that are initiated by the evaluation scheduled task.

CcmExec.log : Records activities of the client and the SMS Agent Host service.

CcmMessaging.log: Records activities related to communications between the client and management points.

CCMNotificationAgent.log: Records activities related to client notification operations.

Ccmperf.log : Records activities related to the maintenance and capture of data related to client performance counters.

CcmRestart.log : Records client service restart activity.

CCMSDKProvider.log : Records activities for the client SDK interfaces.

CertificateMaintenance.log : Maintains certificates for Active Directory Domain Services and management points.

CIDownloader.log : Records details about configuration item definition downloads.

CITaskMgr.log : Records tasks that are initiated for each application and deployment type, such as content download or install or uninstall actions.

ClientAuth.log : Records the signing and authentication activity for the client.

ClientIDManagerStartup.log : Creates and maintains the client GUID and identifies tasks performed during client registration and assignment.

ClientLocation.log : Records tasks that are related to client site assignment.

CMHttpsReadiness.log : Records the results of running the Configuration Manager HTTPS Readiness Assessment Tool. This tool checks whether computers have a PKI client authentication certificate that can be used for Configuration Manager.

CmRcService.log :Records information for the remote control service.

ContentTransferManager.log : Schedules the Background Intelligent Transfer Service (BITS) or the Server Message Block (SMB) to download or to access packages.

DataTransferService.log : Records all BITS communication for policy or package access.

EndpointProtectionAgent : Records information about the installation of the Endpoint Protection client and the application of antimalware policy to that client.

execmgr.log : Records details about packages and task sequences that run on the client.

ExpressionSolver.log : Records details about enhanced detection methods that are used when verbose or debug logging is enabled.

FileBITS.log : Records all SMB package access tasks.

FileSystemFile.log : Records the activity of the Windows Management Instrumentation (WMI) provider for software inventory and file collection.

FSPStateMessage.log : Records the activity for state messages that are sent to the fallback status point by the client.

InternetProxy.log : Records the network proxy configuration and usage activity for the client.

InventoryAgent.log : Records activities of hardware inventory, software inventory, and heartbeat discovery actions on the client.

LocationCache.log : Records the activity for location cache usage and maintenance for the client.

LocationServices.log : Records the client activity for locating management points, software update points, and distribution points.

MaintenanceCoordinator.log : Records the activity for general maintenance task activity for the client.

Mifprovider.log : Records the activity of the WMI provider for .MIF files.

mtrmgr.log : Monitors all software metering processes.

PolicyAgent.log : Records requests for policies made by using the Data Transfer service.

PolicyAgentProvider.log : Records policy changes.

PolicyEvaluator.log : Records details about the evaluation of policies on client computers, including policies from software updates.

PolicyPlatformClient.log : Records the process of remediation and compliance for all providers located in %Program Files%\Microsoft Policy Platform, except the file provider.

PolicySdk.log : Records activities for policy system SDK interfaces.

PwrProvider.log : Records the activities of the power management provider (PWRInvProvider) hosted in the Windows Management Instrumentation (WMI) service. On all supported versions of Windows, the provider enumerates the current settings on computers during hardware inventory and applies power plan settings.

RemoteControl.log : Records the activities of remote control.

SCClient_<domain>@<username>_1.log : Records the activity in Software Center for the specified user on the client computer.

SCClient_<domain>@<username>_2.log : Records the historical activity in Software Center for the specified user on the client computer.

Scheduler.log : Records activities of scheduled tasks for all client operations.

SCNotify_<domain>@<username>_1.log : Records the activity for notifying users about software for the specified user.

SCNotify_<domain>@<username>_1-<date_time>.log : Records the historical information for notifying users about software for the specified user.

setuppolicyevaluator.log : Records configuration and inventory policy creation in WMI.

smscliui.log : Records usage of the Configuration Manager client in Control Panel.

SrcUpdateMgr.log : Records activity for installed Windows Installer applications that are updated with current distribution point source locations.

StatusAgent.log : Records status messages that are created by the client components.

SWMTRReportGen.log : Generates a usage data report that is collected by the metering agent. This data is logged in Mtrmgr.log.

UserAffinity.log : Records details about user device affinity.

VirtualApp.log : Records information specific to the evaluation of App-V deployment types

Wedmtrace.log: Records operations related to write filters on Windows Embedded clients.

Here are some #SCCM #Configuration Manager Referral Links:

Fundamentals of Configuration Manager – http://technet.micro…y/gg682106.aspx
Supported Configurations for Configuration Manager – http://technet.micro…y/gg682077.aspx
Planning for Configuration Manager Sites and Hierarchy – http://technet.micro…y/gg682075.aspx
Getting Started with Configuration Manager 2012 – http://technet.micro…y/gg682144.aspx
What’s New in Configuration Manager – http://technet.micro…y/gg699359.aspx
Planning for Site Systems in Configuration Manager – http://technet.micro…y/gg712282.aspx
Install Sites and Create a Hierarchy for Configuration Manager – http://technet.micro…y/gg712320.aspx
Technical Reference for Site Communications in Configuration Manager – http://technet.micro…y/gg712990.aspx
Migrating from Configuration Manager 2007 to Configuration Manager 2012 – http://technet.micro…y/gg682006.aspx
Frequently Asked Questions for Configuration Manager – http://technet.micro…y/gg682088.aspx

Tags: , , , , , , , , , ,
Posted in SCCM 2012, Setup & Deployment, Software Distribution | No Comments »

SCCM linked report Count of computers Assigned to Specific AD site

Posted by Eswar Koneti on 15th May 2012

Today’s post is going to listing down computers assigned to specific site with count and this will be linked to another report that gives you computer asset information.

If you have referred my previous post on computer asset information http://eskonr.com/2011/12/sccmconfigmgr-report-for-computer-asset-information-serialnumber-manufacturermodelprocessorip-addresshardaware-scan/ OR http://eskonr.com/2009/12/sccm-report-for-computers-asset-information-including-sn-number-and-model-name/ ,then it would be easy for you make it.

You need to create 2 reports 1)Count of Computers from AD site 2) list the computers assigned to specific Site

Create new report from reports node for 2) list the computers assigned to specific Site using the below SQL query(quotes posted in this blog are converted to fancy,please replace them with correct ones in your report)  :

SELECT
A.Name0,
MAX (B.SerialNumber0) AS ‘Serialnumber’,
A.Manufacturer0,
A.Model0, C.Name0 AS ‘Processor’,
D.TotalPhysicalMemory0 AS ‘Memory (KBytes)’,
MAX ( E.Size0 ) AS ‘Size (MBytes)’,
MAX (F.MACAddress0) AS ‘MAC Adress’,
MAX (F.IPAddress0) AS ‘IP Adress’,
G.AD_Site_Name0 AS ‘AD Site’,
MAX (A.UserName0) AS ‘Last user logged in’,
H.Caption0 AS ‘Operating System’,
H.CSDVersion0 AS ‘Service Pack’,
G.Creation_Date0 AS ‘Creationdate in SMS’,
I.LastHWScan
FROM
v_GS_COMPUTER_SYSTEM A,
v_GS_PC_BIOS B,
v_GS_PROCESSOR C,
v_GS_X86_PC_MEMORY D,
v_GS_DISK E,
v_GS_NETWORK_ADAPTER_CONFIGUR F,
v_R_System G,
v_GS_OPERATING_SYSTEM H,
v_GS_WORKSTATION_STATUS I
WHERE
A.ResourceID = B.ResourceID AND
A.ResourceID = C.ResourceID AND
A.ResourceID = D.ResourceID AND
A.ResourceID = E.ResourceID AND
A.ResourceID = F.ResourceID AND
A.ResourceID = G.ResourceID AND
A.ResourceID = H.ResourceID AND
A.ResourceID = I.ResourceID
AND G.AD_Site_Name0=@ADSITE
GROUP BY A.Name0, A.Manufacturer0, A.Model0, C.Name0, D.TotalPhysicalMemory0, G.AD_Site_Name0, A.UserName0, H.Caption0, H.CSDVersion0, G.Creation_Date0, I.LastHWScan

Create a prompt for ADSITE with blank query as shown below :

image thumb20 SCCM linked report Count of computers Assigned to Specific AD site

Now create another report 1)Count of Computers from AD site with below SQL query :

Select a.AD_Site_Name0 as [AD Site],Count(a.Netbios_Name0) as [Total Computers] from v_R_System a
group by a.AD_Site_Name0
order by a.AD_Site_Name0

Once done, right click on above report and go to properties of 1)Count of Computers from AD site ,click on link

in link type select link to another report under report select the 2nd report  2) list the computers assigned to specific Site

and click on the prompt (hand symbol) and select column 1 as prompt shown like below.

 

image thumb19 SCCM linked report Count of computers Assigned to Specific AD site

You are done now ! icon smile SCCM linked report Count of computers Assigned to Specific AD site

Tags: , , , , , , , , , , , ,
Posted in SCCM Reports, SQL Quiries | No Comments »

SCCM 2012 Dictionary words

Posted by Eswar Koneti on 9th May 2012

While working SCCM 2012,we come across many words and sometimes we look for the terms what does it mean.

Listed terms below should give you what each does so call it as SCCM 2012 Dictionary.

Active Directory Delta Discovery

A discovery option that allows Configuration Manager to discover only new or changed resources in Active Directory independently of a full discovery cycle.

Active Directory Forest Discovery method

A Configuration Manager discovery method that searches for Active Directory sites and subnets in Active Directory forests.

Active Directory Group Discovery method

A Configuration Manager discovery method that searches for the group memberships of computers and users by polling Active Directory Domain Services.

Active Directory System Discovery method

A Configuration Manager discovery method that searches for system resources by polling Active Directory Domain Services.

Active Directory User Discovery method

A Configuration Manager discovery method that searches for computer user resources by polling Active Directory Domain Services.

Active Management Technology (AMT)

See Other Term: Intel Active Management Technology

active software update point

The software update point for a site that interacts with Windows Server Update Services (WSUS) to configure software updates settings and manage software updates synchronization. The active software update point can accept connections from the intranet and the Internet.

Application Administrator

A security role that grants permissions to administrative users so that they can perform both the Application Deployment Manager role and the Application Author role.

Application Author

A security role that grants permissions to administrative users so that they can create, modify, and retire applications.

Application Catalog web service point

A site system role that provides software information to the Application Catalog website from the Software Library.

Application Catalog website point

A site system role that provides users with a list of available software from the Application Catalog.

Application Deployment Manager

A security role that grants permissions to administrative users so that they can deploy and monitor applications.

Asset Intelligence

A Configuration Manager feature that allows administrators to inventory and manage software license usage throughout their enterprise.

Asset Intelligence catalog

A Configuration Manager catalog that contains categorization and identification information for software titles and versions, which is used to classify inventoried software.

Asset Intelligence synchronization point

A site system role that connects to System Center Online to download Asset Intelligence catalog information and upload uncategorized titles so that they can be considered for future inclusion in the catalog.

Asset Manager

A security role that grants permissions to administrative users so that they can manage the Asset Intelligence synchronization point, Asset Intelligence reporting classes, software inventory, hardware inventory, and metering rules.

assigned management point

A management point in a primary site that is assigned to the Configuration Manager client.

assigned site

A site to which a Configuration Manager client is currently assigned.

binary delta replication

A Configuration Manager process that copies only the changed portions of a package or content  file rather than the entire file when an update has been made.

boundary

An IP subnet, IP address range, IPv6 prefix, or Active Directory site that identifies the network location of clients in the Configuration Manager hierarchy.

central administration site

The central administration site coordinates intersite data replication across the hierarchy by using Configuration Manager database replication. It also enables the administration of hierarchy-wide configurations for client agents, discovery, and other operations.

collection

A set of resources in the Configuration Manager hierarchy.

Compliance Settings Manager

A security role that grants permissions to administrative users so that they can define and monitor Compliance Settings.

component server

A server that runs Configuration Manager services. When you install all the site system roles except for the distribution point role, Configuration Manager automatically installs the component server.

Configuration Manager Application Catalog

The web-based view of the applications that are available for a user to search, browse, request, and install.

Configuration Manager Software Center

The end-user program that allows the user to set preferences for how their software is installed. End users can also use Configuration Manager Software Center to request, install, remove, and monitor the software that is deployed by using System Center 2012 Configuration Manager.

Configuration Manager software inventory

A Configuration Manager feature that automatically gathers information about software on client computers.

Configuration Manager software metering

The Configuration Manager feature that monitors software usage on client computers.

data discovery record (DDR)

The file format (.ddr) and the actual file that is used by Configuration Manager to report discovery data to a Configuration Manager site database.

database replication

A type of data replication in System Center 2012 Configuration Manager that uses SQL Server replication.  

delta inventory file

A file generated after Configuration Manager performs a complete inventory, containing only hardware or software properties that were added, removed, or changed since the previous inventory cycle.

delta replication

The copying of only the changed files in a Configuration Manager package when an update has been made to the package.

deployment purpose

An application state that is associated with the deployment of software, such as Available or Required.

deployment type

A technology that is used to deploy an application to devices. A deployment type is contained within an application; for example, Windows Installer could be a deployment type for the “Visio 2007” application.

discovery data

A set of properties collected by a discovery method that reflects the attributes of a Configuration Manager resource.

discovery data record (DDR)

The file format (.ddr) and the actual file that is used by Configuration Manager to report discovery data to a Configuration Manager site database.

distribution point

A site system role that contains source files for clients to download, such as application content, software packages, software updates, operating system images, and boot images.

distribution point group

A set of distribution points that you can manage as a single entity.

Endpoint Protection Manager

A security role that grants permissions to administrative users so that they can define and monitor security policies.

Endpoint Protection point

A site system role that Configuration Manager uses to accept the Endpoint Protection license terms and to configure the default membership for Microsoft Active Protection Service.

enrollment point

A site system role that uses PKI certificates to complete mobile device enrollment and to provision Intel AMT-based computers.

enrollment proxy point

A site system role that manages enrollment requests from mobile devices so that they can be managed by Configuration Manager.

Exchange Server connector

A Configuration Manager technology that connects to Exchange Server to discover and manage mobile devices.

fallback site

The site in the hierarchy that clients are assigned to when they are installed by using automatic site assignment and they are not in a boundary group that has an assigned site.

fallback status point

A site system role that helps you monitor client installation and identify the clients that are unmanaged because they cannot communicate with their management point.

Full Administrator

A security role that grants all permissions in Configuration Manager to an administrative user.

global conditions

A setting or an expression that is used to define rules that specify how an application is deployed on client devices.  See Also: requirement rules

global data

A set of administrator-created objects that are replicated to all sites throughout the hierarchy. Secondary sites receive a subset of this data.  See Also: local data

Heartbeat Discovery method

A Configuration Manager discovery method that is used to update data discovery records (DDRs) for each Configuration Manager client on a set schedule to ensure that they remain current in the site database.

IDMIF file

A type of Management Information Format (MIF) file that can be used to add new architectures or updates to existing architectures in the Configuration Manager site database to accommodate custom hardware inventory properties.

incremental collection evaluation

A feature that enables you to evaluate new or changed members of a collection.

incremental collection member evaluation

A process that periodically scans for new or changed resources from the previous collection evaluation and then updates the collection membership with only these resources.

Infrastructure Administrator

A security role that grants permissions to administrative users so that they can perform migration tasks and create, delete, and modify the Configuration Manager server infrastructure.

Intel Active Management Technology (AMT)

An Intel networking management technology that is supported by Configuration Manager out of band management, which enables a Configuration Manager administrator to manage desktop computers independently from the Configuration Manager client or the computer operating system.

Internet-based client management

A feature in Configuration Manager that allows you to manage computers that have the Configuration Manager client agent but do not connect into the network through a VPN or dial-up connection.

Internet-based site system

A site system role that allows connections from clients when they are managed over the Internet.

Internet-based software update point

The software update point for a site that accepts communication from only client computers on the Internet. There can be only one active Internet-based software update point.

local data

A set of objects that are automatically created by Configuration Manager. This data is not replicated to other sites.  See Also: global data

maintenance window

A period of time, defined by administrators, when changes can be made on the computers that are members of a Configuration Manager collection.

Managed Object Format (MOF)

The file type, based on the Interface Definition Language (IDL), that describes management information. The MOF syntax is a way to describe object definitions in textual form.

management controller

The hardware and firmware component on computer motherboards that supports out of band management.

Management Information Format (MIF) file

The file type (.mif) that can be used to modify the Configuration Manager database by creating architectures, object classes, and attributes.

management point

A site system role that provides policy and service location information to clients and receives configuration data from clients.

membership rule

The criteria by which Configuration Manager evaluates whether a resource belongs to a particular collection.

Network Discovery method

The Configuration Manager discovery method that enables the Configuration Manager administrator to discover any network resources that are IP addressable.

NOIDMIF file

A custom Management Information Format (MIF) file that Configuration Manager administrators can use to modify or append object classes and properties to existing client inventory data.

non-peak power plan

A Configuration Manager power plan that you can configure with power settings that are applied outside peak hours or business hours.

operating system deployment

A Configuration Manager feature that allows you to create operating system images and deploy those images to target computers

Operating System Deployment Manager

A security role that grants permissions to administrative users so that they can create, deploy, and manage operating system images.

Operations Administrator

A security role that grants permissions to administrative users so that they can perform all actions in Configuration Manager except for those that are required to manage security.

out of band management

A feature in Configuration Manager that allows computers to be managed outside standard management channels by connecting to a supported management controller. This management channel is independent from the Configuration Manager client and the operating system.

out of band service point

A site system role that provisions and configures Intel AMT-based computers for out of band management.

package

A Configuration Manager object that contains the content files and instructions for distributing programs, software updates, boot images, operating system images, and drivers to Configuration Manager clients.

package definition file

An ASCII text file that contains predefined software distribution objects, such as programs and packages that are used for software deployment.

package share

A network share that includes the software installation files for a package. 

package source directory

A directory that contains Configuration Manager package source files that are used for package distribution.

package update

A Configuration Manager operation that increments the package version and updates all distribution points with only the files that have changed in the package.

peak power plan

A Configuration Manager power plan that you can configure with power settings that are applied during the peak hours or business hours that you specify.

power plan

A group of Windows-based power settings that you can apply to computers by using Configuration Manager power management.

preferred distribution point

A distribution point with an associated boundary group that includes the client’s current location on the network.

prestart command

A script or an executable file that supports operating system deployment and that can interact with the user in Windows PE before a task sequence runs.

primary device

A software deployment condition that defines one or more devices that a specific user uses. A primary device is typically determined either by frequency of use or by business requirements. 

primary site

A Configuration Manager site that has clients assigned to it and that processes client-generated data.

primary user

The main user of a device. (A device can have more than one primary user.)

Read-only Analyst

A security role that grants permissions to administrative users so that they can view all objects in Configuration Manager.

reinstate

To bring an application out of retirement and back into service.

remediation server

A server that is used to update the computer state by providing software updates, new antivirus signatures, additional intrusion detection signatures, and so on.

Remote Tools Operator

A security role that grants permissions to administrative users so that they can run and audit remote administration tools.

Replication Link Analyzer

A Configuration Manager tool that detects, analyzes, and remediates database replication issues in a hierarchy.

reporting services point

A site system role that integrates with SQL Server Reporting Services to create and manage reports for Configuration Manager.

Resource Explorer

A Configuration Manager console feature that displays the hardware and software inventory that has been collected from clients.

retire

To remove an application from service.

role-based administration

The method in which System Center 2012 Configuration Manager secures objects.

secondary site

A child of a primary Configuration Manager site.

Security Administrator

A security role that grants permissions to administrative users so that they can add, remove, and modify administrative users and their administrative assignments.

security role

A set of permissions that defines what an administrative user can do and see in the Configuration Manager console.

security scope

A method that, when used in conjunction with security roles, limits which objects an administrative user can use and see.

sender

A Configuration Manager communication mechanism that lets you create and send package information to another Configuration Manager site by using standard network channels.

shared distribution point

A distribution point in a Configuration Manager 2007 hierarchy that clients can use to download the content and packages that have been migrated to System Center 2012 Configuration Manager.

site assignment

The process of including selected resources in a Configuration Manager site.

site code

A three-character code that Configuration Manager uses to uniquely identify a Configuration Manager site.

site control file

An ASCII text file that contains the settings of a Configuration Manager site.

site data

The operational information that is created by a Configuration Manager site and that is replicated to the central administration site. Site data includes hardware inventory data, status messages, alerts, and the results of query-based collection rules.

site database server

A server that hosts the SQL Server database, which stores information about Configuration Manager assets and site data.

site server

A computer on which you run the Configuration Manager setup program and which provides the core functionality for the site.

site system

A server that provides Configuration Manager functionality to a Configuration Manager site.

SMS Executive

The primary Configuration Manager service that accesses and updates the database and manages many different process threads.

SMS Provider

A WMI provider that allows both read and write access to the Configuration Manager site database.

software update point

A site system role that integrates with Windows Server Update Services (WSUS) to provide software updates to Configuration Manager clients.

stand-alone site

A Configuration Manager primary site with no parent sites and no child sites.

state message

A message type that is used to identify at what stage a Configuration Manager client process has succeeded, failed, or stopped.

state migration point

A site system role that stores user state data when a computer is migrated to a new operating system.

status filter rule

A filtering rule that controls how status messages are reported and viewed.

status message

A message generated by a Configuration Manager component and viewed in the Status Message Viewer.

status message threshold

The limit that defines when the summary status for a component or site system should indicate OK, Warning, or Critical status.

Status Message Viewer

A tool in the Configuration Manager console that is used to browse the status messages in the Configuration Manager site database.

status summarizer

A component that consolidates the data generated by Configuration Manager status messages into a succinct view of the status of a component, a server, a package, or an advertisement.

supersedence

A deployment behavior that specifies how new software replaces existing software.

System Health Validator point

A site system role that validates Configuration Manager Network Access Protection (NAP) policies. It must be installed on a NAP health policy server.

task sequence

The mechanism in Configuration Manager for performing multiple steps or tasks on a client computer at the command-line level without requiring user intervention.

tiered secondary

In Configuration Manager, a secondary site that receives deployment content from another secondary site.

trusted root key

An encryption key used in Configuration Manager to help clients identify valid management points.

uninterpreted configuration item

An imported configuration item that cannot be interpreted by the Configuration Manager console and whose properties cannot be viewed or edited in the console.

unmanaged client

A client that is not communicating with its assigned site in the Configuration Manager hierarchy and therefore cannot receive policy or upload inventory data.

user device affinity

The mapping of a user to a device, which enables deployment conditions and simplifies the complexity of the deployment.

wake-up packet

A packet that is sent by a Configuration Manager primary site server to bring computers out of a sleep state so that they can perform a management function, such as installing a mandatory software update.

wipe

To remove all data from a mobile device that has been lost, stolen, or compromised.

 

Please post Via comments if you think there are missing…

Reference Via http://technet.microsoft.com/en-us/library/hh524341.aspx

Tags: , , , , , , , ,
Posted in Documentation, SCCM 2012, Setup & Deployment | No Comments »

SCCM 2012 Default reports

Posted by Eswar Koneti on 9th May 2012

We already know that Configuration Manager no longer uses the reporting point; the reporting services point is the only site system role that Configuration Manager now uses for reporting.

The reporting services point is a site system role that is installed on a server that is running Microsoft SQL Server Reporting Services. The reporting services point copies the Configuration Manager report definitions to Reporting Services, creates report folders based on report categories, and sets security policy on the report folders and reports based on the role-based permissions for Configuration Manager administrative users.

Configuration Manager provides report definitions for over 400 reports in over 50 report folders, which are copied to the root report folder in SQL Server Reporting Services during the reporting services point installation process. The reports are displayed in the Configuration Manager console and organized in subfolders based on the report category. Reports are not propagated up or down the Configuration Manager hierarchy; they run only against the database of the site in which they are created.

Here are the list of default sccm reports when you install Reporting service point role.

http://eskonr.com/wp-content/uploads/2012/05/ConfigMgr2012-Default-Reports.zip

Tags: , , , , , , , , , ,
Posted in SCCM 2012, SCCM Reports | No Comments »