Quantcast
Channel: Data Protection Manager | NORMAN BAUER
Viewing all articles
Browse latest Browse all 15

How to get the number of volumes used by DPM 2010?

$
0
0

Just a quick hit that tells you how many volumes Microsoft Data Protection Manager uses. I got 848…

$dpmserver = $env:computername  #localhost or type your dpm server's name here 
$dpmdisks = get-dpmdisk -dpmservername $dpmserver
$volumecount = 0
$dpmdisks | ForEach-Object {
  $volumecount += $_.VolumeCount
}
$volumecount

Viewing all articles
Browse latest Browse all 15

Trending Articles