You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.