Cireson SM Outlook Console and new Veeam MP Released

  This is an exciting week for System Center! Today Cireson has released the SCSM Outlook Console. This tool lets you work with Service Manager from Outlook. Here is what you can do with it: create, view, edit, and complete incidents, changes requests, problems, activities, and service requests. Here is a link to it on … Read more

Exchange Connector 3.0 Re-released

The Exchange Connector 3.0 for Service Manager has been re-released today. It includes the Bug Fix for the issue related to extending the work item classes data model with custom properties. A link about that issue is here: http://blogs.technet.com/b/servicemanager/archive/2013/07/02/exchange-connector-3-0-rtm-bug-fix-available-now.aspx This is great as you no longer have to open a support case with Microsoft to … Read more

SCOM SMS Notifications not working

ISSUE: We had a physical Multi-Tech Systems MTCMR-H5 modem connected to the SCOM server via USB to send out SMS messages. After initial configuration SMS notifications were not being sent. SCOM was generating multiple alerts about this. The alerts: Alert: Failed to send notification using server/device Source: Alert Notification Subscription Server Path: Not Present Last … Read more

Hybrid Cloud with NVGRE Whitepaper (WSSC 2012 R2)

Hybrid Cloud with NVGRE Whitepaper (WSSC 2012 R2) There is a new whitepaper on Hybrid Cloud with NVGRE (WS SC 2012 R2). This was put together by the following team:   Authors: Kristian Nese, Cloud & Datacenter Management MVP and Flemming Riis, Cloud & Datacenter Management MVP.   Reviewers: Daniel Neumann, Cloud & Datacenter Management … Read more

Why is System Center Service Manager (SCSM) not on Gartner’s “IT Service Support Management Tools" Magic Quadrant?

Here is an interesting post by Shaun Ericson of Cireson on why System Center Service Manager has yet to be placed on Gartner’s Magic Quadrant for “IT Service Support Management Tools”. Full post here: http://www.cireson.com/business/why-is-microsoft-system-center-service-manager-scsm-not-on-the-gartner-magic-quadrant/

New System Center 2012 Orchestrator Book!

Another great System Center has been published by three solid authors Sam Erskine, MVP Andreas Baumgarten, and  Steve Beaumont. This book is written in a practical, cookbook style with numerous chapters and recipes focusing on creating runbooks to automate mission-critical and everyday administration tasks. Overview of the book: Microsoft System Center Orchestrator 2012 simplifies the … Read more

Cireson Asset Management feature update

Cireson Asset Management: New Feature Highlights After recently releasing the newest version of the Asset Management app for Microsoft System Center (Features Press Release), this post goes a little more in depth to explain some of the amazing features included in this latest release. Always striving to make life easier and more productive for those … Read more

Update Rollup 3 for System Center 2012 Service Pack 1

Today Microsoft has released Update Rollup 3 for System Center 2012 Service Pack 1. This update applies to the following:: App Controller 2012 Service Pack 1 Data Protection Manager 2012 Service Pack 1 Operations Manager 2012 Service Pack 1 Virtual Machine Manager 2012 Service Pack 1 It can be downloaded here: http://support.microsoft.com/kb/2836751/en-us

DPM Azure Cloud Backup – Setup, Config, Recovery

This topic has been blogged about a few times already. Some of the posts I have seen just contain information about the service and not the setup, are no longer current, or are missing information on generating a certificate.

I have decided to go ahead and blog about this to detail my experience in the setup. In this post I am going to walk through deploying Azure backup for DPM 2012 SP1.

Here is what will be covered: setup of Azure cloud backup, adding Azure cloud backup to a protection group, and recovering data from Azure cloud backup in DPM.

Setup of Azure cloud backup:

This is what the Azure management portal looks like and the first screen you will see when you go create a backup vault. To create the backup vault click on Recovery Services and add cloud backup.

You will notice that it gives you the steps you need to get started with Azure cloud backup.

AzurePortal

The first thing we need to do is create a certificate for our local DPM server and upload this to Azure.

Use the Makecert tool to create a local cert or use an existing local CA to generate the certificate for your DPM server.

Makecert can be found here: http://msdn.microsoft.com/en-us/windowsserver/bb980924.aspx as a part of the Windows SDK.

To install makecert.exe only select the option Tools under .Net Development in the SDK install wizard.



Here is the process to create a certificate for your local DPM server.

Open an elevated command prompt (with Admin privileges) and CD to the location where makecert.exe is stored.

On my server it was here:
C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin Once are there type the following syntax:

makecert.exe -r -pe -n CN=YOURDPMSERVERNAMEHERE -ss my -sr localmachine -eku 1.3.6.1.5.5.7.3.2 -len 2048 -e 01/01/2016 YOURDPMSERVERNAMEHERE

After you create the certificate properly it will be created and stored in the same location here:
C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin.



NOTE: The expiration date of your certificate has to be no more than 3 years from today’s date or

Azure will not like the cert and you will receive this error:


Read more