Posts

Showing posts from July, 2015

Going old school with CommVault Simpana Data Interface Pairs

Image
Ok, today I had to go a little old school with CommVault. My quest, to add the new media servers to the Data Interface Pairs for some clients. I tried passing parameters, and either I was doing it wrong, or something didn't like the parameters. So OLD SCHOOL here we come.... The command line is   qoperation execscript -sn DataInterfacePairConfig -si add -si CLIENTNAME -si CLIENTIP -si tb-MEDIASERVERNAME -si MEDIASERVERIP Now I've seen this in other forums with the media server listed first and the client second. But after adding one manually that way, I noticed it was listed backwards from the way CommVault listed it when entered through the GUI. Note that you must specify both the NAME and IP of the Client and the Media Server So in my example : qoperation execscript -sn DataInterfacePairConfig -si add -si fileserv1 -si 192.168.5.10 -si cvmedia1 -si 192.168.5.2 Now for me... I created a batch script to run in this window called addpairs.bat simply listing all t...

Old School Export Local Group

Almost forgot some old school stuff I needed to export the Administrators group on a local server.... net localgroup Administrators > C:\temp\group.txt Dont forget the Temp directory must exist :-)