Unable to modify or create Protection Groups in DPM 2012 R2 - Error: 31220

"DPM failed to apply the required policies to this protection group since the recovery point limit for this DPM server has been exceeded. (ID: 31220)"
I am trying to add new data sources to our DPM server and continually run into the above message. I get the same error whether I attempt to create a new Protection Group and add the data sources to it... or if I attempt to modify an existing Protection Group
to add data sources to it. I can guess that the obvious answer is "You have too many data sources or to many recovery points for the server to handle..." If that's the case, I need to figure out how to tell how many I have. As best as I can figure
myself, I have less than 150 data sources and less than 2500 recovery points/snapshot/express-full. If there is a tool or a command that I can run to tell that, I'd be grateful to anyone who can point me in that direction.
I have tried to remove inactive member servers that no longer exist from our Protection Groups... no effect.  I have tried to completely delete the removed server's data from replica... no effect.  We began seeing this issue in 2012 SP1, so I ran
through the upgrade to 2012 R2 hoping that it would resolve the issue... no effect.  I am able to remove members from our Protection Groups, but if I try to add an entirely new member or even just a single DB on an already protected member... fails with
above message.  I also tried to adjust the retention and backup schedule... fails with above error.
Other than the stock answer from Microsoft that I am truly exceeding some limit, is there any other underlying issue that can cause this to be mis-reported to me?  I hope that SOMEONE has an answer or guidance for me.

