WEBdav fails on Windows server 2008 R2

Just spend a few hours this morning troubleshooting a new Configuration Manager 2007 SP2 R2 installation.  I started to search the Internet for a solution and didn’t really find any good blog entries. Found a few similar errors posted in the Technet forums and thought I would write a post on the subject. The errors After configuring the Management Point I started to receive these errors: Sitecomp.log: Component [SMS_MP_CONTROL_MANAGER] could not install correctly on server Servername. WebDAV on the Windows Longhorn server is not configured correctly. MPsetup.log <12-30-2009 09:00:07>  WebDAV settings is not setup appropriately <12-30-2009 09:00:07>  [Allow property queries [...]

By |2009-12-30T11:31:10+01:00december 30th, 2009|Configuration Manager (SCCM)|1 Kommentar

Disable Adobe Reader JavaScript

Adobe has just informed about a critical vulnerability in Adobe Reader 9.2 and earlier versions  - which is well… all Adobe Reader versions :-) An update to fix the vulnerability will be released mid January 2010. You can read the bulletin here - http://www.adobe.com/support/security/advisories/apsa09-07.html Disable Adobe Reader JavaScript manually 1. Launch Adobe Reader. 2. Select Edit>Preferences 3. Select the JavaScript Category 4. Uncheck the 'Enable Acrobat JavaScript' option 5. Click OK Disable Adobe Reader JavaScript with a configmgr. package 1. Create bat file with this entry reg add "HKCU\Software\Adobe\Acrobat Reader\9.0\JSPrefs" /v bEnableJS /d 0 /t REG_DWORD /F 2. Copy the [...]

By |2009-12-18T14:56:30+01:00december 18th, 2009|Configuration Manager (SCCM)|1 Kommentar

Get information of Resolved Alerts in OpsMgr 2007

Resolved Alerts in Operations Manager is easy to extract from your DW and Operations Manager environment: In Powershell: Get-Alert | Where {$_.Resolutionstate -eq 255} | ft resolvedby Or if you need a query from OperationsManagerDW in SQL as a dataset in your report: SELECT Alert.vAlert.AlertName, Alert.vAlertResolutionState.ResolutionState, Alert.vAlertDetail.Owner, Alert.vAlertDetail.TicketId,        Alert.vAlertResolutionState.StateSetByUserId, Alert.vAlert.RepeatCount, Alert.vAlert.RaisedDateTime, Alert.vAlert.AlertDescription, vManagedEntity.Path FROM   Alert.vAlert INNER JOIN Alert.vAlertResolutionState ON Alert.vAlert.AlertGuid = Alert.vAlertResolutionState.AlertGuid INNER JOIN Alert.vAlertDetail ON Alert.vAlertResolutionState.AlertGuid = Alert.vAlertDetail.AlertGuid INNER JOIN vManagedEntity ON Alert.vAlert.ManagedEntityRowId = vManagedEntity.ManagedEntityRowId Where (Alert.vAlertResolutionState = 255) Thanks to Michael Westergaard for his question about Resolved Alerts....

By |2009-12-18T10:57:54+01:00december 18th, 2009|Operations Manager (SCOM)|1 Kommentar

Coretech nominated to System Center Alliance Partner Program

Coretech has joined the list of Microsoft nominated System Center Alliance Program partners. We are proud to have received the nomination and will continue our effort to develop tailor-made System Center solutions for the fast growing System Center community and our many customers. For more information about the partner program go to http://www.microsoft.com/systemcenter/en/us/alliance-program-overview.aspx

By |2009-12-17T14:23:57+01:00december 17th, 2009|Configuration Manager (SCCM), General info|Kommentarer lukket til Coretech nominated to System Center Alliance Partner Program

