Question : Best practice scenario in utilizing two LTO tape drives.

Hi All,

I've got two scsi LTO-3 and LTO-4 tape drive that I daisy chained to my BE 2010 media server, I want to know what is the best scenario / practice in utilizing this two tape drive with Backup Exec 2010.

Please share your thought or experience here.

Thanks

Answer : Best practice scenario in utilizing two LTO tape drives.


I have a (free) PowerShell module that can do this kind of thing.

http://code.msdn.microsoft.com/dnsshell

I need to do a few updates to make the easier, it's one of those things I intended it to be able to handle though.

It would go something like this, subject to testing, etc, etc.

Chris
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
$Zone = "domain.com"

Get-Dns $Zone -Transfer | 
    Select-Object -Expand Answer | 
    Where-Object { $_.Type -NotMatch "SOA|NS" } | 
    ForEach-Object {

  # See if the record already exists
  If ((Get-DnsRecord -Name $_.Name -Type $_.RecordType -Zone $Zone) -eq $Null) {
    Switch ($_.Type) {
      "A"     { New-DnsRecord -Name $_.Name -Address $_.IPAddress -RecordType A -Zone $Zone }
      "CNAME" { New-DnsRecord -Name $_.Name -Hostname $_.Hostname -RecordType CNAME -Zone $Zone }
    }
  }
}
Random Solutions  
 
programming4us programming4us