Hi,
Another DPM PowerShell script - this one allows you to delete older recovery points for a selected datasource without having to modify the PG.
#Author : Ruud Baars
#Date : 11/09/2008
#Edited : 11/15/2012 By: Wilson S.
#edited : 11/27/2012 By: Mike J.
# NOTE: Update script to only remove recovery points on Disk. Recovery points removed will be from the oldest one up to the date
# entered by the user while the script is running
#deletes all recovery points before 'now' on selected data source.
$version="V4.7"
$ErrorActionPreference = "silentlycontinue"
add-pssnapin sqlservercmdletsnapin100
Add-PSSnapin -Name Microsoft.DataProtectionManager.PowerShell
$MB=1024*1024
$logfile="DPMdeleteRP.LOG"
$wait=10 #seconds
$confirmpreference = "None"
function Show_help
cls
$l="=" * 79
write-host $l -foregroundcolor magenta
write-host -nonewline "`t<<<" -foregroundcolor white
write-host -nonewline " DANGEROUS :: MAY DELETE MANY RECOVERY POINTS " -foregroundcolor red
write-host ">>>" -foregroundcolor white
write-host $l -foregroundcolor magenta
write-host "Version: $version" -foregroundcolor cyan
write-host "A: User Selects data source to remove recovery points for" -foregroundcolor green
write-host "B: User enters date / time (using 24hr clock) to Delete recovery points" -foregroundcolor green
write-host "C: User Confirms deletion after list of recovery points to be deleted is displayed." -foregroundcolor green
write-host "Appending to log file $logfile`n" -foregroundcolor white
write-host "User Accepts all responsibilities by entering a data source or just pressing [Enter] " -foregroundcolor white -backgroundcolor blue
"**********************************" >> $logfile
"Version $version" >> $logfile
get-date >> $logfile
show_help
$DPMservername=&"hostname"
"Selected DPM server = $DPMservername" >> $logfile
write-host "`nConnnecting to DPM server retrieving data source list...`n" -foregroundcolor green
$pglist = @(Get-ProtectionGroup $DPMservername) # WILSON - Created PGlist as array in case we have a single protection group.
$ds=@()
$tapes=$null
$count = 0
$dscount = 0
foreach ($count in 0..($pglist.count - 1))
# write-host $pglist[$count].friendlyname
$ds += @(get-datasource $pglist[$count]) # WILSON - Created DS as array in case we have a single protection group.
# write-host $ds
# write-host $count -foreground yellow
if ( Get-Datasource $DPMservername -inactive) {$ds += Get-Datasource $DPMservername -inactive}
$i=0
write-host "Index Protection Group Computer Path"
write-host "---------------------------------------------------------------------------------"
foreach ($l in $ds)
"[{0,3}] {1,-20} {2,-20} {3}" -f $i, $l.ProtectionGroupName, $l.psinfo.netbiosname, $l.logicalpath
$i++
$DSname=read-host "`nEnter a data source index from list above - Note co-located datasources on same replica will be effected"
if (!$DSname)
write-host "No datasource selected `n" -foregroundcolor yellow
"Aborted on Datasource name" >> $logfile
exit 0
$DSselected=$ds[$DSname]
if (!$DSselected)
write-host "No datasource selected `n" -foregroundcolor yellow
"Aborted on Datasource name" >> $logfile
exit 0
$rp=get-recoverypoint $DS[$dsname]
$rp
# $DoTape=read-host "`nDo you want to remove when recovery points are on tape ? [y/N]"
# "Remove tape recovery point = $DoTape" >> $logfile
write-host "`nCollecting recoverypoint information for datasource $DSselected.name" -foregroundcolor green
if ($DSselected.ShadowCopyUsedspace -gt 0)
while ($DSSelected.TotalRecoveryPoints -eq 0)
{ # "still 0"
#this is on disk
$oldShadowUsage=[math]::round($DSselected.ShadowCopyUsedspace/$MB,1)
$line=("Total recoverypoint usage {0} MB on DISK in {1} recovery points" -f $oldShadowUsage ,$DSselected.TotalRecoveryPoints )
$line >> $logfile
write-host $line`n -foregroundcolor white
#this is on tape
#$trptot=0
#$tp= Get-RecoveryPoint($dsselected) | where {($_.Datalocation -eq "Media")}
#foreach ($trp in $tp) {$trptot += $trp.size }
#if ($trptot -gt 0 )
# $line=("Total recoverypoint usage {0} MB on TAPE in {1} recovery points" -f ($trptot/$MB) ,$DSselected.TotalRecoveryPoints )
# $line >> $logfile
# write-host $line`n -foregroundcolor white
[datetime]$afterdate="1/1/1980"
#$answer=read-host "`nDo you want to delete recovery points from the beginning [Y/n]"
#if ($answer -eq "n" )
# [datetime]$afterdate=read-host "Delete recovery points AFTER date [MM/DD/YYYY hh:mm]"
[datetime]$enddate=read-host "Delete ALL Disk based recovery points BEFORE and Including date/time entered [MM/DD/YYYY hh:mm]"
"Deleting recovery points until $enddate" >>$logfile
write-host "Deleting recovery points until and $enddate" -foregroundcolor yellow
$rp=get-recoverypoint $DSselected
if ($DoTape -ne "y" )
$RPselected=$rp | where {($_.representedpointintime -le $enddate) -and ($_.Isincremental -eq $FALSE) -and ($_.DataLocation -eq "Disk")}
else
$RPselected=$rp | where {($_.representedpointintime -le $enddate) -and ($_.Isincremental -eq $FALSE)}
if (!$RPselected)
write-host "No recovery points found!" -foregroundcolor yellow
"No recovery points found, aborting...!" >> $logfile
exit 0
$reselect = $enddate
$adjustflag = $false
foreach ($onerp in $RPselected)
$rtime=[string]$onerp.representedpointintime
$rsize=[math]::round(($onerp.size/$MB),1)
$line= "Found {0}, RP size= {1} MB (If 0 MB, co-located datasource cannot be computed), Incremental={2} "-f $rtime, $rsize,$onerp.Isincremental
$line >> $logfile
write-host "$line" -foregroundcolor yellow
#Get dependent rp's for data source
$allRPtbd=$DSselected.GetAllRecoveryPointsToBeDeleted($onerp)
foreach ($oneDrp in $allRPtbd)
if ($oneDrp.IsIncremental -eq $FALSE) {continue}
$rtime=[string]$oneDrp.representedpointintime
$rsize=[math]::round(($oneDrp.size/$MB),1)
$line= ("`t...is dependancy for {0} size {1} `tIncremental={2}" -f $rtime, $rsize, $oneDrp.Isincremental)
$line >> $logfile
if ($oneDrp.representedpointintime -ge $enddate)
#stick to latest full ($oneDrp = dependents, $onerp = full)
$adjustflag = $true
$reselect = $onerp.representedpointintime
"<< Dependents newer than BEFORE date >>>" >> $logfile
Write-Host -nonewline "`t <<< later than BEFORE date >>>" -foregroundcolor white -backgroundcolor red
write-host "$line" -foregroundcolor yellow
else
#Ok, include current latest incremental
$reselect = $oneDrp.representedpointintime
write-host "$line" -foregroundcolor yellow
if ($reselect -lt $oneDrp.representedpointintime)
#we adjusted further backward than latest incremental within selection
$reselect = $rtime
$line = "Adjusted BEFORE date to be $reselect to include dependents to $enddate"
$line >> $logfile
Write-Host $line -foregroundcolor white -backgroundcolor blue
$line="`n<<< SECOND TO LAST CHANCE TO ABORT - ONE MORE PROMPT TO CONFIRM. >>>"
write-host $line -foregroundcolor white -backgroundcolor blue
$line >> $logfile
$line="Above recovery points within adjusted range will be permanently deleted !!!"
write-host $line -foregroundcolor red
$line >> $logfile
$line="These RP's include dependent recovery points and may contain co-located datasource(s)"
write-host $line -foregroundcolor red
$line >> $logfile
$line="Data source activity = " + $DSselected.Activity
$line >> $logfile
write-host $line -foregroundcolor white
$DoDelete=""
while (($DoDelete -ne "N" ) -and ($DoDelete -ne "Y"))
$line="Continue with deletion (must answer) Y/N? "
write-host $line -foregroundcolor white
$DoDelete=read-host
$line = $line + $DoDelete
$line >> $logfile
if (!$DSselected.Activity -eq "Idle")
$line="Data source not idle, do you want to wait Y/N ? "
write-host $line -foregroundcolor yellow
$Y=read-host
$line = $line + $Y
$line >> $logfile
if ($Y -ieq "Y")
Write-Host "Waiting for data source to become idle..." -foregroundcolor green
while ($DSselected.Activity -ne "Idle")
("Waiting {0} seconds" -f $wait) >>$logfile
Write-Host -NoNewline "..." -ForegroundColor blue
start-sleep -s $wait
if ($DoDelete -eq "Y")
foreach ($onerp in $RPselected)
#reselect is adjusted to safe range relative to what was requested
#--- if adjustflag not set then all up to including else only older because we must keep the full
if ((($onerp.representedpointintime -le $reselect) -and ($adjustflag -eq $false)) -or ($onerp.representedpointintime -lt $reselect))
$rtime=[string]$onerp.representedpointintime
write-host `n$line -foregroundcolor red
$line >>$logfile
if (($onerp ) -and ($onerp.IsIncremental -eq $FALSE)) { remove-recoverypoint -RecoveryPoint $onerp -confirm:$True} # >> $logfile}
$line =("---`nDeleting recoverypoint -> " + $rtime)
$line >>$logfile
"All Done!" >> $logfile
write-host "`nAll Done!`n`n" -foregroundcolor white
$line="Do you want to View DPMdeleteRP.LOG file Y/N ? "
write-host $line -foregroundcolor white
$Y=read-host
$line = $line + $Y
$line >> $logfile
if ($Y -ieq "Y")
Notepad DPMdeleteRP.LOG
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.

Similar Messages

  • MMC crashes when attempting modification of a protection group in DPM 2012 SP1 RU3

    Hi All,
    I've got a problem with my DPM 2012 SP1 server for a few weeks now. It's backing up and restoring fine, but when I attempt to modify any protection group, the MMC crashes. This happens even before the modify protection group dialog is displayed, just a few
    seconds after clicking 'modify' with the protection group selected.
    it was running DPM 2012 SP1 RU1, is now running RU3, this update did not make the difference I was hoping for. Also installation of the DPM console on a remote management server results in the exact same problem.
    Below is the error message. Has anyone else had this or a similar problem and solved it?
    Thanks,
    Jacob
    Description:
      AppName: mmc  AppVer: 4.1.3313.0 ModName: mmc.exe
    ModVer: 6.2.9200.16384  StackHash: 7C18B55A
    Problem signature:
      Problem Event Name: DPMException
      Application Name: mmc
      Application Version: 4.1.3313.0
      Module Name: mmc.exe
      Module Version: 6.2.9200.16384
      Exception Name: System.NullReferenceException
      Exception Point: Microsoft.Internal.EnterpriseStorage.Dls.UI.Dpw.SelectionPage.ConstructAllServersView
      Other: 7C18B55A
      OS Version: 6.2.9200.2.0.0.272.7
      Locale ID: 1043
    Read our privacy statement online:
      http://go.microsoft.com/fwlink/?linkid=190175
    If the online privacy statement is not available, please read our privacy statement offline:
      C:\Windows\system32\en-US\erofflps.txt

    Hi
    I had the same problem with Sharepoint backups, there was a problem with the protection group so i removed it and added it back. since then no issues.

  • DPM 2012 Cannot modify or create protection groups after upgrading from DPM 2010

    Hi,
    We have recently upgraded from DPM 2010 to 2012.  Since the upgrade we have been unable to create new protection groups or add new datasources to an existing group.  Existing backups are running without errors. 
    We have tried checking the DPM sql user account permissions as described in
    this article but with no luck.  More searching has not provided any other relavent fixes.  We are now stuck on how to troubleshoot this any further.
    In the DPM console we get the following error adding a VM to an existing protection group:
    Modify protection group: Virtual Machines failed:
    Error 207: An unexpected error occurred on DPM server machine during a VSS operation.
    Error details: VssError:Shadow copying the specified volume is not supported.
     (0x8004230C)
    Recommended action: Retry the operation.
    Allocate Replica For \Backup Using Saved State\Cacti failed:
    Error 207: An unexpected error occurred on DPM server machine during a VSS operation.
    Error details: VssError:Shadow copying the specified volume is not supported.
     (0x8004230C)
    Recommended action: Retry the operation.
    In the event log we see:
    The description for Event ID 955 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 consistency check resulted in the following changes to SQL Server Agent schedules: Schedules added: 1 Schedules removed: 1 Schedules updated: 0.  
    Problem Details:
    <ConsistencyCheck><__System><ID>26</ID><Seq>1534</Seq><TimeCreated>23/04/2012 09:33:29</TimeCreated><Source>SchedulerImpl.cs</Source><Line>719</Line><HasError>True</HasError></__System><Tags><JobSchedule
    /></Tags></ConsistencyCheck>
    the message resource is present but the message is not found in the string/message table
    Thanks in advance for any advice.

    Hi,
    The error 0x8004230C VSS_E_VOLUME_NOT_SUPPORTED: Shadow copying the specified volume is not supported, can only come when trying to enable shadow copies on new volumes created when trying to add new datasources to protection.   Generally speaking
    Only NTFS volumes greater that 1GB with a minimum of 300MB free space can be shadow copied, so something is going wrong with the volume creation / format process.  Please investigate that, see if two new volumes get created when protecting a new data
    source, and the sizes are greated that 1GB and also verify it's formatted NTFS.
    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.

  • A few SQL related protection group Questions - DPM 2012 R2

    Hi - Here is my environment: DPM 2012 R2 backing up SQL 2012 DBs. Some of the DBs are simple recovery model, some are full recovery model in the same protection group.
    1) Regarding the fact that DPM only looks to the recovery model when the DB is first added to the protection group, if I ever changed the recovery model in the future, would stepping through the "Modify Protection Group" wizard without changing
    anything be the solution for DPM not changing its methodology on the backing up or not backing up the log files? Or would I have to remove the affected databases from the protection group and add them back in?
    2) I have disk protection configured for 30 Days, sync every 15 minutes, and application recovery points once per day. Online protection is configured for 90 Days. Does this mean my disk consumption on the DPM side for full model databases will be the full
    size of the databases, plus the amount of changes observed over 30 days? OR does it mean it will keep 30 full copies of the DB? I am fairly sure the former.
    3) If I do decide to reduce the retention range on the disk side of this protection group to say 14 days, are there any specific issues with changing that after the PG has been working for some time?
    4) My former backup solution had an option to run consistency checks after every SQL job. Is that still considered best practice? Would the "Run a daily consistency check" be a better choice than the "Only run if a replica becomes inconsistent"
    option that I currently have in place? Would there be any ramifications to enabling this now after this PG has been in place for some time?
    Thanks very much!

    Hi
    Q1) Regarding the fact that DPM only looks to the recovery model when the DB is first added to the protection group, if I ever changed the recovery model in the future, would stepping through the "Modify Protection Group" wizard without changing
    anything be the solution for DPM not changing its methodology on the backing up or not backing up the log files? Or would I have to remove the affected databases from the protection group and add them back in?
    A1)
    Changing the Recovery Model of a Database
    To change the recovery model of a protected database to the simple recovery model
    Stop protection of the database, selecting the retain replica option.
    Change the recovery model on the SQL Server database.
    Add the database to a protection group.
    Q2) I have disk protection configured for 30 Days, sync every 15 minutes, and application recovery points once per day. Online protection is configured for 90 Days. Does this mean my disk consumption on the DPM side for full model databases will be the full
    size of the databases, plus the amount of changes observed over 30 days? OR does it mean it will keep 30 full copies of the DB? I am fairly sure the former.
    A2) Your disk consumption on the DPM will be for size of model databases plus the amount of changes observed over 30 days.
    Q3) If I do decide to reduce the retention range on the disk side of this protection group to say 14 days, are there any specific issues with changing that after the PG has been working for some time?
    A4) Not really, but to gain back the potential extra space allocated for the original 30 day retention - you can try shrinking the recovery point volume once the retention range is reduced and the older recovery points are pruned.  I would wait until
    after midnight to be sure the old RP's are deleted, then try to shrink.
    Q4) My former backup solution had an option to run consistency checks after every SQL job. Is that still considered best practice? Would the "Run a daily consistency check" be a better choice than the "Only run if a replica becomes inconsistent"
    option that I currently have in place? Would there be any ramifications to enabling this now after this PG has been in place for some time?
    A4)  A consistency check will only run if DPM detects the replica is inconsistent.  Even if you have the option selected to run nightly, if the replica is already consistent a consistency check will be skipped.
    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.

  • Creating Protection Group Fails with Error:360 The operation failed due to a virtual disk service error

    Hello
    I'm setting up a DPM server (2012 R2) at a remote site; everything goes well with no issues until a protection group is created, at which point I get the following error;
    Create protection group: Protection Group 1 failed:
    Error 360: The operation failed due to a virtual disk service error
    Error details: The system cannot find the file specified
    Recommended action: Retry the operation.
    The environment is as follows;
    - Virtual Machine Running Server 2008 R2 Fully updated
    - Storage Pool is an iSCSI connection Thick Provisioned 1TB GPT and shows in Disk Management with no issues.
    - Have connected to Session 0 (console) 
    - Error log shows The provider did not receive a Plug and Play service notification for the volume. volume=10  for the VDS Dynamic Provider
    Can Anyone Help?
    Thanks
    .Adam Langdon

    Hi,
    Disk defrag is initiated when a volume shrink is attempted. See if there is any problem defragging a volume and correct any problems doing that.
    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.

  • Can't create protection groups on the Azure Portal with on-premise hyper-v to Azure

    I’m trying to setup Azure Site Recovery on-premise hyper-v to Azure. I have successfully configured the Hyper-V Sites and installed the provider with the registration key. Both servers
    show green. I see my hyper-v server on the server tab.
    The issue occurred when I’m moving to the next step “creating a Protection Group”. When click on the “create new protection group” I’m getting the error saying "An error
    occurred while retrieving the list of servers".
    I had this error also yesterday and I tried to delete the sites, vault and create everything again. I used the unregister scripted
    https://msdn.microsoft.com/en-us/library/azure/dn903160.aspx?f=255&MSPPError=-2147217396
    Still I got the error today again.
    I really don’t understand what I’m doing wrong.
    Ps. I followed this guide
    http://www.ms4u.info/2014/12/configure-azure-site-recovery-asr.html

    Your welcome, glade I could help you out. I'm kind of stuck myself with site-to site vpn part. I made the posted here with all the details.
    https://social.msdn.microsoft.com/Forums/en-US/4f981cda-52ea-41e9-b9e7-4c34bb7367b8/need-help-to-configure-a-vpn-connection-to-an-azure?forum=WAVirtualMachinesVirtualNetwork
    I want to make a planned failover and connect the network with the virtual machines. Somehow the vpn connection fails on phase 2.

  • How to create a group in SCOM 2012 R2 based on SCCM Collection?

    Is there a way to create a group in SCOM 2012 R2 based on sccm collection? I am planning to use that group for maintenance mode.
    Thanks, Samer

    Hi,
    I think you could query all the collectin members from SCCM database then use powershell to add them to a specific OU.
    How to Create Groups in Operations Manager
    http://technet.microsoft.com/en-us/library/hh298605.aspx
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • DPM 2012 R2 Unable to create protection groups after Cluster Migration

    Hi Team
    we have an issue relating to DPM 2012 R2. In our environment we have a Hyper-V Cluster and we recently did a Cluster Migration since Hyper-V Cluster was upgraded to Windows Server 2012 R2.
    Before the upgrade, Windows Server 2008 R2 Cluster was protected by DPM Environment. After we upgraded we are unable to Create new protection Groups existing the new cluster and when we select VMs it's not showing up any members.
    Please let us know how we can solve this issue since the Cluster Nodes and the Cluster Name is different from previous Cluster, we were expecting that DPM would allow us to create new Protection Groups while preserving old protection groups for recovery later
    if needed. 

    Hi,
    you need to stop the Protection of the old HyperV Datasources
    Clear the Cache of the Protectiongroup,
    and read the new VM to Protectiongroup
    Seidl Michael | http://www.techguy.at | twitter.com/techguyat |
    facebook.com/techguyat |
    youtube.com/techguyat

  • Event 917 Console Crash when attempting to modify Disk Only Protection Group

    Primary DPM 2012 R2 4.2.1254.0 running on Server 2012 -
    In the process of decommissioning a number of old servers - I found that I am no longer able to modify a disk only protection group on one of my primary DPM servers. Console crash - noting error 917. I've seen a number of work around in relation to protection
    groups with long term storage, but none noting disk only. Notably, kb 2905631 - long term only protection may cause this issue.
    Another thread mentioned that re-syncing / consistency checks on the entire server resolved the issue for them, but I find that rather unnecessary. I've over 13Tb of data on this server, and am trying to remove the last 30GB of an old protection group.
    Recap-
    Error 917 when removing member from protection group
    MMC crash with a 999 marked when modifying the protection group
    The event log is not noting any service crashes, or the 917 error in the event log. 999 is getting recorded in the event log.
    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>12/2/2014 5:40:14 PM</TimeCreated><Source>DpmThreadPool.cs</Source><Line>163</Line><HasError>True</HasError></__System><ExceptionType>SqlNullValueException</ExceptionType><ExceptionMessage>Data
    is Null. This method or property cannot be called on Null values.</ExceptionMessage><ExceptionDetails>System.Data.SqlTypes.SqlNullValueException: Data is Null. This method or property cannot be called on Null values.
       at System.Data.SqlClient.SqlBuffer.get_String()
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ObjectModel.OMCommon.ProtectionGroup.ReadBackupAndCCWindow()
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ObjectModel.OMCommon.ProtectionGroup.get_BackupWindow()
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ObjectModel.OMCommon.ProtectionGroup.GetPerformanceString()
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ProtectedGroupUIElement.AddPerformanceData()
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ProtectedGroupUIElement.ConstructDetailsPaneContent()
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.CommonControls.UISearchableElement.get_DetailNameValuePairs()
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ProtectedGroupUIElement.DisplayDetails()
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ProtectionViewInternal.FillGroupDetails(GroupingListHeaderItem group)
       at Microsoft.Internal.EnterpriseStorage.Dls.UI.ProtectionViewInternal.UpdateDetailsPane()
       at System.EventHandler.Invoke(Object sender, EventArgs e)
       at Microsoft.Internal.EnterpriseStorage.UI.CommonControls.GroupingListView.EndUpdate()
       at Microsoft.Internal.EnterpriseStorage.UI.CommonControls.GroupingListViewBody.ProcessClick()
       at System.Windows.Forms.Control.WmMouseUp(Message&amp; m, MouseButtons button, Int32 clicks)
       at System.Windows.Forms.Control.WndProc(Message&amp; m)
       at Microsoft.Internal.EnterpriseStorage.UI.CommonControls.GroupingListViewBody.WndProc(Message&amp; m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)</ExceptionDetails></FatalServiceError>
    the message resource is present but the message is not found in the string/message table

    Hi Mike,
    That appears to be the case. A row shows NULL for IMCatalogXML. I'm looking at your script to update the value now based on the following thread - thread .
    So far, no rows have been modified.
    Since I really don't care about this protected member, is this a row I could just delete from the DB, or how to properly update the data so I can remove it from within the confines of the GUI?
    Marketing 2011-05-19 18:59:41.917
    B7073B10-DDE6-4EA3-BD8C-1E1497C218D5 NULL
    NULL 0
    0 0 NULL
    2 0
    NULL
    This PG was definitely around back when this server was DPM 2010.
    Regards

  • Create Protection Group Hyper-V Virtual Machines Not Listed

    Hello,
    We are in the process of testing DPM 2012 R2 and we are trying to backup our Hyper-V virtual machines on both cluster hosts and stand-alone Hyper-V hosts.  We have deployed the DPM agent to all cluster hosts and the stand-alone hosts, but when we go
    to create a protection group, we do not see Hyper-V Virtual Machines listed under "HyperV".  We are expecting Virtual Machines to show up as shown in Step 7 of this guide: http://blogs.technet.com/b/kevinholman/archive/2013/11/07/dpm-2012-r2-quickstart-deployment-guide.aspx.
     We have DPM 2012 R2 UR4 installed and Hyper-V role is enabled on the DPM server.
    Is there something extra we need to do or something we are doing wrong?
    Thank you.

    Gleb,
    Thank you for your help.  For our cluster, we realized we weren't seeing any VM's under the Cluster Node because an agent was not installed on our of the Hyper-V hosts in the cluster.  As for the stand-alone Hyper-V host and the cluster node listing
    within the "Create New Protection Group" wizard, it looks like MOST of the VM's have the "Backup Using Child Partition Snapshot" option, but no longer show as "Online" or "Offline".  I believe this is due to the
    way the Hyper-V backups are done w/ DPM which was changed either in R2 or one of the Update Rollups.  

  • Cannot create protection groups from Azure Portal

    Trying to setup Azure Site Recovery. Have successfully added the Hyper-V Sites and installed the provider and applied the registration key. Both servers show green. 
    The issue is when moving to the next step in the process of creating a Protection Group. I click create new protection group and the normal drop down list and options do not show up. I get an error saying "An
    error occurred while retrieving the required data for this view."  I have tried logging off and on trying different browsers (Chrome, IE, Mozilla) with same results. Have also tried multiple computers and servers same result. 
    I have looked up the PowerShell commands to try to find how to create the protection group from PowerShell but no luck finding specific command. 
    For now I am going to try to delete the sites, vault, and create everything from scratch. 
    <button aria-label="Replication Settings" class="fx-balloonicon-button" type="button"></button>

    Hello,
    Please can you share the following detail with me
    1) Go to the Jobs view of the ASR Vault & find the jobs which were run during the Registration of both your servers.
    2) Drill into the job and from the properties page please send us the JobId.
    We will need this information to understand what could have potentially gone wrong with the Vault.
    Regards,
    Anoop KV

  • Create Memory Group in SCOM 2012

    Hello,
    I would like to create dynamic groups based on memory capacity to set the threshold for different sizes.
    Anyone help me to create a group based on memory size?
    regards,
    Vijay

    Hello Vijay,
    When you go to create a New Group in the Authoring workspace, and you add the Windows Computer class, you will then have a Property list to select from. Unfortunately, I don't see any reference to Memory available (although I do see referenced to both Local
    and Physical Processors). 
    However, if you change the class to Windows Operating System, there is a property for "Physical Memory (MB)". You can then choose the appropriate Operator (i.e. Equals, Greater Than, etc.), and then specify the value you want. 

  • Acrobat X - unable to modify PDFs created in Acrobat 8

    I just installed Acrobat X.  I had Word documents that I had previously turned into PDFs and using Acrobat 8 I added comments, hightlights, etc.
    Now with Acrobat X when I open one of those PDFs, I get the informational message at the top "The file you have opened complies with the PDF/A standard and has been opened read-only to prevent modification".
    Now what?  During the install of Acrobat X, Acrobat 8 was uninstalled.

    You can either remove the PDF/A status from the file by preflighting it in Acrobat X Pro, or disable PDF/A View Mode under your general preferences (Edit / Preferences / Documents). The latter should only be done temporarily, as PDF/A documents are displayed differently than normal files, and the View Mode ensures they work as intended (though the side-effect is a read-only view).
    To clear the PDF/A header with Preflight, open the Tools Pane, Print Production panel (if it's not visible, choose it from the corner menu) and click Preflight. Under "PDF/A Compliance" run the "Remove PDF/A information" fixup by clicking "Analyze and fix" and save the file. Nothing else about it will be changed.

  • Dpm 2012 r2 Error 0x80070003 when creating a copy

    Hi, on
    one of the servers during
    the backup disk
    "C" beginning
    this error occurs:
    DPM encountered an error while performing the operation for \\?\Volume{03a44b9a-8387-11e1-8735-806e6f6e6963}\problem_path\ to dpmservername.localdomain.com
    (ID 2033 Details: The system can not find the path specified (0x80070003))
    I try to recreated folder MTA on problem server -
    did not helped. Bare Metal Copy from problem server
    done
    successfully. Antivirus software didn't 
    install on problem server. bandwidthcontrol didn't enable for problem server.
    Please advise to me how fix this problem

    similar thread here:
    http://social.technet.microsoft.com/Forums/en-US/eabb313a-a003-443e-bb82-930cb51ee318/id-2033-details-the-system-cannot-find-the-path-specified-0x80070003?forum=dataprotectionmanager

  • DPM 2012 service crashes when creating a protection group

    DPM Server Setup:
    Windows Server 2012 Datacenter
    DPM 2012 SP1 RU3 (Version 4.1.3417.0)
    SQL Server Setup:
    Windows Server 2012 Datacenter
    SQL Server 2012 Standard (11.0.3128.0)
    DPM database is on a named instance on a custom port
    Windows firewall is completely open between DPM and SQL servers
    Whenever I create a protection group, when it gets to the stage of actually creating the group the DPM service crashes and the group isn't created. This happens whether creating from the console or the shell. The error is:
    Connection to the DPM service has been lost.
    Review the application event log for information about a possible service shutdown. Verify that the following services are not disabled:
                DPM
                DPM Replication Agent
                SQLAgent$SCDPM
                MSSQL$SCDPM
                Virtual Disk Service
                Volume Shadow Copy
    ID: 917
    The Windows error log has the following:
    Log Name:      Application
    Source:        MSDPM
    Date:          17/10/2013 18:37:46
    Event ID:      945
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      backup.domain.local
    Description:
    The description for Event ID 945 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:
    Unable to connect to the DPM database because of a general database failure.  Make sure that SQL Server is running and that it is configured correctly.
    Problem Details:
    <FatalServiceError><__System><ID>19</ID><Seq>68</Seq><TimeCreated>17/10/2013 17:37:46</TimeCreated><Source>DpmThreadPool.cs</Source><Line>163</Line><HasError>True</HasError></__System><ExceptionType>SqlException</ExceptionType><ExceptionMessage>The
    specified '@owner_login_name' is invalid (valid values are returned by sp_helplogins [excluding Windows NT groups]).</ExceptionMessage><ExceptionDetails>System.Data.SqlClient.SqlException: The specified '@owner_login_name' is invalid (valid values
    are returned by sp_helplogins [excluding Windows NT groups]).
       at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
       at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
       at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
       at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)
       at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)
       at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
       at Microsoft.Internal.EnterpriseStorage.Dls.DB.SqlRetryCommand.ExecuteNonQuery()
       at Microsoft.Internal.EnterpriseStorage.Dls.Scheduler.SqlAgentHelper.AddJob(String jobName, String jobOwner, String CategoryName)
       at Microsoft.Internal.EnterpriseStorage.Dls.Scheduler.SqlAgentHelper.RegisterSchedule(Schedule schedule)
       at Microsoft.Internal.EnterpriseStorage.Dls.Scheduler.RegisterScheduleHelper.PerformDBOperation()
       at Microsoft.Internal.EnterpriseStorage.Dls.Scheduler.RegisterScheduleHelper.Execute(SqlContext sqlContext)
       at Microsoft.Internal.EnterpriseStorage.Dls.Scheduler.SchedulerImpl.Register(SqlContext sqlContext, String scheduleXml)
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.ScheduleTranslator.CreateScheduleDefinition(String jobDefinitionId, RecurrenceType[] scheduleRecurrances)
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.ScheduleTranslator.ScheduleJobDefinition(JobTranslator jobTranslator)
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.ScheduleTranslator.ScheduleReplicationJob(JobTranslator jobTranslator, BackupTypeType backupType, Boolean scheduleOnlyForApplications)
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.ScheduleTranslator.ScheduleDeltaReplicationJob()
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.ProtectedGroupTranslator.UpdateJobDefinitions()
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.ProtectedGroupTranslator.TranslateGroup(IMCatalogType IMCatalogXmlPassed, String intentCatalogXml)
       at Microsoft.Internal.EnterpriseStorage.Dls.Engine.CIntentServices.ConfigureProtectedGroup(UInt16* bstrIMCatalogXml)
       at Microsoft.Internal.EnterpriseStorage.Dls.Engine.CCoreServices.ConfigureProtectedGroup(CCoreServices* , UInt16* bstrIMCatalogXml, tagSAFEARRAY** exceptionResult)</ExceptionDetails></FatalServiceError>
    the message resource is present but the message is not found in the string/message table
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="MSDPM" />
        <EventID Qualifiers="0">945</EventID>
        <Level>2</Level>
        <Task>0</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2013-10-17T17:37:46.000000000Z" />
        <EventRecordID>10250</EventRecordID>
        <Channel>Application</Channel>
        <Computer>backup.domain.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>Unable to connect to the DPM database because of a general database failure.  Make sure that SQL Server is running and that it is configured correctly.
    Problem Details:
    &lt;FatalServiceError&gt;&lt;__System&gt;&lt;ID&gt;19&lt;/ID&gt;&lt;Seq&gt;68&lt;/Seq&gt;&lt;TimeCreated&gt;17/10/2013 17:37:46&lt;/TimeCreated&gt;&lt;Source&gt;DpmThreadPool.cs&lt;/Source&gt;&lt;Line&gt;163&lt;/Line&gt;&lt;HasError&gt;True&lt;/HasError&gt;&lt;/__System&gt;&lt;ExceptionType&gt;SqlException&lt;/ExceptionType&gt;&lt;ExceptionMessage&gt;The
    specified '@owner_login_name' is invalid (valid values are returned by sp_helplogins [excluding Windows NT groups]).&lt;/ExceptionMessage&gt;&lt;ExceptionDetails&gt;System.Data.SqlClient.SqlException: The specified '@owner_login_name' is invalid
    (valid values are returned by sp_helplogins [excluding Windows NT groups]).
       at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
       at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
       at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)
       at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)
       at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)
       at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)
       at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
       at Microsoft.Internal.EnterpriseStorage.Dls.DB.SqlRetryCommand.ExecuteNonQuery()
       at Microsoft.Internal.EnterpriseStorage.Dls.Scheduler.SqlAgentHelper.AddJob(String jobName, String jobOwner, String CategoryName)
       at Microsoft.Internal.EnterpriseStorage.Dls.Scheduler.SqlAgentHelper.RegisterSchedule(Schedule schedule)
       at Microsoft.Internal.EnterpriseStorage.Dls.Scheduler.RegisterScheduleHelper.PerformDBOperation()
       at Microsoft.Internal.EnterpriseStorage.Dls.Scheduler.RegisterScheduleHelper.Execute(SqlContext sqlContext)
       at Microsoft.Internal.EnterpriseStorage.Dls.Scheduler.SchedulerImpl.Register(SqlContext sqlContext, String scheduleXml)
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.ScheduleTranslator.CreateScheduleDefinition(String jobDefinitionId, RecurrenceType[] scheduleRecurrances)
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.ScheduleTranslator.ScheduleJobDefinition(JobTranslator jobTranslator)
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.ScheduleTranslator.ScheduleReplicationJob(JobTranslator jobTranslator, BackupTypeType backupType, Boolean scheduleOnlyForApplications)
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.ScheduleTranslator.ScheduleDeltaReplicationJob()
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.ProtectedGroupTranslator.UpdateJobDefinitions()
       at Microsoft.Internal.EnterpriseStorage.Dls.Intent.ProtectedGroupTranslator.TranslateGroup(IMCatalogType IMCatalogXmlPassed, String intentCatalogXml)
       at Microsoft.Internal.EnterpriseStorage.Dls.Engine.CIntentServices.ConfigureProtectedGroup(UInt16* bstrIMCatalogXml)
       at Microsoft.Internal.EnterpriseStorage.Dls.Engine.CCoreServices.ConfigureProtectedGroup(CCoreServices* , UInt16* bstrIMCatalogXml, tagSAFEARRAY** exceptionResult)&lt;/ExceptionDetails&gt;&lt;/FatalServiceError&gt;
    </Data>
        <Binary>3C0046006100740061006C0053006500720076006900630065004500720072006F0072003E003C005F005F00530079007300740065006D003E003C00490044003E00310039003C002F00490044003E003C005300650071003E00360038003C002F005300650071003E003C00540069006D00650043007200650061007400650064003E00310037002F00310030002F0032003000310033002000310037003A00330037003A00340036003C002F00540069006D00650043007200650061007400650064003E003C0053006F0075007200630065003E00440070006D0054006800720065006100640050006F006F006C002E00630073003C002F0053006F0075007200630065003E003C004C0069006E0065003E003100360033003C002F004C0069006E0065003E003C004800610073004500720072006F0072003E0054007200750065003C002F004800610073004500720072006F0072003E003C002F005F005F00530079007300740065006D003E003C0045007800630065007000740069006F006E0054007900700065003E00530071006C0045007800630065007000740069006F006E003C002F0045007800630065007000740069006F006E0054007900700065003E003C0045007800630065007000740069006F006E004D006500730073006100670065003E0054006800650020007300700065006300690066006900650064002000270040006F0077006E00650072005F006C006F00670069006E005F006E0061006D0065002700200069007300200069006E00760061006C006900640020002800760061006C00690064002000760061006C0075006500730020006100720065002000720065007400750072006E00650064002000620079002000730070005F00680065006C0070006C006F00670069006E00730020005B006500780063006C007500640069006E0067002000570069006E0064006F007700730020004E0054002000670072006F007500700073005D0029002E003C002F0045007800630065007000740069006F006E004D006500730073006100670065003E003C0045007800630065007000740069006F006E00440065007400610069006C0073003E00530079007300740065006D002E0044006100740061002E00530071006C0043006C00690065006E0074002E00530071006C0045007800630065007000740069006F006E003A00200054006800650020007300700065006300690066006900650064002000270040006F0077006E00650072005F006C006F00670069006E005F006E0061006D0065002700200069007300200069006E00760061006C006900640020002800760061006C00690064002000760061006C0075006500730020006100720065002000720065007400750072006E00650064002000620079002000730070005F00680065006C0070006C006F00670069006E00730020005B006500780063006C007500640069006E0067002000570069006E0064006F007700730020004E0054002000670072006F007500700073005D0029002E000D000A00200020002000610074002000530079007300740065006D002E0044006100740061002E00530071006C0043006C00690065006E0074002E00530071006C0043006F006E006E0065006300740069006F006E002E004F006E004500720072006F0072002800530071006C0045007800630065007000740069006F006E00200065007800630065007000740069006F006E002C00200042006F006F006C00650061006E00200062007200650061006B0043006F006E006E0065006300740069006F006E0029000D000A00200020002000610074002000530079007300740065006D002E0044006100740061002E00530071006C0043006C00690065006E0074002E005400640073005000610072007300650072002E005400680072006F00770045007800630065007000740069006F006E0041006E0064005700610072006E0069006E0067002800540064007300500061007200730065007200530074006100740065004F0062006A006500630074002000730074006100740065004F0062006A0029000D000A00200020002000610074002000530079007300740065006D002E0044006100740061002E00530071006C0043006C00690065006E0074002E005400640073005000610072007300650072002E00520075006E002800520075006E004200650068006100760069006F0072002000720075006E004200650068006100760069006F0072002C002000530071006C0043006F006D006D0061006E006400200063006D006400480061006E0064006C00650072002C002000530071006C00440061007400610052006500610064006500720020006400610074006100530074007200650061006D002C002000420075006C006B0043006F0070007900530069006D0070006C00650052006500730075006C0074005300650074002000620075006C006B0043006F0070007900480061006E0064006C00650072002C002000540064007300500061007200730065007200530074006100740065004F0062006A006500630074002000730074006100740065004F0062006A0029000D000A00200020002000610074002000530079007300740065006D002E0044006100740061002E00530071006C0043006C00690065006E0074002E00530071006C0043006F006D006D0061006E0064002E00460069006E0069007300680045007800650063007500740065005200650061006400650072002800530071006C0044006100740061005200650061006400650072002000640073002C002000520075006E004200650068006100760069006F0072002000720075006E004200650068006100760069006F0072002C00200053007400720069006E0067002000720065007300650074004F007000740069006F006E00730053007400720069006E00670029000D000A00200020002000610074002000530079007300740065006D002E0044006100740061002E00530071006C0043006C00690065006E0074002E00530071006C0043006F006D006D0061006E0064002E00520075006E004500780065006300750074006500520065006100640065007200540064007300280043006F006D006D0061006E0064004200650068006100760069006F007200200063006D0064004200650068006100760069006F0072002C002000520075006E004200650068006100760069006F0072002000720075006E004200650068006100760069006F0072002C00200042006F006F006C00650061006E002000720065007400750072006E00530074007200650061006D002C00200042006F006F006C00650061006E0020006100730079006E00630029000D000A00200020002000610074002000530079007300740065006D002E0044006100740061002E00530071006C0043006C00690065006E0074002E00530071006C0043006F006D006D0061006E0064002E00520075006E004500780065006300750074006500520065006100640065007200280043006F006D006D0061006E0064004200650068006100760069006F007200200063006D0064004200650068006100760069006F0072002C002000520075006E004200650068006100760069006F0072002000720075006E004200650068006100760069006F0072002C00200042006F006F006C00650061006E002000720065007400750072006E00530074007200650061006D002C00200053007400720069006E00670020006D006500740068006F0064002C002000440062004100730079006E00630052006500730075006C007400200072006500730075006C00740029000D000A00200020002000610074002000530079007300740065006D002E0044006100740061002E00530071006C0043006C00690065006E0074002E00530071006C0043006F006D006D0061006E0064002E0049006E007400650072006E0061006C0045007800650063007500740065004E006F006E00510075006500720079002800440062004100730079006E00630052006500730075006C007400200072006500730075006C0074002C00200053007400720069006E00670020006D006500740068006F0064004E0061006D0065002C00200042006F006F006C00650061006E002000730065006E00640054006F00500069007000650029000D000A00200020002000610074002000530079007300740065006D002E0044006100740061002E00530071006C0043006C00690065006E0074002E00530071006C0043006F006D006D0061006E0064002E0045007800650063007500740065004E006F006E0051007500650072007900280029000D000A002000200020006100740020004D006900630072006F0073006F00660074002E0049006E007400650072006E0061006C002E0045006E0074006500720070007200690073006500530074006F0072006100670065002E0044006C0073002E00440042002E00530071006C005200650074007200790043006F006D006D0061006E0064002E0045007800650063007500740065004E006F006E0051007500650072007900280029000D000A002000200020006100740020004D006900630072006F0073006F00660074002E0049006E007400650072006E0061006C002E0045006E0074006500720070007200690073006500530074006F0072006100670065002E0044006C0073002E005300630068006500640075006C00650072002E00530071006C004100670065006E007400480065006C007000650072002E004100640064004A006F006200280053007400720069006E00670020006A006F0062004E0061006D0065002C00200053007400720069006E00670020006A006F0062004F0077006E00650072002C00200053007400720069006E0067002000430061007400650067006F00720079004E0061006D00650029000D000A002000200020006100740020004D006900630072006F0073006F00660074002E0049006E007400650072006E0061006C002E0045006E0074006500720070007200690073006500530074006F0072006100670065002E0044006C0073002E005300630068006500640075006C00650072002E00530071006C004100670065006E007400480065006C007000650072002E00520065006700690073007400650072005300630068006500640075006C00650028005300630068006500640075006C00650020007300630068006500640075006C00650029000D000A002000200020006100740020004D006900630072006F0073006F00660074002E0049006E007400650072006E0061006C002E0045006E0074006500720070007200690073006500530074006F0072006100670065002E0044006C0073002E005300630068006500640075006C00650072002E00520065006700690073007400650072005300630068006500640075006C006500480065006C007000650072002E0050006500720066006F0072006D00440042004F007000650072006100740069006F006E00280029000D000A002000200020006100740020004D006900630072006F0073006F00660074002E0049006E007400650072006E0061006C002E0045006E0074006500720070007200690073006500530074006F0072006100670065002E0044006C0073002E005300630068006500640075006C00650072002E00520065006700690073007400650072005300630068006500640075006C006500480065006C007000650072002E0045007800650063007500740065002800530071006C0043006F006E0074006500780074002000730071006C0043006F006E00740065007800740029000D000A002000200020006100740020004D006900630072006F0073006F00660074002E0049006E007400650072006E0061006C002E0045006E0074006500720070007200690073006500530074006F0072006100670065002E0044006C0073002E005300630068006500640075006C00650072002E005300630068006500640075006C006500720049006D0070006C002E00520065006700690073007400650072002800530071006C0043006F006E0074006500780074002000730071006C0043006F006E0074006500780074002C00200053007400720069006E00670020007300630068006500640075006C00650058006D006C0029000D000A002000200020006100740020004D006900630072006F0073006F00660074002E0049006E007400650072006E0061006C002E0045006E0074006500720070007200690073006500530074006F0072006100670065002E0044006C0073002E0049006E00740065006E0074002E005300630068006500640075006C0065005400720061006E0073006C00610074006F0072002E004300720065006100740065005300630068006500640075006C00650044006500660069006E006900740069006F006E00280053007400720069006E00670020006A006F00620044006500660069006E006900740069006F006E00490064002C00200052006500630075007200720065006E006300650054007900700065005B005D0020007300630068006500640075006C00650052006500630075007200720061006E0063006500730029000D000A002000200020006100740020004D006900630072006F0073006F00660074002E0049006E007400650072006E0061006C002E0045006E0074006500720070007200690073006500530074006F0072006100670065002E0044006C0073002E0049006E00740065006E0074002E005300630068006500640075006C0065005400720061006E0073006C00610074006F0072002E005300630068006500640075006C0065004A006F00620044006500660069006E006900740069006F006E0028004A006F0062005400720061006E0073006C00610074006F00720020006A006F0062005400720061006E0073006C00610074006F00720029000D000A002000200020006100740020004D006900630072006F0073006F00660074002E0049006E007400650072006E0061006C002E0045006E0074006500720070007200690073006500530074006F0072006100670065002E0044006C0073002E0049006E00740065006E0074002E005300630068006500640075006C0065005400720061006E0073006C00610074006F0072002E005300630068006500640075006C0065005200650070006C00690063006100740069006F006E004A006F00620028004A006F0062005400720061006E0073006C00610074006F00720020006A006F0062005400720061006E0073006C00610074006F0072002C0020004200610063006B00750070005400790070006500540079007000650020006200610063006B007500700054007900700065002C00200042006F006F006C00650061006E0020007300630068006500640075006C0065004F006E006C00790046006F0072004100700070006C00690063006100740069006F006E00730029000D000A002000200020006100740020004D006900630072006F0073006F00660074002E0049006E007400650072006E0061006C002E0045006E0074006500720070007200690073006500530074006F0072006100670065002E0044006C0073002E0049006E00740065006E0074002E005300630068006500640075006C0065005400720061006E0073006C00610074006F0072002E005300630068006500640075006C006500440065006C00740061005200650070006C00690063006100740069006F006E004A006F006200280029000D000A002000200020006100740020004D006900630072006F0073006F00660074002E0049006E007400650072006E0061006C002E0045006E0074006500720070007200690073006500530074006F0072006100670065002E0044006C0073002E0049006E00740065006E0074002E00500072006F00740065006300740065006400470072006F00750070005400720061006E0073006C00610074006F0072002E005500700064006100740065004A006F00620044006500660069006E006900740069006F006E007300280029000D000A002000200020006100740020004D006900630072006F0073006F00660074002E0049006E007400650072006E0061006C002E0045006E0074006500720070007200690073006500530074006F0072006100670065002E0044006C0073002E0049006E00740065006E0074002E00500072006F00740065006300740065006400470072006F00750070005400720061006E0073006C00610074006F0072002E005400720061006E0073006C00610074006500470072006F0075007000280049004D0043006100740061006C006F0067005400790070006500200049004D0043006100740061006C006F00670058006D006C005000610073007300650064002C00200053007400720069006E006700200069006E00740065006E00740043006100740061006C006F00670058006D006C0029000D000A002000200020006100740020004D006900630072006F0073006F00660074002E0049006E007400650072006E0061006C002E0045006E0074006500720070007200690073006500530074006F0072006100670065002E0044006C0073002E0045006E00670069006E0065002E00430049006E00740065006E007400530065007200760069006300650073002E0043006F006E00660069006700750072006500500072006F00740065006300740065006400470072006F00750070002800550049006E007400310036002A002000620073007400720049004D0043006100740061006C006F00670058006D006C0029000D000A002000200020006100740020004D006900630072006F0073006F00660074002E0049006E007400650072006E0061006C002E0045006E0074006500720070007200690073006500530074006F0072006100670065002E0044006C0073002E0045006E00670069006E0065002E00430043006F0072006500530065007200760069006300650073002E0043006F006E00660069006700750072006500500072006F00740065006300740065006400470072006F00750070002800430043006F0072006500530065007200760069006300650073002A0020002C002000550049006E007400310036002A002000620073007400720049004D0043006100740061006C006F00670058006D006C002C0020007400610067005300410046004500410052005200410059002A002A00200065007800630065007000740069006F006E0052006500730075006C00740029003C002F0045007800630065007000740069006F006E00440065007400610069006C0073003E003C002F0046006100740061006C0053006500720076006900630065004500720072006F0072003E00</Binary>
      </EventData>
    </Event>
    Things I have tried:
    Changing username format as detailed here:
    http://blogs.technet.com/b/dpm/archive/2012/01/30/fix-the-dpm-console-crashes-and-logs-event-id-945-when-making-any-changes.aspx
    Reinstalling DPM 2012 SP1

    We eventually got this resolved through Microsoft support.
    The issue for us was entering the AD domain as the FQDN on install. Apparently DPM doesn't work if it is authenticating with FQDN\username.
    The fix is to change the following registry setting:
    HKLM\Software\Microsoft\Microsoft Data Protection Manager\Setup\SchedulerJobOwnerName
    To domain\username rather than domain.local\user (or [email protected], which also doesn't work). Alternatively, when you install DPM just put the netbios AD domain name rather than the FQDN.

Maybe you are looking for

  • SSO for partner applications

    Hi All, I have installed 10g AS Release 2 on a system. I also have Application Express(formerly HTML DB) installed on the same system. I registered one of the HTML DB applications as partner applications and have put SSO authentication for it. When I

  • How to get a cropped PDF to hold.

    Is there a way in Acrobat the crop a PDF and have a crop hold? I understand that cropping is actually masking but I need to have only the cropped area of a PDF show when placed in an InDesign document. Is there a way to accomplish this? I am using Ac

  • Launching scripts from windows task

    Hi group I need to launch some scripts from a Windows Task, they are included on .bat file but when I execute it, it only stay on the first line (SQL> connected). Please help sqlplus sys/********@MERIDIAN as sysdba; column date_column new_value today

  • Wireless Kernel Panics Fixed with Airport Update

    It has been 48 hours - not one kernel panic due to wirless. (and I have downloaded plenty of files, the first thing to trigger shutdown) My heart has sunk a few times when the LCD looked like the gray veil was about to drop, relief just web page chan

  • Want to use workflow ws20000075 to notify multiple Positions (HR org unit)

    We use workflow WS20000075,  in the config IMG 'Define Release Procedure for Purchase Order -> Workflow' , we assign agent HR Position to Release code.  The workflow ws20000075 works fine to send workflow notification to 1 Position - procurement mana