Links and notes from Mastering Configuration Manager 2007 R3 training (updated February, 17 2010)

 Websites:  http://www.microsoft.com/smserver/default.mspx - SMS 2003 homepage http://www.microsoft.com/systemcenter/en/us/default.aspx - System Center homepage http://social.technet.microsoft.com/Forums/en-US/category/configurationmanager/ - Configuration Manager News groups http://www.microsoft.com/events/series/technetmms.aspx?tab=webcasts&id=42364 - Configuration Manager webcasts http://www.microsoft.com/systemcenter/configurationmanager/en/us/default.aspx - Config Mgr. homepage http://www.myitforum.com/ - Great community http://www.smsexpert.com/ - Information about MOF editing http://www.1e.com/ - Config Mgr. addons http://blogs.technet.com/configmgrteam/default.aspx – System Center Config Mgr. team blog http://v-irtualization.com/tag/app-v/ – How to virtualize 3D games using the App V. sequencer http://technet.microsoft.com/en-us/library/bb892800.aspx – List of Configuration Manager log files http://blogs.technet.com/b/configurationmgr/archive/2010/11/30/configmgr-2007-antivirus-scan-and-exclusion-recommendations.aspx - ConfigMgr 2007 Antivirus Scan and Exclusion Recommendations http://blogs.technet.com/b/yasc/archive/2010/09/18/asset-intelligence-license-wizard-v1-4.aspx - Asset Intelligence License Wizard Tools: http://www.microsoft.com/technet/scriptcenter/tools/scripto2.mspx - Scriptomatic http://sourceforge.net/projects/smsclictr - Config Mgr Client Center http://www.myitforum.com/myITWiki/SCCMTools.ashx - SCCM Right click [...]

By |2009-11-30T09:55:13+01:00november 30th, 2009|Configuration Manager (SCCM)|3 Comments

Supporting ConfigMgr. workgroup clients

In order to successfully discover and install the ConfigMgr. clients on workgroup computers you need to configure a few settings. Configure a Server Locator Point Configure the proper client installation settings Configure the network discovery method Configure the Network access account Configure the client push installation account. Site Systems When you are working with clients that are not able to query the Active Directory services for ConfigMgr information you need to create a Server Locator Point – SLP. In my example I have one SLP a the central site. The SLP is used by the client during the site assignment [...]

By |2009-11-02T09:41:20+01:00november 2nd, 2009|Configuration Manager (SCCM)|4 Comments

Audit software installations r2

