How to run a PowerShell Script task with specific user account in Bamboo
Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.
Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Summary
Bamboo runs the Script tasks as the user account which Bamboo runs as. If you require to run a PowerShell Script task as a different user other than Bamboo you do not have a way to specify in the Script Task configuration.

Environment
A Script Task in your plan requires running as a specific user other than the Bamboo user.
Solution
Run remote agent as a different user: Run a remote agent on the Windows server as the user you would like to run the script as and run the build plan with that agent.
Run multiple agents as different users: Split the Plan into different stages and use different agent capabilities that may indicate which agent would run each task. This way, you can have agents running over different users and still have control over the same Plan
Run PowerShell Script: If you could run a PowerShell Script to switch to a different user and perform a command, you could use the same script in the Bamboo Script task
eg: PowerShell Script New-PSSession
1
2
3
4
5
6
7
8
$password = ConvertTo-SecureString $Env:bamboo_test_password -AsPlainText -Force
$username = $Env:bamboo_test_username
echo "Password From Bamboo variable ::: " $password
echo "Username From Bamboo variable ::: " $username
$Cred = New-Object System.Management.Automation.PSCredential ($username, $password)
echo $Cred
New-PSSession -Credential $Cred | Enter-PSSession
Was this helpful?