SCOM SP1 RTM

Finally its out.

System Center Operations Manager 2007 Service Pack 1 helps you increase efficiency while enabling greater control of your IT environment—so you can spend more time driving business success. With Service Pack 1 there are new features have been enabled in the product and new scenarios which are now supported by the product team.

Feature Bullet Summary:

  • Improved Console Performance
  • Increased Scale Limits
  • Disaster Recovery solution for all OpsMgr roles
  • Supported in-place upgrade from RTM to Service Pack 1

Download at microsoft.com

Some more info at Clive Eastwood’s blog


SCCM 2007 R2

Wooohoo.

SP1 beta for SCCM is out… Ok, thats nice… but I want to check out the R2-beta.

Application Virtualization Management support

More at Omar’s blog


SFT_SOFTGRIDSERVER

Ok, the environment variable SFT_SOFTGRIDSERVER for the Softgrid Client is a small pain in the ass… but there are a few ways around it.

Adidas

The “easy” way is to use Adidas-net…

Pros: No extra tools needed.
Cons: You ware out your sneakers.

Right click computer.
Properties.
Advanced.
Environment variables
New…
 

The tools can be found at adidas.com

setx.exe

The utility setx.exe that can be found in the Windows 2000 Resource Kit and on later versions of Windows the tool is included.

Pros: You can use this in a loginscript.
Cons: Loginscripts sucks.

IF EXIST %SystemRoot%\System32\setx.exe SETX SFT_SOFTGRIDSERVER softgrid.snowland.se
 

The utility can be found at microsoft.com/downloads/

Group Policy

The (imho) best way is to use a GPO to manage the setting. There are a few ADM-temlates for the Softgrid Client, but if you only want the environment variable, here are an example.

Pros: Easy to manage.
Cons: You need a ADM-template

The ADM-template can be found below:

CLASS USER
CATEGORY "Snowland"
        CATEGORY "SoftGrid Client"
        KEYNAME "Environment"
                POLICY "Windows Environment Variable"
                        EXPLAIN "Set SFT_SOFTGRIDSERVER as a user variable"
                        PART "set SFT_SOFTGRIDSERVER=" EDITTEXT
                                VALUENAME "SFT_SOFTGRIDSERVER"
                        END PART
                END POLICY
        END CATEGORY
END CATEGORY

CLASS MACHINE
CATEGORY "Snowland"
        CATEGORY "SoftGrid Client"
                POLICY "Windows Environment Variable"
                        KEYNAME "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"
                        EXPLAIN "Set SFT_SOFTGRIDSERVER as a system variable"
                        PART "set SFT_SOFTGRIDSERVER=" EDITTEXT
                                VALUENAME "SFT_SOFTGRIDSERVER"
                        END PART
                END POLICY
        END CATEGORY
END CATEGORY

[Strings]
 


Jalasoft and Oracle

Nice… loads of companies running Oracle and SCOM…

A management pack for Oracle databases is being readied by Jalasoft for System Center Operations Manager 2007 and System Center Essentials. More information and details will shortly be made available by Jalasoft. If someone needs information now, he may contact Jalasoft Sales

Got the info from Bernardo Sanchez Blog


Inline tasks in SCOM

Since I can’t find any documentation on how to create inline tasks in knowledge I did a small reverse engineering on a SCOM MP.

Here is a summary of how to do it:

First you need to create a task that you can refer to. Take a note of your Task ID.

>
  ID="snowland_ServiceMonitor_ConsoleTask" Accessibility="Internal" Enabled="true" Target="snowland_ServiceMonitor_Class" Timeout="300" Remotable="true">
    >
Alert>
    ID="PA" TypeID="System!System.CommandExecuter">
      >
%SystemRoot%\System32\net.exe>
      >%SystemRoot%\System32>
      >START MyService>
      >20>
      >true>
    >
  >
>
 

And when you have the Task ID of your task you can create an inline task (or a link to a view or a website)

xmlns:maml="http://schemas.microsoft.com/maml/2004/10">

        >
Resolutions>
        >Mumbo jumbo text…>
        >
                >
                        >My Task>
                        condition="Task" href="snowland_ServiceMonitor_ConsoleTask&tasktarget={$TARGET$}" uri="MOM.Console.Exe" />
                >

        >

        >
                >
                        >My View>
                        condition="View" href="snowland_ServiceMonitor_MyView&viewtarget={$TARGET$}" uri="MOM.Console.Exe" />
                >

        >

        >
                >My WebLink>
                href="https://snowland.se/" />
        >

>
 

Tip: Use Authoring Console and a XML-editor.