Policy Storage Change Command
Hello Experts,
Pls let me know the command to change the Policy storage for mulitple policies as we need to change the storage of all the policies for Windows 7.6.0.1 Master Server.
Thanks,
You can change policy storage by following command.
bpplinfo policy_name -modify -residence storage_unit
I dont think you can do it for all policies in omne go .. you would need to script it.
A simple batch file to do this would be as follows....
Assuming a Windows Master (or media or remote admin console) and NBU installed to C:\Program Files\Veritas ...
Make a directory on the C drive named C:\polchange\
Make a file in there named polchange.bat
Right click this file and select edit then paste in the following .. changing the "robot-tld0-hcart3" to whatever you need it to be .. and if you need to change the volume pool you will need to add that change too (note that the the long command goes all on one line .. and dont miss out the speech marks)
Do test it somewhere first!!!
"C:\Program Files\veritas\netbackup\bin\admincmd\bppllist" > c:\polchange\list.txt
For /F %%a in (C:\polchange\list.txt) do "C:\program files\veritas\netbackup\bin\admincmd\bpplinfo" %%a -modify -residence robot-tld0-hcart3
pause