First you need to make sure that there are no valid images on the tape that you want. NetBackup\bin\admincmd\bpimmedia -mediaid -L If there are no images that you need, expire the tape: NetBackup\bin\admincmd\bpexpdate -m -d 0 -host -force This expires the images in the media database which resides specifically on the media server. Verify that [...]

Continue reading about Netbackup – How do I expire, delete tapes from the database?

xuming on July 1st, 2007

Use this Windows Powershell script to retrieve information about the current domain. Copy and paste the following script (between the lines) into Notepad, making sure to have Word Wrap disabled, then save it with a .ps1 extension. ==================== $strComputer = "." $colItems = get-wmiobject -class "Win32_NTDomain" -namespace "root\CIMV2" `-computername $strComputer foreach ($objItem in $colItems) {write-host [...]

Continue reading about Get Information from the Domain