we are using power shell script to auto deploy SSAS cubes and the script is working fine with windows credentials when executed from windows powershell editor.
But when trying to execute the same from Bamboo, by default it is using some generic ID to deploy the cube which is throwing an error (issue with permissions)..
Could anyone help to pass windows credentials/specified credentials instead of bamboo default credentials for deployment.
Can you share the power script that you used to deploy to SSAS cubes including the part that you pass the credential?
Please find below the Powershell script..
Param(
$ServerInstance ="ServerName",
$path = "Bitbucket\bld-dir\path"
)
## Add the AMO namespace
$loadInfo = [Reflection.Assembly]::LoadWithPartialName("Microsoft.AnalysisServices")
$password = ConvertTo-SecureString “Password” -AsPlainText -Force
$Cred = New-Object System.Management.Automation.PSCredential (“Domain\Username”, $password)
$server = New-Object Microsoft.AnalysisServices.Server
$server.connect($ServerInstance)
Invoke-ASCmd -Server $ServerInstance -InputFile $path\File.xmla -Credential $Cred
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Kindly suggest the change to be done so that that deployment happens from bamboo with "Domain\UserName" and not with Bamboo default credentials. Thanks!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.