DPM 2012 R2 UR2 - KB2958100 - W2K3 Agent Install issues?

I had a W2K3 machine that I was backing up with 2012 which then became unsupported when upgraded to 2012 R2. Now with 2012 R2 UR2 I wanted to get it working again. The server was still listed in Agents under Management so I tried to use update option. 
This failed telling me to uninstall Agent Service, Install VC2010 Redist and .Net 4.0.  Having done all of these already I tried to manually install the agent from \DPM\DPM\agents\RA\4.2.1226.0\i386\1033.  In the directory there are 3 files (and
a manifest):
DPMAgentInstaller_KB2958100.exe
DPMAgentInstaller_Win2K3_i386.exe
DPMProtectionAgent_KB2958100.msp
I guessed and installed the file DPMAgentInstaller_Win2K3_i386.exe and now DPM manager shows the server as having client version 4.1.3417.0 which is 2012 SP1 UR3.  Manager console says this is incompatible version and needs updating but doesn't give
me option to update.
The question is what do I install the now?  The msp file or DPMAgentInstaller_KB2958100.exe.  It seems like this is a multi-step process but I can't find documentation on it yet.

It appears that I missed step D for 2003 servers in the KB article
http://support.microsoft.com/kb/2958100/en-us.  Not sure why I had to re-attach the server if it was already attached but now it seems to magically accept old agent version.  Maybe this will help others. 

