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.

(Auto-migrated image: description temporarily unavailable)

Environment 

  • A Script Task in your plan requires running as a specific user other than the Bamboo user.

Solution

  1. 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.

  2. 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

  3. 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

Updated on March 10, 2025

Still need help?

The Atlassian Community is here for you.