You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
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.
I'm happy to announce that Bamboo 7.2 has been released and it’s overflowing with awesome new features. This will be the last major Server release before the launch of Bamboo DC. Bamboo logs We...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.