Home » Home »

The complete Forefront Endpoint Protection 2010 installation and configuration guide

Forefront Endpoint Protection 2010 (FEP 2010) allows you to consolidate desktop security and management in a single solution, because it is built on System Center Configuration Manager 2007. That means in many cases you can use your existing client management infrastructure to deploy and manage your endpoint protection. My colleague Kent Agerlund and I have [...]

Category: Home  |  4 Comments

Windows 8 Developer Preview is ready for download

Microsoft has made Windows 8 Developer Preview availible for download. You can get the 32 and 64 bit version both with or without the developer tools, which consists of: Windows SDK for Metro style apps Microsoft Visual Studio 11 Express for Windows Developer Preview Microsoft Expression Blend 5 Developer Preview 28 Metro style apps including [...]

Category: Home  |  Comment

Migrating Bitlocker enabled machines to another domain

In the SCCM Admins guide to preparing your environment for Bitlocker Drive Encryption post series, I walked you through how to prepare your environment for Bitlocker in order to enable the backup of the Bitlocker recovery password and the TPM owner password hash, to Active Directory. But what will happen if: 1. You join a [...]

Category: Home  |  2 Comments

SCCM Admins guide to preparing your environment for Bitlocker Drive Encryption – part 3

In part 1 and Part 2, I talked about the requirements for Bitlocker and walked you through how to extend your Active Directory Schema if you run Windows Server 2003 SP1/SP2 Windows Server 2003 R2 domain controllers. We then sat the permission so that a Windows 7 machine was able to write its own TPM [...]

Category: Home  |  Comment

Using Collection limitations in Configuration Manager 2012

In my previous post I blogged about migrating collections from ConfigMgr. 2007 to ConfigMgr. 2012. This post will focus on some of the great collection changes you will see in ConfigMgr. 2012. First a quick recap of the new features: There are separate collections for Users and Devices. You can’t mix objects the two objects [...]

Category: Home  |  1 Comment

Hey, what is Custom Client Settings in Configuration Manager 2012!?

In Configuration Manager 2007 most of the client agents settings you can configure are site wide except for a few such as Policy Polling interval and restart settings. These two can be configure on a collection basis – but that is it. But here comes Configuration Manager 2012 to the rescue – You can now [...]

Category: Configuration Manager 2012, Home  |  Comment

Cannot use comma when defining SLA in OpsMgr 2007

  If you are one of the guys who unfortunately live in other countries than an english spoken one – you could have problems with defining your SLA on e.g. a distributed application. But try to Log in on your RMS with the service account and change regional setting to your locale, and then you [...]

Category: Home, Operations Manager 2007  |  Comment

Changing Alert Resolution State automatically

If you need to change the Resolution State when a new Alert appears, or change the status of an alert from a specific source or a given period of time, it could be done with a script. The script will be called by creating a Notification. Often you specify a SMTP, SMS or IM as [...]

Category: Home, Operations Manager 2007  |  Comment

Include other files in VBScript

Have you ever wanted to include another .vbs file with all your common functions in a script? Many people I have met thought it wasn’t possible. But it is actually pretty easy to do with “ExecuteGlobal” to make it even easier, I have created a small function which you can put in your scripts and [...]

Category: Home, Scripting, VBScript  |  2 Comments

Building a Discovery and a Group based on Computername Convention

To create a Group and a rollup for all your DNS servers like: DkCphDNS0xx you could create your own Management Pack like this walk through. The code used in the example is from Jonathan Almquist\s blogpost: http://blogs.technet.com/b/jonathanalmquist/archive/2010/04/28/how-to-create-a-computer-group-in-the-r2-authoring-console.aspx and in this example the code is like this: <RuleId>$MPElement$</RuleId> <GroupInstanceId>$MPElement[Name="MP_RWSiteServers.RWSiteServersGroup"]$</GroupInstanceId> <MembershipRules> <MembershipRule> <MonitoringClass>$MPElement[Name="Windows!Microsoft.Windows.Computer"]$</MonitoringClass> <RelationshipClass>$MPElement[Name="SC!Microsoft.SystemCenter.ComputerGroupContainsComputer"]$</RelationshipClass> <Expression> <Contains> <MonitoringClass>$MPElement[Name="MP_RWSiteServers.SiteServers"]$</MonitoringClass> [...]

Category: Home  |  Comment