With this basic report you will be able to monitor any new applications installed and registrered in Add/Remove programs during the last 7 days on a client computer.  Thanks to Claus Codam for helping out The SQL code SELECT TOP (100) PERCENT dbo.v_R_System.Name0, dbo.v_GS_ADD_REMOVE_PROGRAMS.DisplayName0, dbo.v_GS_ADD_REMOVE_PROGRAMS.InstallDate0, DATEDIFF(Day, CONVERT(date,dbo.v_GS_ADD_REMOVE_PROGRAMS.InstallDate0), GETDATE()) AS [days since installed] FROM dbo.v_R_System INNER JOIN dbo.v_GS_ADD_REMOVE_PROGRAMS ON dbo.v_R_System.ResourceID = dbo.v_GS_ADD_REMOVE_PROGRAMS.ResourceID WHERE (SELECT ISDATE(dbo.v_GS_ADD_REMOVE_PROGRAMS.InstallDate0)) = 1 GROUP BY dbo.v_R_System.Name0, dbo.v_GS_ADD_REMOVE_PROGRAMS.DisplayName0, dbo.v_GS_ADD_REMOVE_PROGRAMS.InstallDate0, DATEDIFF(Day, CONVERT(date,dbo.v_GS_ADD_REMOVE_PROGRAMS.InstallDate0), GETDATE()) HAVING ( (CASE WHEN (ISDATE(dbo.v_GS_ADD_REMOVE_PROGRAMS.InstallDate0))=1 THEN (DATEDIFF(Day, CONVERT(date,dbo.v_GS_ADD_REMOVE_PROGRAMS.InstallDate0), GETDATE())) ELSE 500 END) > 0 AND (CASE WHEN (ISDATE(dbo.v_GS_ADD_REMOVE_PROGRAMS.InstallDate0))=1 THEN (DATEDIFF(Day, CONVERT(date,dbo.v_GS_ADD_REMOVE_PROGRAMS.InstallDate0), GETDATE())) ELSE 500 END) < [...]

By |2009-11-02T09:23:32+01:00november 2nd, 2009|Configuration Manager (SCCM)|17 Comments

Installing the ConfigMgr. SP2 client on Windows 7 and Windows 2008 R2

ConfigMgr. 2007 SP2 was released a few days ago and can be downloaded from - details.aspx-displaylang=en&FamilyID=3318741a-c038-4ab1-852a-e9c13f8a8140 To successfully install the service pack you need to start the upgrade from the central site and then upgrade child sites and administrator consoles. After the sites have been upgraded it’s time to upgrade the clients. You can use various methods to upgrade the client – check the Technet article for detailed information about the methods - http://technet.microsoft.com/en-us/library/bb694166.aspx One of the most commonly used methods is using a ConfigMgr. package to perform the upgrade. It works like a charm but when deploying the client [...]

By |2009-10-24T16:39:43+01:00oktober 24th, 2009|Configuration Manager (SCCM)|Kommentarer lukket til Installing the ConfigMgr. SP2 client on Windows 7 and Windows 2008 R2

How to get registry information into hardware inventory

  When the hardware inventory agent is running it’s looking after values in the local WMI database on the client. By default WMI contains much valuable information that is “easy” to collect. But from time to time we need to gather information that’s not yet part of WMI. This post will guide you through the process of getting those information using a tool developed by Mark Cochrane. The ConfigMgr. files On the Configuration Manager Site server two files are used to control the hardware inventory data process: SMS_DEF.mof This file contains information about the WMI data classes used by hardware [...]

By |2009-10-23T09:22:07+01:00oktober 23rd, 2009|Configuration Manager (SCCM), General info|11 Comments

OpsMgr 2007 R2: Script Unit Monitor Comparison Problems!

  While making my last Management Pack , I discovered a problem in the Operations Console of OpsMgr. Problem:   When i created the Critical/Unhealthy/Healthy Expressions i had to compare to a Integer that was returned by the Script. The problem was that when i compared 50 with 100, it acted like 50 was more than 100 !! I was kind of baffled and did not know what was going on. Solution: So i exported the Management Pack to XML and took at closer look in the details: This is a snippet from the XML, it is only one of [...]

By |2009-10-22T15:11:52+01:00oktober 22nd, 2009|Operations Manager (SCOM)|1 Kommentar

OpsMgr 2007 R2 (SCOM): Coretech Coffee Monitor Management Pack – 0.0.0.1

Download: [download id="16"] The file has included test examples and vlc player. The Management Pack is 32Kb Intro: This management packs can be used to keep track of the level of coffee in left in the pot. With this management pack, you will never run dry of, what we all know, is the most important part of a productive environment! This is mostly made as a proof of concept, as this technique can be transferred to other monitor types. It could be expanded with other types of sensors, like a weight to check the level of coffee instead of a [...]

By |2009-10-21T11:59:42+01:00oktober 21st, 2009|Operations Manager (SCOM)|47 Comments

Query and report all workstations that haven’t rebooted the last 7 days

I recently got a very good question from a student – how can we check the workstations that haven’t restarted during the last 7 days. The intention is to automatically restart the computers. However not until the end-users have been contacted. For that reason I need to create a report and a query. The report The SQL statement Create a new empty report and copy this SQL code into the SQL statement box: SELECT TOP (100) PERCENT dbo.v_R_System.Name0, dbo.v_GS_OPERATING_SYSTEM.LastBootUpTime0, DATEDIFF(Day, dbo.v_GS_OPERATING_SYSTEM.LastBootUpTime0, GETDATE()) AS [Days since last boot], dbo.v_GS_OPERATING_SYSTEM.Caption0 FROM dbo.v_GS_OPERATING_SYSTEM INNER JOIN dbo.v_R_System ON dbo.v_GS_OPERATING_SYSTEM.ResourceID = dbo.v_R_System.ResourceID WHERE (DATEDIFF(Day, dbo.v_GS_OPERATING_SYSTEM.LastBootUpTime0, [...]

By |2009-10-03T10:51:02+01:00oktober 3rd, 2009|Configuration Manager (SCCM)|16 Comments

Status report for Software Update deployments

Spending some time in other communities often gives me a lot of good ideas to reports and queries. A little while ago in the System Center Technet community I stumbled over a very need report created by a user called Qu4rk. His report shows a status of each update deployment, with a count of the each possible software update states. The only thing I have changed (thanks to Claus) is a new column showing the compliant computers in %. I am not going to take any credit for the report as my work was very limited. But this report is [...]

By |2009-09-21T09:43:54+01:00september 21st, 2009|Configuration Manager (SCCM)|21 Comments

System Center User Group Meeting

The first SCUG user group meeting has just been announced over at SCUG.DK - http://scug.dk/content/Events.aspx. It’s going to be a very interesting day with some cool sessions hosted by no other than Mr. Wally Mead :-) Agenda 09:00 – 10:00  Breakfast and Registration 10:00 – 10:15  Welcome and introduction to SCUG.DK and SCUG.SE 10:15 – 11:15  To be announced 11:15 – 11:30  Break 11:30 – 12:30  What's new in Configuration Manager 2007 R3 (Wally Mead) 12:30 – 13:15  Break and Lunch 13:15 – 14:15  What's new in Configuration Manager 2007 SP2 (Wally Mead) 14:15 – 14:30  Break 14:30 – 15:30  [...]

By |2009-09-18T14:14:17+01:00september 18th, 2009|Events|Kommentarer lukket til System Center User Group Meeting

How to remove Software updates from a deployment

From time to time you will need to remove one or more software updates from a deployment. To remove the update from the deployment you can: Identify the update by reviewing the updatesdeployment.log on one the clients. If the deployment process is visible, you can also identify the failure by looking at the Updates installation status. Remove the update from the Update Management list You can see which update lists the update is part of by looking at the updates properties in the Config Mgr. console Navigate to the Deployment Management node, select the Deployment management list. Select the update [...]

By |2009-09-07T19:55:00+01:00september 7th, 2009|Configuration Manager (SCCM)|Kommentarer lukket til How to remove Software updates from a deployment

Uninstall Microsoft Office 2007 applications with Configuration Manager

You can use several approaches when uninstalling Office 2007 applications. msiexec.exe /x {productcode} /qb Configure the setup.xml file and run setup with /unstall /config   Here are some examples of uninstall commands Office 2007 Visio Profesional: "\\Server\Microsoft Visio 2007\setup.exe" /uninstall VisPro /config .\VISPRO.WW\uninstall.xml Office 2007 Project Profesional: "\\Server\Microsoft Project 2007\setup.exe" /uninstall PrjPro /config .\PRJPRO.WW\uninstall.xml

By |2009-08-27T20:01:06+01:00august 27th, 2009|Packaging & Installation|10 Comments

Links and other usefull information from this week Configuration Manager for Helpdesk training (updated 28/04-2010)

Tools http://www.microsoft.com/technet/scriptcenter/tools/scripto2.mspx - Scriptomatic http://sourceforge.net/projects/smsclictr - Config Mgr Client Center http://www.myitforum.com/myITWiki/SCCMTools.ashx - SCCM Right click tools and more http://www.microsoft.com/downloads/details.aspx?FamilyId=04D26402-3199-48A3-AFA2-2DC0B40A73B6&displaylang=en – Microsoft Virtual PC 2007 http://www.microsoft.com/downloads/details.aspx?FamilyID=e0fadab7-0620-481d-a8b6-070001727c56&displaylang=en – ConfigMgr. 2007 evaluation VHD Other sites http://scug.dk/ – Danish community for System Center products http://support.microsoft.com/default.aspx/kb/555638 - List of Active Directory attributes names to be used in system and user discovery http://technet.microsoft.com/en-us/library/bb693476.aspx and http://technet.microsoft.com/en-us/library/bb632952.aspx - Where to configure AD system/User discovery attributes http://www.adobe.com/support/downloads/detail.jsp?ftpID=3993 – Adobe customization wizard http://www.appdeploy.com/ – Information about software and deployment Troubleshooting software installations Check if the advertisement is received by the client. Open the exemgr.log and look for any installation errors. [...]

By |2009-08-25T15:32:44+01:00august 25th, 2009|Configuration Manager (SCCM)|Kommentarer lukket til Links and other usefull information from this week Configuration Manager for Helpdesk training (updated 28/04-2010)

Install XP MUI from SCCM Task Sequence.

  Create a new package called Microsoft XP MUI   Note: It is not necessary to create a program for the package unless you intend to advertise the package to clients. The Microsoft XP MUI package should contain the files from the root of one if the MUI installation CD’s, and any language packages you wish to install. In this case a included the Danish, Russian, Chinese (simplified) and Chinese (traditional) language MUI’s. Now open your TS in edit mode, and add a Run Command Line step at the end of your TS (or at least after the Mini setup [...]

By |2009-08-25T15:20:39+01:00august 25th, 2009|OS Deployment|6 Comments

Creating a basic Config mgr. report with SQL reporting services

Converting the Configuration manager ASP reports to SRS reports (SQL Reporting Services) is a really easy task. Once you want to modify or create new the reports you need to a little more work. I create reports using these applications. SQL Server Report Builder 1.0 SQL Server Report Builder 2.0 (requires SQL Server 2008) Business Intelligence Development Studio – BIDS (Visual Studio) BIDS is the favorit choice as it gives the developer the most choices (creation of datasets etc.). However SQL Server Report Builder 2.0 is the easiest tool learn and doesn’t require a whole lot of SQL knowledge. In [...]

Configuring SQL Reportings Services mail subscriptions with Configuration Manager

In this post I’ll describe how you configure mail subscriptions with Configuration Manager 2007 R2. I assume that SQL Reporting Services is installed and configured on a remote database. I also assume that the Reporting Services Site system is configured in the Configuration Manager Administrator console. Prerequisites SQL Reporting Services requirements Execution account. Windows user account with read only access to all reports. The Execution account is specified in the Reporting Services Configuration Manager SMTP configured in the Reporting Services Configuration Manager. You also need to make sure that the SMTP port is enabled for relaying and anonymous access. If [...]

Changing boot order in Vista/Windows 7

If you do not want to play around with BCDedit or 3rd party tools like EasyBCD, it is quit easy to change boot order from within Windows 7. I Know that this is kind of low tech, but I notice a lot of  questions out there regarding, how to change the boot order using BCDedit. Here goes: Go to Computer – Properties. Note: You can also do this by hitting the key combo Windows + Pause/Break or Click on Advanced System settings Open the Advanced tab In the Startup and Recovery section click on Settings Note: run sysdm.cpl to go [...]

By |2009-08-17T09:08:39+01:00august 17th, 2009|General info, OS Deployment, Windows Client|4 Comments

Configuring SQL Reporting Services user permission for Configuration Manager 2007

Using SQL Reporting Services is really a “blast”. If you want to use the reporting feature with Configuration Manager 2007 R2 (and you do!), you need to configure a few accounts, groups and configure permissions. In this post I assume that SQL Reporting Services is installed and configured. Accounts to be created Execution Account (Configured in the SQL Reporting Services manager) The EA is used by SRS to execute reports used for subscribtions. The account should be a low privilige account that has: Read access to all reports Open a browser and type SQLReportingSername/Reports Click Properties Click New Role Assignment [...]

By |2009-08-13T21:35:56+01:00august 13th, 2009|Configuration Manager (SCCM)|6 Comments