Showing posts with label Agent. Show all posts
Showing posts with label Agent. Show all posts

Friday, January 25, 2013

How to Install/update DPM 2012 protection agent SP1 RU1 manually

Hi Guys,

When you install/update your DPM 2012 protection agent from pre SP1 or SP1 to SP1 RU1 through DPM console it's fairly easy. You just have to click on Update available in Management/Agent tab and the job is done. 

Sometimes (Firewall, incompatible version, etc.) DPM agent cannot be updated from DPM console and you need to proceed manually.
When you try to do manual install/update, it's a little bit more tricky :) Because there are two DPM "agent" folders in DPM directory structure:
..\DPM\ProtectionAgents\RA\4.1.3313.0\... => Which contains agent SP1 RTM
..\DPM\agents\RA\4.1.3322.0\... => Which contains agent upgrade for SP1 RU1
To manually install/Update DPM agent to DPM 2012 SP1 RU1 you have to:
  1. Uninstall old agent from control panel
  2. Manually install agent SP1 RTM - 4.1.3313.0
  3. Manually apply upgrade SP1 RU1 - 4.1.3322.0
# Install/upgrade process could be done with a sample Dos script:

Net use U: \\DPMName\c$
Cd /d "U:\Program Files\Microsoft System Center 2012\DPM\DPM\ProtectionAgents\RA\4.1.3313.0\amd64"
DPMAgentInstaller_x64 /q /IAcceptEULA
:: Let enough time for install
ping 127.0.0.1 -n 240
Cd /d "U:\Program Files\Microsoft System Center 2012\DPM\DPM\agents\RA\4.1.3322.0\amd64\1033"
DPMAgentInstaller_KB2791508_AMD64 /q
:: Let enough time for install
ping 127.0.0.1 -n 240

:: in case of new installation, just remember to attach your new protected server to your DPM Server.
cd /d "C:\Program Files\Microsoft Data Protection Manager\DPM\bin"
setdpmserver.exe -dpmservername DPMName
Net use U: /delete



Stephane

Tuesday, January 22, 2013

DPM 2012: install a protection agent manually - how to automatically approve Microsoft Software License Terms

Hi guys,

During the past few days, I struggled with the silently manual install of DPM 2012 agent. Whatever the command I used, a popup screen appeared and I needed to validate Microsoft Sofware Licenses Terms... Very annoying :)

I tried various combinations like: /quiet, /q, /quiet /AcceptEula:yes...



An user from DPM forum pointed me to the right direction: /IAcceptEula 

So log on to the protected computers, navigate to the network share, and then run the appropriate DPMAgentInstaller.exe command: 
DpmAgentInstaller.exe [/q] [DPM server name] [/IAcceptEula]

This parameter is referenced in Technet link : Post-upgrade steps

Stephane.