Similar Messages

  • DPMRA crashing after update to DPM 2012 R2 UR2

    Hi,
    we have a problem on our DPM2012 R2 server. 
    The DPM servers OS is Windows Server 2012.
    After applying Update Rollup 2, the DPMRA service on the DPM server started crashing when trying to create a new recovery point or trying to synchronize:
    Faulting application name: DPMRA.exe, version: 4.2.1226.0, time stamp: 0x5346902f
    Faulting module name: DPMRA.exe, version: 4.2.1226.0, time stamp: 0x5346902f
    Exception code: 0xc0000005
    Fault offset: 0x000000000023442c
    Faulting process id: 0x630
    Faulting application start time: 0x01cf606a8d5b3262
    Faulting application path: C:\Program Files\Microsoft System Center 2012\DPM\DPM\bin\DPMRA.exe
    Faulting module path: C:\Program Files\Microsoft System Center 2012\DPM\DPM\bin\DPMRA.exe
    Report Id: ed0d579b-cc5d-11e3-9436-00155d0f6501
    Faulting package full name:
    Faulting package-relative application ID:
    When DPMRA crashes, the DPM jobs fail:
    The replica of CDC-RND-SQL01\Tfs_RnD_Configuration on CDC-RND-SQL01.dev.local is inconsistent with the protected data source. All protection activities for data source will fail until the replica is synchronized with consistency check. (ID: 3106)
    DPM failed to communicate with the protection agent on WP-DPM02.alpha.local because the agent is not responding. (ID: 43)
    Creation of recovery points for WPCLUSTERSQL\WSS_Content_WP-SP-INTRA_TEMP on SQL Server (MSSQLSERVER).WPSQLCluster.alpha.local have failed. The last recovery point creation failed for the following reason: (ID: 3114)
    DPM failed to communicate with the protection agent on WP-DPM02.alpha.local because the agent is not responding. (ID: 43)
    Creation of recovery points for WPCLUSTERSQL\CDC-INTRA-SPS01_WSS_Content_80_Changes01 on SQL Server (MSSQLSERVER).WPSQLCluster.alpha.local have failed. The last recovery point creation failed for the following reason: (ID: 3114)
    The protection agent on WP-DPM02.alpha.local was temporarily unable to respond because it was in an unexpected state. (ID: 60)
    Already tried disabling UAC, firewall is disabled, checked network connectivity, reinstalled agents on the protected servers.
    Does anyone have encountered this? How did you solve it?
    Here are a few DPMRA logs:
    DPMRA_log_01.log
    DPMRA_log_02.log

    Hi,
    For those experiencing the below DPMRA crash after installing DPM 2012 Sp1 UR6 or DPM 2012 R2 UR2
    DPMRA.exe, version: 4.1.3441.0 = DPM 2012 Sp1 UR6
    DPMRA.exe, version: 4.2.1226.0 =  DPM 2012 R2 UR2
    Faulting application name: DPMRA.exe, version: 4.2.1226.0, time stamp: 0x5346902f
    Faulting module name: DPMRA.exe, version: 4.2.1226.0, time stamp: 0x5346902f
    Exception code: 0xc0000005
    Fault offset: 0x000000000023442c
    Faulting process id: 0x630
    Faulting application start time: 0x01cf606a8d5b3262
    Faulting application path: C:\Program Files\Microsoft System Center 2012\DPM\DPM\bin\DPMRA.exe
    Faulting module path: C:\Program Files\Microsoft System Center 2012\DPM\DPM\bin\DPMRA.exe
    Report Id: ed0d579b-cc5d-11e3-9436-00155d0f6501
    Faulting package full name:
    Faulting package-relative application ID:
    You can run the below Windows Powershell script on the DPM Server to clean up the *DPMRA.CRASHDETECT files.  This should eliminate the dpmra crashes until a new fix is released to address the original problem.
    1) Stop MSDPM and DPMRA Services.
    2) Copy / Paste the below script into notepad and save as deletecrashfiles.ps1
    3) Open Windows PowerShell using administrative privilege.
    4) Run the deletecrashfiles.ps1
    5) Restart the DPM services.  
    #get DPM install path
    $dpmsetup = "HKLM:\SOFTWARE\Microsoft\Microsoft Data Protection Manager\Setup"
    $dpminstallregkey = get-itemproperty $dpmsetup
    $installpath = $dpminstallregkey.installpath
    $path = $installpath + "\Volumes\Replica"
    cd $path
    function GetFolders($path)
    $folders = Get-ChildItem "."
    foreach ($folder in $folders)
    if (Test-path $folder.Name -pathtype Container)
    #write-host $folder.name
    GetCrashitems(".\"+$folder.Name)
    else
    #write-host $folder.Name
    function GetCrashItems($path)
    $crashfile = "dpmra.crashdetect"
    $folders = Get-ChildItem $path
    foreach ($folder in $folders)
    #write-host $folder
    if (Test-path $folder.fullname -pathtype Container)
    write-host 'getting items from ' +($folder.fullname)
    $items = Get-ChildItem $folder.fullname
    foreach($item in $items)
    if ($item.name -match $crashfile)
    write-host 'Deleting *dpmra.crashdetect file: '$item.fullname
    $item.delete()
    GetFolders $path
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT] This
    posting is provided "AS IS" with no warranties, and confers no rights.

  • DPM 2012 R2 UR2 and Windows 2003 SP2 Agent Version Issue

    Hi All, I have UR2 installed on my DPM 2012 R2 server and have followed Mike's guide on getting them protected:
    http://blogs.technet.com/b/dpm/archive/2014/06/11/details-on-protecting-windows-server-2003-computers-using-data-protection-manager-2012-r2.aspx
    The agents now show in the DPM console but display as needing an update and showing as agent version 4.1.3313.0 instead of 4.1.3441.0, which is odd.
    Servers have:
    .Net 3.5 Sp1 Full
    Visual C++ 2008 Redistributable - x86 9.0.30729.17
    From the DPM server:
    C:\Program Files\Microsoft System Center 2012 R2\DPM\DPM\agents\RA\4.2.1235.0\i386\1033\DPMAgentInstaller_Win2K3_i386.exe
    Executed:
    setdpmserver.exe -dpmservername DPMserverName
    From the DPM server:
    Attach-ProductionServer.ps1 script on the DPM server and refreshed twice
    What have I missed?

    Hi.
    Reboot your 2003 Server
    Run DPM Setup again on Server 2003
    Run setdpmserver.exe again
    click refresh in DPM Server
    worked for me
    Seidl Michael | http://www.techguy.at |
    twitter.com/techguyat | facebook.com/techguyat

  • DPM 2012 R2 Roll Up 2: Agent Terminating or Checksum mismatch during backups

    Hi There,
    I have dual DPM server deployment. Primary DPM server backs up to disk in my production site and then I have a Secondary DPM server creating replicas to Disk and Tape in my DR site. Both DPM servers are running DPM 2012 R2. I recently installed DPM 2012
    R2 Roll Up 2 (Was running Roll up 1 for weeks without issue), careful not to install the bugged version of the update. Everything was running normally and then suddenly about 4 days later some of my resources started failing and became inconsistent on my Secondary
    DPM server.
    Either:
    1. My DPMRA service on my Secondary DPM server terminates with the following Application Log error
    Faulting application name: DPMRA.exe, version: 4.2.1235.0, time stamp: 0x536a4419
    Faulting module name: KERNELBASE.dll, version: 6.2.9200.16864, time stamp: 0x531d34d8
    Exception code: 0x80004005
    Fault offset: 0x0000000000047b8c
    Faulting process id: 0x1f18
    Faulting application start time: 0x01cf8a0713e8c930
    Faulting application path: C:\Program Files\Microsoft System Center 2012 R2\DPM\DPM\bin\DPMRA.exe
    Faulting module path: C:\Windows\system32\KERNELBASE.dll
    Report Id: 19d99bee-f5fd-11e3-93fe-782bcb479b76
    Faulting package full name: 
    Faulting package-relative application ID: 
    OR
    2. DPM has detected a checksum mismatch during data transfer over the network (ID: 30087)
    I have already removed and deleted from disk the failing resources on the Secondary DPM server and then re-added them to the protection groups, but again either the agent terminates or fails with checksum during replica creation or consistency check. Note
    that the Primary DPM server is happy and all the resources are green and backing up successfully numerous times a day. 
    I suspect that the update 4 days before the issues started might have created this issue. Has anyone had these issues or know of potential ways to fix it?
    Your help would be greatly appreciated as I really don't want to rebuild the Secondary DPM server.
    Thanks
    Jacques

    Hi,
    Here is an update. I have managed to get a workaround.
    If I enforce IPSec with ESP between my primary and secondary DPM server then the agent stops terminating or reporting checksum errors. 
    Still waiting on someone from the DPM team to give a suggestion here as it seems to be a bug that started after I installed Roll Up 2 for DPM 2012 R2
    Thanks
    Jacques

  • DPM 2012 R2 UR2 adds 2003 support but what about 2008?

    http://support.microsoft.com/kb/2958100
    I see that update rollup 2 is out and it adds support for protecting server 2003 agents but I don't see any mention of server 2008 (not R2). I have a server 2008 SP2 (not R2) machine running Exchange 2007 SP3. Will I be able to backup this
    machine's system state and Exchange data with DPM 2012 R2 if I install update rollup 2?
    Thanks,
    Teenage angst has paid of well, now I'm bored and old.

    Even without that update I believe you should be able to backup a 2008 non-R2 box already using DPM 2012 R2.
    While it's not listed on the compatibility matrix for some reason, we've got a Windows Server 2008 non-R2 (64-bit) Exchange server (exchange 2007) that is currently being backed up via a DPM 2012 R2 install, so that works.
    Thanks for the tip off about the update! Very handy since we've still got one of our DPM installs not running R2 due to a couple of old 2003 boxes, but this means (once they re-release the update which has been taken down currently) we can finally get that
    DPM server updated to R2!

  • SCOM 2012 SP1 Agent install issue

    Dear all,
    Wheni try to push SCOM client , getting below error. Any idea what would be issue ?
    The Operations Manager Server could not execute WMI Query "Select * from Win32_OperatingSystem" on computer XXX.XXX.XXX
    Operation: Agent Install
    Install account: XXXXXX
    Error Code: 800706BA
    Error Description: The RPC server is unavailable.

    Looks Firewall issue only , i have opened below ports , is there any mandatory ports required for SCOM agent installation ?
    443
    TCP
    445
    TCP
    135
    TCP

  • RHEL4U4 EM64T Grid Control agent install issue

    I've installed a 2 node Oracle 10G R2 RAC on RHEL4 U4 EM64T and it is working fine on Dell PE2850 servers. But I couldn't get the grid control agent installed on these RHEL4U4 EM64T PE2850 servers. The OMS server is running 32 bit Oracle 10g R2 on RHEL4. The issue is with the OMA (agent) install on EM64T and I've tried several different options (local install and push from the OMS server). I end up with the following error. Any feedback is appreciated. Thanks.
    Raj
    <<installActions2006-12-07_11-22-39AM.log>>
    This is error we got from both the install on the local node and tried a push from the OMS server as well.
    INFO: Start output from spawned process:
    INFO: ----------------------------------
    INFO:
    INFO: /opt/oracle/product/10.2.0/agent10g/bin/genclntsh
    INFO: /usr/bin/ld: skipping incompatible /opt/oracle/product/10.2.0/agent10g/lib/libxml10.a when searching for -lxml10
    /usr/bin/ld: cannot find -lxml10
    INFO: collect2: ld returned 1 exit status
    INFO: genclntsh: Failed to link libclntsh.so.10.1
    INFO: make: *** [client_sharedlib] Error 1
    INFO: End output from spawned process.
    INFO: ----------------------------------
    INFO: Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target 'client_sharedlib' of makefile '/opt/oracle/product/10.2.0/agent10g/network/lib/ins_net_client.mk'. See '/opt/oracle/oraInventory/logs/installActions2006-12-07_11-22-39AM.log' for details.
    Exception Severity: 1

    Hi,
    Did you run cvu to check if all OS Patches are installed ??
    Best Regards,
    Paulo.

  • DPM 2012 R2 Looses connectivity with Agents

    We're receiving this errors:
    Event1:
    The DPM protection agent on server.contoso.com could not be contacted. Subsequent protection activities for this computer may fail if the connection is not established. The attempted contact failed for the following reason: (ID: 3122)
    The protection agent operation failed because DPM could not communicate with the Protection Agent service on server.contoso.com. (ID: 308).
    Event2:
    The description for Event ID 902 from source MSDPM cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event:
    The job encountered an internal fatal error.  Contact Microsoft Customer Support
    Problem Details:
    <RecoveredFromFatalError><__System><ID>1059</ID><Seq>365</Seq><TimeCreated>27-02-2014 12:21:52</TimeCreated><Source>TaskExecutor.cs</Source><Line>384</Line><HasError>True</HasError></__System><ExceptionType>System.NullReferenceException</ExceptionType><ExceptionDetails>  
    at Microsoft.Internal.EnterpriseStorage.Dls.Prm.FindActiveNodeBlock.DetermineIfAnotherPossibleOwnerNodeExists(Message msg)
       at Microsoft.Internal.EnterpriseStorage.Dls.TaskExecutor.Fsm.ConnectionPoint.Execute(Message msg)
       at Microsoft.Internal.EnterpriseStorage.Dls.TaskExecutor.TaskInstance.ExecuteOnEngineRestart(Message msg, Boolean&amp; isTaskForceFailed)</ExceptionDetails><ExceptionMessage>Object reference not set to an instance of an object.</ExceptionMessage><CustomDetails>&lt;?xml
    version="1.0" encoding="utf-16"?&gt;
    &lt;TaskExecutionContext&gt;
      &lt;PrmWriterId&gt;a65faa63-5ea8-4ebc-9dbd-a0c4db26912a&lt;/PrmWriterId&gt;
      &lt;PrmDatasourceId&gt;8ceaf865-9c67-4236-8b8b-fc3b05ffd7d2&lt;/PrmDatasourceId&gt;
      &lt;PrmActiveNodeName&gt;server.contoso.com&lt;/PrmActiveNodeName&gt;
      &lt;PrmLogicalReplicaId&gt;6c248345-f5dc-4124-83ad-4894ff8e213a&lt;/PrmLogicalReplicaId&gt;
      &lt;PrmDatasetId&gt;e1e12509-d030-4a9b-91e8-8d5b9413df78&lt;/PrmDatasetId&gt;
      &lt;PrmPhysicalReplicaId&gt;a440f69a-d335-4e49-b9f7-6480487df1d8&lt;/PrmPhysicalReplicaId&gt;
      &lt;PrmReplicaValidity&gt;Valid&lt;/PrmReplicaValidity&gt;
      &lt;PrmReplicaStatus&gt;Idle&lt;/PrmReplicaStatus&gt;
      &lt;PrmOwnerLockId&gt;00000000-0000-0000-0000-000000000000&lt;/PrmOwnerLockId&gt;
      &lt;TEVerb&gt;DeltaReplicate&lt;/TEVerb&gt;
      &lt;TETaskXml&gt;&amp;lt;?xml version="1.0" encoding="utf-16"?&amp;gt;
    &amp;lt;BackupTask xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" BackupType="Incremental"
    Generation="Son" WaitForAllowedConflictingOperationToFinish="true" CheckDataIntegrity="false" TaskId="3e83e15c-0a84-482d-be89-e1902ca65651" AAClsId="da6aa17a-d61c-4e9c-8cea-db25dea52a95" SourceWorkItemId="f0224732-b7d1-4f80-9a52-a1b5dab80044"
    DestinationWorkItemId="c8c31524-3876-41f5-8670-30daf08d1fe5" xmlns="http://schemas.microsoft.com/2003/dls/arm/TaskDefinitions.xsd"&amp;gt;
      &amp;lt;CommonConnectionAttributes Compression="false" Encryption="false" Checksum="false" /&amp;gt;
      &amp;lt;ProtectionConfig DataSourceId="8ceaf865-9c67-4236-8b8b-fc3b05ffd7d2"&amp;gt;
        &amp;lt;HostEndpoint NameOrIP="server" PrincipalName="server.contoso.com" Port="5718" /&amp;gt;
        &amp;lt;ProtectedObject Name="Protection" WriterId="a65faa63-5ea8-4ebc-9dbd-a0c4db26912a" LogicalPath="server" ComponentName="model" ComponentType="FileGroup" Caption="model"
    TimeStamp="0" /&amp;gt;
      &amp;lt;/ProtectionConfig&amp;gt;
      &amp;lt;ReplicaTaskConfig&amp;gt;
        &amp;lt;HostEndpoint NameOrIP="DPMServer" PrincipalName="DPMServer.contoso.com" Port="5718" /&amp;gt;
      &amp;lt;/ReplicaTaskConfig&amp;gt;
      &amp;lt;DatasetConfig DatasetId="e1e12509-d030-4a9b-91e8-8d5b9413df78" DependentDatasetId="e2378516-d72b-45dc-8eb0-d2d6efb32431" PreviousBackupStamp="CAAAALFBT+/0Jc8B" /&amp;gt;
    &amp;lt;/BackupTask&amp;gt;&lt;/TETaskXml&gt;
      &lt;TEErrorDetails&gt;&amp;lt;?xml version="1.0" encoding="utf-16"?&amp;gt;
    &amp;lt;q1:ErrorInfo ErrorCode="0" DetailedCode="0" DetailedSource="0" ExceptionDetails="" xmlns:q1="http://schemas.microsoft.com/2003/dls/GenericAgentStatus.xsd"
    /&amp;gt;&lt;/TEErrorDetails&gt;
      &lt;TELastStateName&gt;BackupRAForRead.ACInquiryPending&lt;/TELastStateName&gt;
    &lt;/TaskExecutionContext&gt;</CustomDetails><OccurredDateTime>27-02-2014 12:21:52</OccurredDateTime></RecoveredFromFatalError>
    the message resource is present but the message is not found in the string/message table
    Our DPM Server has a 4Gb configured with NicTeaming (SLB - Switch Load Balance), there is no fw between the DPM Server and Protection Servers.
    We receive some DCOM errors too:
    Level Date and Time Source Event ID Task Category
    Error 25-02-2014 10:17:18 Microsoft-Windows-DistributedCOM 10009 None DCOM was unable to communicate with the computer server.contoso.com using any of the configured protocols.
    We already uninstalled some agents, cleaning folders/files registry and after installed the agents again and performed setdpmserver -dpmservername <dpmserver>
    we can ping, we can traceroute, sc query, net view \\server , nothing is blocked...
    in DPM console -> Management -> Agents, when we try to refresh the connection the agent status is always "Attempting connection..." if we close and open DPM console the Agent Status is Unknown.
    The version of the Agents is 4.2.1270.0
    Is anyone with same problem.
    Thanks in advance

    g.)
    DPMServer
    C:\Windows\system32>tasklist /svc
    Image Name                     PID Services
    ========================= ======== ===========================================
    System Idle Process              0 N/A
    System                           4 N/A
    smss.exe                       412 N/A
    csrss.exe                      672 N/A
    wininit.exe                    720 N/A
    csrss.exe                      728 N/A
    winlogon.exe                   788 N/A
    services.exe                   844 N/A
    lsass.exe                      852 Netlogon, SamSs
    lsm.exe                        860 N/A
    svchost.exe                    972 DcomLaunch, PlugPlay, Power
    svchost.exe                    184 RpcEptMapper, RpcSs
    LogonUI.exe                    484 N/A
    svchost.exe                    500 Dhcp, eventlog, lmhosts
    svchost.exe                    560 AeLookupSvc, Appinfo, BITS, CertPropSvc,
                                       gpsvc, IKEEXT, iphlpsvc, LanmanServer,
                                       ProfSvc, Schedule, SENS, SessionEnv,
                                       ShellHWDetection, Winmgmt, wuauserv
    svchost.exe                    640 EventSystem, FontCache, netprofm, nsi,
                                       W32Time
    svchost.exe                    748 Netman, TrkWks, UmRdpService, UxSms
    svchost.exe                    908 CryptSvc, Dnscache, LanmanWorkstation,
                                       NlaSvc, WinRM
    svchost.exe                   1060 BFE, DPS
    spoolsv.exe                   1172 Spooler
    svchost.exe                   1236 AppHostSvc
    cissesrv.exe                  1264 Cissesrv
    vcagent.exe                   1288 cpqvcagent
    DPMAMService.exe              1384 DPMAMService
    DpmWriter.exe                 1520 DpmWriter
    HealthService.exe             1564 HealthService
    hpwmistor.exe                 1620 HPWMISTOR
    inetinfo.exe                  1660 IISADMIN
    sqlservr.exe                  1748 MSSQL$MSDPM2012
    SMSvcHost.exe                 1868 NetPipeActivator, NetTcpActivator,
                                       NetTcpPortSharing
    HAInitService.exe             1928 paxphostagent
    RealtimeService.exe           1956 paxprealtime
    HAJavaWrapper.exe             2004 N/A
    svchost.exe                   2024 RemoteRegistry
    RealtimeWrapper.exe           2044 N/A
    conhost.exe                    628 N/A
    conhost.exe                   1148 N/A
    snmp.exe                      2612 SNMP
    SQLAGENT.EXE                  2644 SQLAgent$MSDPM2012
    conhost.exe                   2660 N/A
    sqlbrowser.exe                2688 SQLBrowser
    sqlwriter.exe                 2728 SQLWriter
    sysdown.exe                   2772 sysdown
    smhstart.exe                  2808 SysMgmtHp
    svchost.exe                   2876 W3SVC, WAS
    cpqnimgt.exe                  2904 CpqNicMgmt
    cqmgserv.exe                  2948 CqMgServ
    cqmgstor.exe                  3016 CqMgStor
    cmd.exe                       2828 N/A
    conhost.exe                   2832 N/A
    hpsmhd.exe                    3080 N/A
    MonitoringHost.exe            3104 N/A
    cqmghost.exe                  3272 CqMgHost
    WmiPrvSE.exe                  3356 N/A
    WmiPrvSE.exe                  3364 N/A
    WmiPrvSE.exe                  3528 N/A
    rotatelogs.exe                3568 N/A
    rotatelogs.exe                3576 N/A
    msdpm.exe                     3692 MSDPM
    svchost.exe                   3772 TermService
    svchost.exe                   3804 PolicyAgent
    hpsmhd.exe                    4048 N/A
    rotatelogs.exe                2408 N/A
    conhost.exe                   3504 N/A
    rotatelogs.exe                3688 N/A
    conhost.exe                   3828 N/A
    WmiPrvSE.exe                  5044 N/A
    WmiPrvSE.exe                  5468 N/A
    vds.exe                       5552 vds
    MonitoringHost.exe            5740 N/A
    MonitoringHost.exe            6004 N/A
    msdtc.exe                     5848 MSDTC
    VSSVC.exe                     5688 VSS
    svchost.exe                   6784 swprv
    csrss.exe                     7924 N/A
    winlogon.exe                  1844 N/A
    taskhost.exe                  2928 N/A
    rdpclip.exe                   3628 N/A
    dwm.exe                       7352 N/A
    explorer.exe                  7932 N/A
    cmd.exe                       6312 N/A
    conhost.exe                   2392 N/A
    wbemtest.exe                  6812 N/A
    powershell.exe                7260 N/A
    conhost.exe                   2420 N/A
    notepad.exe                   9068 N/A
    mmc.exe                       5916 N/A
    notepad.exe                   7060 N/A
    tasklist.exe                  3864 N/A
    Server:
    C:\Windows\system32>tasklist /svc
    Image Name                     PID Services
    ========================= ======== ===========================================
    System Idle Process              0 N/A
    System                           4 N/A
    smss.exe                       368 N/A
    csrss.exe                      456 N/A
    wininit.exe                    500 N/A
    csrss.exe                      508 N/A
    winlogon.exe                   548 N/A
    services.exe                   596 N/A
    lsass.exe                      604 Netlogon, SamSs
    lsm.exe                        612 N/A
    svchost.exe                    708 DcomLaunch, PlugPlay, Power
    svchost.exe                    784 RpcEptMapper, RpcSs
    svchost.exe                    868 Dhcp, eventlog, lmhosts
    svchost.exe                    908 AeLookupSvc, Appinfo, AppMgmt, BITS,
                                       CertPropSvc, gpsvc, IKEEXT, iphlpsvc,
                                       LanmanServer, ProfSvc, Schedule, seclogon,
                                       SENS, SessionEnv, ShellHWDetection,
                                       Winmgmt, wuauserv
    svchost.exe                    960 EventSystem, fdPHost, FontCache, netprofm,
                                       nsi, W32Time
    LogonUI.exe                   1008 N/A
    svchost.exe                    232 Netman, TrkWks, UmRdpService, UxSms
    svchost.exe                    192 CryptSvc, Dnscache, LanmanWorkstation,
                                       NlaSvc, WinRM
    svchost.exe                    676 BFE, DPS, MpsSvc
    spoolsv.exe                   1108 Spooler
    cissesrv.exe                  1188 Cissesrv
    cpqrcmc.exe                   1208 CpqRcmc
    vcagent.exe                   1236 cpqvcagent
    hpwmistor.exe                 1388 HPWMISTOR
    MsDtsSrvr.exe                 1424 MsDtsServer100
    svchost.exe                   1748 RemoteRegistry
    snmp.exe                      1768 SNMP
    sqlbrowser.exe                1800 SQLBrowser
    sqlwriter.exe                 1884 SQLWriter
    sysdown.exe                   1916 sysdown
    smhstart.exe                  1948 SysMgmtHp
    cpqnimgt.exe                  2028 CpqNicMgmt
    cqmgserv.exe                   932 CqMgServ
    cqmgstor.exe                  1384 CqMgStor
    CcmExec.exe                   1480 CcmExec
    cmd.exe                       1964 N/A
    conhost.exe                   2060 N/A
    hpsmhd.exe                    2072 N/A
    clussvc.exe                   2092 ClusSvc
    smssqlbkup.exe                2252 SMS_SITE_SQL_BACKUP_CCM02
    smssqlbkup.exe                2420 SMS_SITE_SQL_BACKUP_CCM07
    rotatelogs.exe                2684 N/A
    rotatelogs.exe                2692 N/A
    hpsmhd.exe                    2712 N/A
    rotatelogs.exe                2784 N/A
    conhost.exe                   2792 N/A
    rotatelogs.exe                2808 N/A
    conhost.exe                   2816 N/A
    rhs.exe                       3776 N/A
    rhs.exe                       3824 N/A
    rhs.exe                       4100 N/A
    rhs.exe                       4152 N/A
    rhs.exe                       4188 N/A
    rhs.exe                       4232 N/A
    rhs.exe                       4264 N/A
    rhs.exe                       4296 N/A
    rhs.exe                       4328 N/A
    rhs.exe                       4360 N/A
    rhs.exe                       4392 N/A
    rhs.exe                       4424 N/A
    cqmghost.exe                  4744 CqMgHost
    svchost.exe                   5048 TermService
    svchost.exe                   5108 PolicyAgent
    WmiPrvSE.exe                  6684 N/A
    WmiPrvSE.exe                  6856 N/A
    WmiPrvSE.exe                  6484 N/A
    WmiPrvSE.exe                  6984 N/A
    WmiPrvSE.exe                  4824 N/A
    WmiPrvSE.exe                  5408 N/A
    WmiPrvSE.exe                  5884 N/A
    WmiPrvSE.exe                  2668 N/A
    fdlauncher.exe                7308 MSSQLFDLauncher
    fdlauncher.exe                4872 MSSQLFDLauncher$VS09
    fdlauncher.exe                8528 MSSQLFDLauncher$VS10
    fdlauncher.exe                7092 MSSQLFDLauncher$VS11
    fdlauncher.exe                9744 MSSQLFDLauncher$VS12
    smssqlbkup.exe               10992 SMS_SITE_SQL_BACKUP_CCM01
    msdtc.exe                      780 MSDTC
    HealthService.exe             9012 HealthService
    MonitoringHost.exe            7976 N/A
    MonitoringHost.exe            5876 N/A
    MonitoringHost.exe            1900 N/A
    dllhost.exe                  10668 COMSysApp
    sqlservr.exe                  9276 MSSQL$VS12
    fdhost.exe                    7144 N/A
    conhost.exe                   2580 N/A
    WmiPrvSE.exe                  3980 N/A
    WmiPrvSE.exe                 10456 N/A
    csrss.exe                     2144 N/A
    winlogon.exe                 11208 N/A
    taskhost.exe                  8912 N/A
    rdpclip.exe                   5156 N/A
    dwm.exe                      11080 N/A
    explorer.exe                  9612 N/A
    mmc.exe                        864 N/A
    cmd.exe                      12900 N/A
    conhost.exe                  12836 N/A
    TrustedInstaller.exe          4828 TrustedInstaller
    sppsvc.exe                   11156 sppsvc
    wuauclt.exe                   5140 N/A
    wbemtest.exe                 11640 N/A
    notepad.exe                  11740 N/A
    notepad.exe                  11692 N/A
    notepad.exe                  10984 N/A
    tasklist.exe                  9300 N/A
    h.)
    DPMServer:
    DPMAMService.exe 1384 TCP dpmserver 6075 dpmserver 0 LISTENING          
    DPMAMService.exe 1384 TCPV6 dpmserver 6075 dpmserver 0 LISTENING          
    msdpm.exe 3692 UDP dpmserver 56662 * *           
    svchost.exe 184 TCP dpmserver 49733 server.contoso.com epmap ESTABLISHED          
    svchost.exe 3804 TCP dpmserver 52808 dpmserver 0 LISTENING          
    svchost.exe 184 TCP dpmserver 58356 server.contoso.com epmap ESTABLISHED          
    svchost.exe 640 UDP dpmserver ntp * *           
    svchost.exe 560 UDP dpmserver isakmp * *           
    svchost.exe 560 UDP dpmserver ipsec-msft * *           
    svchost.exe 908 UDP dpmserver llmnr * *    8 192      
    svchost.exe 560 UDP dpmserver 49938 * *           
    svchost.exe 908 UDP dpmserver 53590 * *           
    svchost.exe 184 TCPV6 dpmserver epmap dpmserver 0 LISTENING          
    svchost.exe 3772 TCPV6 dpmserver ms-wbt-server dpmserver 0 LISTENING          
    svchost.exe 500 TCPV6 dpmserver 49153 dpmserver 0 LISTENING          
    svchost.exe 560 TCPV6 dpmserver 49154 dpmserver 0 LISTENING          
    svchost.exe 3804 TCPV6 dpmserver 52808 dpmserver 0 LISTENING          
    svchost.exe 640 UDPV6 dpmserver 123 * *           
    svchost.exe 560 UDPV6 dpmserver 500 * *           
    svchost.exe 560 UDPV6 dpmserver 4500 * *           
    svchost.exe 908 UDPV6 dpmserver 5355 * *           
    svchost.exe 184 TCP dpmserver epmap server.contoso.com 51072 ESTABLISHED 3 395 5 2.735      
    System 4 TCP dpmserver netbios-ssn dpmserver 0 LISTENING          
    System 4 TCP dpmserver http dpmserver 0 LISTENING          
    System 4 TCP dpmserver microsoft-ds dpmserver 0 LISTENING          
    System 4 TCP dpmserver 47001 dpmserver 0 LISTENING          
    System 4 UDP dpmserver netbios-ns * *    6 300      
    System 4 UDP dpmserver netbios-dgm * *    3 603      
    System 4 TCPV6 dpmserver http dpmserver 0 LISTENING          
    System 4 TCPV6 dpmserver microsoft-ds dpmserver 0 LISTENING          
    System 4 TCPV6 dpmserver 47001 dpmserver 0 LISTENING          
    wininit.exe 720 TCP dpmserver 49152 dpmserver 0 LISTENING          
    wininit.exe 720 TCPV6 dpmserver 49152 dpmserver 0 LISTENING          
    WmiPrvSE.exe 3356 UDP dpmserver 52388 * *           
    ServeR:
    WmiPrvSE.exe 6684 UDP server.contoso.com 57622 * *           
    wininit.exe 500 TCP server.contoso.com 49152 server.contoso.com 0 LISTENING          
    wininit.exe 500 TCPV6 server.contoso.com 49152 server.contoso.com 0 LISTENING          
    System 4 TCP server.contoso.com netbios-ssn server.contoso.com 0 LISTENING          
    System 4 TCP sdc1ri00qcl09 netbios-ssn server.contoso.com 0 LISTENING          
    System 4 TCP sdc1ri00qvs12 netbios-ssn server.contoso.com 0 LISTENING          
    System 4 TCP server.contoso.com netbios-ssn server.contoso.com 0 LISTENING          
    System 4 TCP server.contoso.com netbios-ssn server.contoso.com 0 LISTENING          
    System 4 TCP sdc1ri00qvs12 microsoft-ds server.contoso.com 51104 ESTABLISHED          
    System 4 TCP server.contoso.com microsoft-ds server.contoso.com 0 LISTENING          
    System 4 TCP server.contoso.com 5985 server.contoso.com 0 LISTENING          
    System 4 TCP server.contoso.com 47001 server.contoso.com 0 LISTENING          
    System 4 UDP server.contoso.com netbios-ns * *  12 1.134 12 1.134      
    System 4 UDP server.contoso.com netbios-ns * *           
    System 4 UDP server.contoso.com netbios-ns * *           
    System 4 UDP server.contoso.com netbios-dgm * *    12 2.412      
    System 4 UDP server.contoso.com netbios-dgm * *           
    System 4 UDP server.contoso.com netbios-dgm * *           
    System 4 UDP server.contoso.com ms-cluster-net * *  20.947 3.447.169 20.935 3.448.145 10.374 9.526 63 59  
    System 4 UDP server.contoso.com ms-cluster-net * *           
    System 4 TCPV6 server.contoso.com microsoft-ds server.contoso.com 0 LISTENING          
    System 4 TCPV6 server.contoso.com 5985 server.contoso.com 0 LISTENING          
    System 4 TCPV6 server.contoso.com 47001 server.contoso.com 0 LISTENING          
    svchost.exe 784 TCP server.contoso.com epmap server.contoso.com 0 LISTENING          
    svchost.exe 784 TCP server.contoso.com epmap dpmserver 49733 ESTABLISHED          
    svchost.exe 5048 TCP server.contoso.com ms-wbt-server server.contoso.com 0 LISTENING          
    svchost.exe 868 TCP server.contoso.com 49153 server.contoso.com 0 LISTENING          
    svchost.exe 908 TCP server.contoso.com 49154 server.contoso.com 0 LISTENING          
    svchost.exe 5108 TCP server.contoso.com 49372 server.contoso.com 0 LISTENING          
    svchost.exe 960 UDP server.contoso.com ntp * *           
    svchost.exe 908 UDP server.contoso.com isakmp * *           
    svchost.exe 908 UDP server.contoso.com ipsec-msft * *           
    svchost.exe 192 UDP server.contoso.com llmnr * *           
    svchost.exe 908 UDP server.contoso.com 59281 * *           
    svchost.exe 192 UDP server.contoso.com 61778 * *           
    svchost.exe 784 TCPV6 server.contoso.com epmap server.contoso.com 0 LISTENING          
    svchost.exe 5048 TCPV6 server.contoso.com ms-wbt-server server.contoso.com 0 LISTENING          
    svchost.exe 868 TCPV6 server.contoso.com 49153 server.contoso.com 0 LISTENING          
    svchost.exe 908 TCPV6 server.contoso.com 49154 server.contoso.com 0 LISTENING          
    svchost.exe 5108 TCPV6 server.contoso.com 49372 server.contoso.com 0 LISTENING          
    svchost.exe 960 UDPV6 server.contoso.com 123 * *           
    svchost.exe 908 UDPV6 server.contoso.com 500 * *           
    svchost.exe 908 UDPV6 server.contoso.com 4500 * *           
    sqlbrowser.exe 1800 UDP server.contoso.com ms-sql-m * *           
    sqlbrowser.exe 1800 UDPV6 server.contoso.com 1434 * *           
    snmp.exe 1768 UDP server.contoso.com snmp * *  4 176 4 176      
    snmp.exe 1768 UDP server.contoso.com 58396 * *           
    snmp.exe 1768 UDPV6 server.contoso.com 161 * *           
    services.exe 596 TCP server.contoso.com 49371 server.contoso.com 0 LISTENING          
    services.exe 596 TCPV6 server.contoso.com 49371 server.contoso.com 0 LISTENING          
    rhs.exe 3824 UDP server.contoso.com 64187 * *           
    msdtc.exe 780 TCP server.contoso.com 62092 server.contoso.com 0 LISTENING          
    msdtc.exe 780 TCPV6 server.contoso.com 62092 server.contoso.com 0 LISTENING          
    lsass.exe 604 TCP server.contoso.com 49185 server.contoso.com 0 LISTENING          
    lsass.exe 604 UDP server.contoso.com 61776 * *           
    lsass.exe 604 TCPV6 server.contoso.com 49185 server.contoso.com 0 LISTENING          
    hpsmhd.exe 2072 TCP server.contoso.com 2301 server.contoso.com 0 LISTENING          
    hpsmhd.exe 2072 TCP server.contoso.com 2381 server.contoso.com 0 LISTENING          
    hpsmhd.exe 2072 TCPV6 server.contoso.com 2301 server.contoso.com 0 LISTENING          
    hpsmhd.exe 2072 TCPV6 server.contoso.com 2381 server.contoso.com 0 LISTENING          
    HealthService.exe 9012 UDP server.contoso.com 56317 * *           
    dllhost.exe 10668 TCP server.contoso.com 61453 server.contoso.com 0 LISTENING          
    dllhost.exe 10668 TCPV6 server.contoso.com 61453 server.contoso.com 0 LISTENING          
    clussvc.exe 2092 TCP server.contoso.com ms-cluster-net server.contoso.com 0 LISTENING          
    clussvc.exe 2092 TCP server.contoso.com 49234 server.contoso.com 0 LISTENING          
    clussvc.exe 2092 TCPV6 server.contoso.com ms-cluster-net server.contoso.com 0 LISTENING          
    clussvc.exe 2092 TCPV6 server.contoso.com 49234 server.contoso.com 0 LISTENING          
    CcmExec.exe 1480 UDP server.contoso.com 55500 * *           
    i.)
    Windows Firewall service is disabled and off for all profiles in DPMServer and Server
    j.)
    k.)
    Server:
    C:\Windows\system32>netsh int tcp show global
    Querying active state...
    TCP Global Parameters
    Receive-Side Scaling State          : disabled
    Chimney Offload State               : disabled
    NetDMA State                        : enabled
    Direct Cache Acess (DCA)            : disabled
    Receive Window Auto-Tuning Level    : normal
    Add-On Congestion Control Provider  : ctcp
    ECN Capability                      : disabled
    RFC 1323 Timestamps                 : disabled
    DPMServer
    C:\Windows\system32>netsh int tcp show global
    Querying active state...
    TCP Global Parameters
    Receive-Side Scaling State          : disabled
    Chimney Offload State               : disabled
    NetDMA State                        : enabled
    Direct Cache Acess (DCA)            : disabled
    Receive Window Auto-Tuning Level    : normal
    Add-On Congestion Control Provider  : ctcp
    ECN Capability                      : disabled
    RFC 1323 Timestamps                 : disabled
    ** The above autotuninglevel setting is the result of Group Policy overriding any local configuration.
    C:\Windows\system32>setspn -l dpmserver
    Registered ServicePrincipalNames for CN=dpmserver,OU=DPM,OU=Service Management,DC=contoso,DC=com:
            MSSQLSvc/dpmserver:MSDPM2012
            MSSQLSvc/dpmserver:51644
            WSMAN/dpmserver
            WSMAN/dpmserver
            TERMSRV/dpmserver
            TERMSRV/dpmserver
            RestrictedKrbHost/dpmserver
            HOST/dpmserver
            RestrictedKrbHost/dpmserver
            HOST/dpmserver
    C:\Windows\system32>setspn -l server
    Registered ServicePrincipalNames for CN=server,OU=QNO,OU=Service Management DC1,DC=contoso,DC=com:
            MSServerClusterMgmtAPI/Server
            MSServerClusterMgmtAPI/Server
            WSMAN/Server
            WSMAN/Server
            TERMSRV/Server
            TERMSRV/Server
            RestrictedKrbHost/Server
            HOST/Server
            RestrictedKrbHost/Server
            HOST/Server

  • DPM 2012 R2 console crash after RU5 install

    Hello all,
    recently I update my DPM to RU5 and since then then I click on management tab the console crash.
    I tried Islam's solution but it is not working for me.
    In the event I get this:
    The description for Event ID 999 from source MSDPM cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event:
    An unexpected error caused a failure for process 'mmc'.  Restart the DPM process 'mmc'.
    Problem Details:
    <FatalServiceError><__System><ID>19</ID><Seq>0</Seq><TimeCreated>20-2-2015 10:46:10</TimeCreated><Source>DpmThreadPool.cs</Source><Line>163</Line><HasError>True</HasError></__System><ExceptionType>NullReferenceException</ExceptionType><ExceptionMessage>Object
    reference not set to an instance of an object.</ExceptionMessage><ExceptionDetails>System.NullReferenceException: Object reference not set to an instance of an object.
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ObjectModel.AgentManagement.ProductionServerController.UpdateProtectionStatus()
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ObjectModel.AgentManagement.ProductionServerController.OnUpdateProtectionStatus(Object unUsed)
       at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.QueueUserWorkItemCallback.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem()
       at System.Threading.ThreadPoolWorkQueue.Dispatch()</ExceptionDetails></FatalServiceError>
    Please help as I read the internet and couldn't find any solution.
    Regards
    Ivaylo
    PS. When it crashed I get this error too
    Description:
      AppName: mmc AppVer: 4.2.1205.0 ModName: mmc.exe
    ModVer: 6.3.9600.16384 StackHash: AC213896
    Problem signature:
      Problem Event Name: DPMException
      Application Name: mmc
      Application Version: 4.2.1205.0
      Module Name: mmc.exe
      Module Version: 6.3.9600.16384
      Exception Name: System.NullReferenceException
      Exception Point: Microsoft.Internal.EnterpriseStorage.Dls.UI.ObjectModel.AgentManagement.ProductionServerController.UpdateProtectionStatus
      Other: AC213896
      OS Version: 6.3.9600.2.0.0.272.7
      Locale ID: 1043
    Read our privacy statement online:
    http://go.microsoft.com/fwlink/?linkid=280262

    Hi,
    Please open a support case so we can help troubleshoot the crash - If you want to pursue this immediately, you can visit the following web site to open a support incident. The charge to your CC will not be processed until your case is resolved and closed,
    if it's a code defect in the DPM then we wave all charges.
    http://support.microsoft.com/select/Default.aspx?target=assistance
    In the Quick product finder, enter:
    System Center 2012 R2 then select System Center 2012 R2 Data Protection Manager
    In the next screen, chose the option that applies.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • Cloud App Discover agent install issues

    I'm looking to deploy the Cloud App Discovery agent to start identifying opportunities to integrate other cloud services into our AAD.
    However, I am having some issues getting the agent packaged up and installing correctly. Am getting an error which I suspect is related to install finding the cert, even though it is in the same directory as the install package.
    Welcome any insight on this
    1064:1930][2015-01-27T15:15:09]i301: Applying execute package: SerresEndpointClientSetup_64, action: Install,
    path: C:\ProgramData\Package Cache\{7F0C0B74-C2D8-4D1E-8311-46E5F418C4F4}
    v0.9.14.1\SerresEndpointClientSetup_64.msi, arguments: ' ARPSYSTEMCOMPONENT="1" MSIFASTINSTALL="7"
    WIXBUNDLEORIGINALSOURCE="C:\Users\joh903679\Downloads\Microsoft Cloud App Discovery Endpoint Agent
    \EndpointAgentSetup.exe" TENANTCERTPATH=""'
    [1064:1930][2015-01-27T15:16:45]e000: Error 0x80070643: Failed to install MSI package.
    [1064:1930][2015-01-27T15:16:45]e000: Error 0x80070643: Failed to execute MSI package.
    [152C:2550][2015-01-27T15:16:45]e000: Error 0x80070643: Failed to configure per-machine MSI package

    I Assume you are talking in context of the cloud services i.e. compute roles. what is the approach you have taken to process the installable on your role instances? have you defined any start up task? 
    You might want to try setting your role instances' execution context too.
    You can refer this article for more information on using start up tasks - https://www.simple-talk.com/cloud/platform-as-a-service/installing-third-party-software-on-windows-azure-%E2%80%93-what-are-the-options/
    Bhushan | Blog |
    LinkedIn | Twitter

  • DPM 2012 - ID:33234 - Unable to resolve this issue

    I spent like almost 2 days trying to fix this message. Anyone has any idea how to quickly fix it??
    Set-DPMCredentials : The certificate provided with thumbprint
    XXXXXXXXXXXXXXXXXXXXXXXXXX  on the personal machine store of
    machine BCXXXXXXXX.syXXXX.com does not correspond to the requirements of DPM
    The following requirements are not met for the certificate.
    The certificate is not trusted on the local machine.
     (ID: 33234)
    Please make sure certificate fulfills the following requirements:
    1) The certificate is trusted on the local machine and has not expired.
    2) The revocation servers of the associated Certificate Authorities are
    online.
    3) The certificate has an associated private key with a valid exchange
    algorithm.
    4) The certificate's public key length is greater than or equal to 1024 bits
    5) The certificate should have both Server and Client Authentication if
    Enhanced Key Usage is enabled.
    6) The subject of the certificate and its root CA should not be empty.
    7) DPM does not support certificates with Cryptography API Next Generation
    (CNG) keys.
    I ran the command - certutil –store –v my
    and the only thing I see different is the following.
    Can someone help me identify if I did something wrong in reguesting certificate? or what is the issue?    
    Provider = Microsoft RSA SChannel Cryptographic Provider
        ProviderType = c
      Flags = 20 (32)
        CRYPT_MACHINE_KEYSET -- 20 (32)
        KeySpec = 1 -- AT_KEYEXCHANGE
    Thanks,
    PK

    Any update on this Question?

  • Post DPM 2012 r2 install.. DPM Agents showing "needs update" even though at version 4.2.1205.0

    I've done a migration from Dpm 2010 all the way up to 2012 R2 at this point.. on x64..
    There were previous clients on the system using version 3.x of the agent.. i tried the install update option in the gui on the server but found I had to manually uninstall the old dpm agent on each server and then install the new agent..
    Now on the dpm server it still says each one needs updated.. I ran a refresh, rebooted both the server with the agent and the dpm server to no avail..
    How do I get the dpm server to realize that verison 4.2.1205.0 is installed?  I think this is a sql db update issue.. i do not want to have to delete the whole protection
    group and start over.. its quite massive..
    Thanks for any advice here
    Edit:  did i need to set a dpm server name upon running each agent install.. i didnt do this thus far..
    Tech, the Universe, Everything: http://tech-stew.com

    manually running the command to setdpmserver name seems to have done the trick.. only issue is i have about 40 machines to roll through to set this
    Tech, the Universe, Everything: http://tech-stew.com

  • DPM 2012 R2 agent update on Windows 2003 server x64 - Exchange

    According to the release notes on http://blogs.technet.com/b/dpm/archive/2014/04/23/now-available-update-rollup-2-for-system-center-2012-r2-data-protection-manager.aspx the following workloads are supported on Win2K3 with DPM2012 R2 UR2:
    SQL 2005
    SQL 2008
    SQL 2008 R2
    SharePoint 2007
    Does that mean protecting Exchange 2007 on Win2K3 is no longer an option after upgrading to DPM 2012 R2 (UR2)? It works on DPM 2012 SP1 but I need to know if it will continue to work after upgrading.
    (This question follows on from this thread http://social.technet.microsoft.com/Forums/en-US/c425421b-b726-4125-82fc-beae8947722c/dpm-2012-r2-agent-update-on-windows-2003-server-x64?forum=dpmsetup which was marked as 'answered')

    Hi,
    Yes, Exchange 2007 backup will continue to work. I think that due to the timeframe of the UR2 release not all workloads were able to be re-certified, thus the limit in supported workloads.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • DPM 2012 R2 console crashes after install RU5 Solved

    Just to Share 
    The GUI might freeze in one of the following cases :
    Case1:
    You have never protected the DPM server’s System State, with the DPM server itself
    You have protected some System State from other Production Servers
    You upgrade to UR5
    You trigger an inquiry on the DPM Server itself
    Case2:
    You have a primary DPM server protecting the System State of a Production Server
    You have attached the primary DPM server to a secondary DPM server for Disaster Recovery
    You upgrade the secondary DPM server to UR5
    You trigger an inquiry on the
    primary DPM server in the secondary DPM server UI
    Then:
    The UI crashes, and gets hung if you start it again
    Cmdlets are also unresponsive
    Workaround:
    Stop all DPM services (MSDPM, Access Manager, DPM Writer, DPMRA, VssNullProvider)
    Open the SQL Server Management Studio (Either from Start Screen, or Run: ssms.exe)
    Connect to the SQL Instance holding the DPM DB
    Backup Your DPM Backup
    Right click the DPM DB and click on “New Query”
    Paste the following SQL script:
    DELETE
    FROM dbo.tbl_IM_ProtectedObject
    WHERE
    ProtectedObjectId IN
    SELECT PO.ProtectedObjectId
    FROM dbo.tbl_IM_ProtectedObject
    AS PO
    JOIN dbo.tbl_AM_Server
    AS SRVR
    ON PO.ServerId
    = SRVR.ServerId
    WHERE (CONVERT(VARCHAR(4096),PO.ComponentName)
    = 'System State'
    OR CONVERT(VARCHAR(4096),PO.ComponentName)
    = 'Bare Metal Recovery')
    AND PO.ProtectedInPlan
    = 0
    AND PO.ProtectedObjectId
    NOT IN
    (SELECT
    ProtectedObjectId FROM
    dbo.tbl_IM_ProtectedObjectAlerts)
    AND LOWER(CONVERT(XML,PO.LogicalPath).value(
    '(/child::ArrayOfInquiryPathEntryType/child::InquiryPathEntryType[attribute::Type="Server"]/attribute::Value)[1]',
    'VARCHAR(4096)'
    )) !=
    LOWER(SRVR.ServerName)
    Press F5 to execute
    Start all DPM services
    The UI and cmdlets should work normally as before
    Islam Gomaa Microsoft MVP | System Center Data Protection Manager email: Islam @ Islam Gomaa.com Blog: 
    http://blog.islamGomaa.com

    We have released a hotfix with a permanent fix for the DPM 2012 R2 UR5 Console Hang post release issue.
    The details are available at the below link:
    Console crashes when you run an inquiry on a DPM server
    after you install Update Rollup 5 for System Center 2012 R2 Data Protection Manager
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • Does DPM 2012 R2 with rollup 2 support any version of Windows Server 2003/2008 on Hyper-V?

    We have Hyper-V Hosts with VMs which include Windows 2003/2003R2/2008/2008R2.
    If I we upgrade to DPM 2012 R2 Update Rollup 2, will we be able to backup all those VMs now?   The support matrix (http://technet.microsoft.com/en-us/library/jj860400.aspx)
    still seems to show what is supported by the initial release of DPM 2012 R2, not an updated version for the rollup.
    We currently use DPM 2012 SP1 and Hyper-V hosts using Server 2012.

    Hi,
    This is kind of a loaded question because DPM 2012 R2 never dropped support for protecting Windows 2003/2008 using host level backup.
    However, the support matrix will be updated shortly to include the added support for protecting workloads on Windows 2003 / 2008 using DPM 2012 R2 UR2.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

Maybe you are looking for

  • How can I do position maintenance using a digital input to capture an encoder count and adjust the move profile on the fly.

    I have a rotary table (45:1 ratio) being driven by a stepper motor. I am using a 7344 motion controller. I want to be able to do position maintenance on the move. I have a home input on the table. My thoughts were to capture the position when the tab

  • Problem in running instance of oc4j

    Hi i am using Jdeveloper 10g for developing J2EE application. In order to debug my JSP code, I wanted to start the OC4J instance. For that i went to <JDEV_HOME>\j2ee\home and ran "java -jar oc4j.jar" command in the command prompt.The server started,

  • 0orgunit report some value in kf is 0 some null.

    Hi there, In my report, that is 0orgunit and kf (number of employee) relative to the year, In some orgunit it has value, some has value 0, and some has no value. Whats the different between 0 and no value? Why in some lines there are zeros and in som

  • Not able to open flash supported file

    Hello Friends, i have been just bought new pc & just transfer my backup files to my new apple pc & just need to konw... i just my transfer company's data from my pc to apple pc but i am not able to open any flesh plyer... i just want to use few links

  • Mac Pro Mystery Problem!

    Hi there, I have an issue whereby my Mac Pro will only boot up in safe mode. In normal mode, the graphics are not responding quickly enough to any actions. I.E, dropped pixels, stuck mouse, delayed actions, a total nightmare. have defragged all my dr