>

System Center CM12 RC2 are available

download here, download the complete Package, in the download manager you can delete the other stuff Zwinkerndes Smiley
http://technet.microsoft.com/en-us/evalcenter/hh505660.aspx

Posted on January 23, 2012 at 09:26 by mirko colemberg · Permalink · Leave a comment
In: sccm

Don’t use this Site codes

There are an Article from MS, that describes how Site code’s are reserved and you should not use in your Environment.

Using reserved names as site codes in SMS 2003, System Center Configuration Manager 2007 or System Center 2012 – Configuration Manager
http://support.microsoft.com/kb/279868/en-us?sd=rss&spid=12769

 

have fun…

Posted on January 21, 2012 at 13:28 by mirko colemberg · Permalink · Leave a comment
In: CM12, sccm, Server, sites · Tagged with: 

Course CM12

now I am Preparing:

10747A Administering System Center 2012 Configuration Manager (5 Days) “Beta”

and

10748A Deploying System Center 2012 Configuration Manager (3 Days) “Beta”

it is a lot new stuff.

But first you have to learn the 10747 5 Day Course, if you have a big environment you have also visit the 10748 3 Day extended Course…

I hope we can offer courses asap for you, that you can understand how is the change to User Centric in the future. Also to it very easy……

 

For the Course Details have a look at this Links below:

http://www.microsoft.com/learning/en/us/Course.aspx?ID=10747A&Locale=en-us

http://www.microsoft.com/learning/en/us/Course.aspx?ID=10748A&Locale=en-us

and for the Exam 70-243 information’s:

http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-243&locale=en-us#tab1

Posted on January 19, 2012 at 13:12 by mirko colemberg · Permalink · Leave a comment
In: CM12, sccm · Tagged with: , , , , ,

System Center 2012 Lizenzierung

There a new Aricle aviable for the Licencing
http://blogs.technet.com/b/austria/archive/2012/01/18/system-center-2012-lizenzierung.aspx

Posted on January 19, 2012 at 09:35 by mirko colemberg · Permalink · Leave a comment
In: CM12, sccm · Tagged with: ,

sccm 2012 in april 2012 course aviable

MS creates two new courses for SCCM 2012

 

let us learn Zwinkerndes Smiley

Posted on January 3, 2012 at 13:03 by mirko colemberg · Permalink · Leave a comment
In: sccm

System Center 2012 Configuration Manager and System Center 2012 Endpoint Protection Release Candidates

Time is here to test the RC of SCCM 2012, yes…. :-D

happy testing

http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=27841

and here  from connct the package migration tool to migrate packages from “normal” packages to applikations: https://connect.microsoft.com/ConfigurationManagervnext/Downloads/DownloadDetails.aspx?DownloadID=39431

Posted on October 27, 2011 at 16:18 by mirko colemberg · Permalink · Leave a comment
In: FEP, sccm, sccm 2012 · Tagged with: 

Configuration Manager P2V Migration Toolkit Release Candidate

Configuration Manager P2V Migration Toolkit Release Candidate is ready to download from connect

Posted on October 26, 2011 at 09:40 by mirko colemberg · Permalink · Leave a comment
In: sccm, sccm 2012 · Tagged with: ,

FEP Install on a multisite SCCM2007 infrastructure

read this to understand FEP-Client installation on a multisite Hirarchy of SCCM 2007

About Configuration Manager Site Topologies and FEP 2010
Posted on September 30, 2011 at 09:26 by mirko colemberg · Permalink · Leave a comment
In: FEP, sccm · Tagged with: ,

Collect the Monitor Serial Numbers for your CMDB Part2

Create a Report for looking the Clients Monitors

insert this:

SELECT DISTINCT

v_r_system.netbios_name0 AS “Computer Name”,

v_gs_system_enclosure.serialnumber0 AS “Serial Number”,

v_GS_PC_BIOS.serialnumber0 AS “PC Bios Serial Number”,

v_gs_computer_system.manufacturer0 AS “Computer Manufacturer”,

v_gs_custominventoryinfo.model0 AS “Monitor Model”,

v_gs_custominventoryinfo.SerialNumber0 AS “Monitor SN”

 

FROM v_gs_processor

INNER JOIN v_r_system

ON v_gs_processor.resourceid = v_r_system.resourceid

INNER JOIN v_gs_system_enclosure

ON v_gs_system_enclosure.resourceid = v_r_system.resourceid

INNER JOIN v_GS_PC_BIOS

ON v_GS_PC_BIOS.resourceid = v_r_system.resourceid

INNER JOIN v_gs_computer_system

ON v_gs_computer_system.resourceid = v_r_system.resourceid

INNER JOIN v_gs_custominventoryinfo

ON (v_gs_custominventoryinfo.resourceid = v_r_system.resourceid)

have fun, All information is provided “as is” without any warranty! Try in lab before. Handle with

Posted on September 21, 2011 at 15:44 by mirko colemberg · Permalink · Leave a comment
In: Reporting, sccm, scripts · Tagged with: , ,

Collect the Monitor Serial Numbers for your CMDB Part1

First you have to install the WMI- Provider, written by Roger Zander
Download Versions x86/x64: http://sourceforge.net/projects/wmimonitor/files/wmimonitor/V1.0.0.3/

Implement to SCCM and Push the installatio on every Client.
Test it with the WMI-Command (read in Rogers Blog)

Modify the sms_def.mof file on all Primary Sites.
You can find the File in ‘%Program Files%\Microsoft Configuration Manager\inboxes\clifiles.src\hinv’
(copy first that you have a Backup)

Add the following on the File, search  for “Software Metering’s List of recently used apps”
and past it after this section.

//————————————————
// Moitor informations
//————————————————
#pragma namespace (“\\\\.\\root\\cimv2\\sms“)

class win32_MonitorDetails

{

[key]

string Monitor_Details;

};

#pragma namespace (“\\\\.\\root\\CIMv2\\sms“)

[ SMS_Report(TRUE),
SMS_Group_Name("MonitorDetails"),
SMS_Class_ID("Microsoft|CustomInventoryInfo|1.0"),
Namespace("\\\\\\\\.\\\\root\\\\CIMv2")
]

class win32_MonitorDetails : SMS_Class_Template

{

[SMS_Report(TRUE),key]
string Model ;
[SMS_Report(TRUE),key]
string SerialNumber ;

};

to controll view the log “%Program Files%\Microsoft Configuration Manager\logs\dataldr.log” on the Primary site that you edit the sms_def.mof
it should be everything fine, or you have a entrance that sccm backups the old sms_def.mof.bak file

Go to the Client with the SCCM-Client-Center tool and start the HW-Inventory (Full), contol on the client in the log “c:\windows\system32\ccm\logs\inventoryagent.log” to see if  Win32_monitordetails details are inside.
Start the Recource Explorer and have a look on “MonitorDetails”

have fun, All information is provided “as is” without any warranty! Try in lab before. Handle with care in production

Posted on September 21, 2011 at 15:18 by mirko colemberg · Permalink · Leave a comment
In: client, Discovery, sccm, scripts · Tagged with: , , ,