Hi,
I need to use the command QOperation.exe and others that are on the Commvault server under \ContentStore\Base .
How do I make them available on my remote server ?
Thanks for the help,
br
Hi,
I need to use the command QOperation.exe and others that are on the Commvault server under \ContentStore\Base .
How do I make them available on my remote server ?
Thanks for the help,
br
Best answer by christopherlecky
I have a powershell script that uses QOperation.exe to run restores and I have a requirement to be able to run it outside of the commvault box.
Hence my need to have these on the remote server.
Do it via rest. That will make your scripts portable.
You can do something like this :
$cvrestendpoint = "http://" + $cs + ":81/SearchSvc/CVWebService.svc"
$restParameters = @{# Variables for holding rest parameters for the request
URI = ""
Method = ""
Headers = @{"Authtoken" = $token;"Accept" = "application/json"}
body = ""
}
$newSubclientXML = '<?xml version="1.0" encoding="UTF-8" ?>
<root>
<App_CreateSubClientRequest>
<subClientProperties>
<subClientEntity>
<appName>'+$appname+'</appName>
<backupsetName>'+$backupsetName+'</backupsetName>
<clientName>'+$clientName+'</clientName>
<instanceName>'+$instanceName+'</instanceName>
<subclientName>'+$subclientName+'</subclientName>
</subClientEntity>
<contentOperationType>ADD</contentOperationType>
<commonProperties>
<numberOfBackupStreams>'+$numberOfBackupStreams+'</numberOfBackupStreams>
<storageDevice>
<dataBackupStoragePolicy>
<storagePolicyName>'+$storagePolicyName+'</storagePolicyName>
</dataBackupStoragePolicy>
</storageDevice>
</commonProperties>
<content>
<path>'+$path+'</path>
</content>
</subClientProperties>
</App_CreateSubClientRequest>
</root>'
try{ #Create Subclient
$restParameters.URI = $cvrestendpoint + "/Subclient/"
$restParameters.Headers.'Content-Type' = 'application/xml'
$restParameters.Method = "POST"
$restParameters.Body = $newSubclientXML
$result = Invoke-RestMethod @restParameters
$newsubclient = $result.response.entity
}
catch{
if($error[0].Exception.Response.StatusCode -eq "Conflict"){
write-host "Destination subclient ["$subclientName"] already exists"
}else{
write-host "Destination subclient ["$subclientName"] could not be created"}
}
This an analogous with the qoperation post api.
you would change the xml obviously and use this api
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.