Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,555,575
Community Members
 
Community Events
184
Community Groups

using Bamboo password variable to connect remote machine via powershell script

I am trying to connect to remote machine using powershell to copy files/ install app on the remote server from bamboo agent. It works fine when I hard-code the password in the PS script but when I use bamboo variable it doesn't work as expected. Can someone point me in the right direction ?

 

I am using script to set up pipeline 

Script

$username = "domain\Account"; 
$stringpassword = "Password"; # Works as expected
#$stringpassword = ${bamboo.Password}; #Doesn't connect to remote machine
$password=ConvertTo-SecureString -String $stringpassword -AsPlainText -Force;

New-Item -Force -Path "D:\Apps\TestFile.txt"
Add-Content "D:\Apps\TestFile.txt" -value "test_plain";


$pscred = New-Object System.Management.Automation.PSCredential -ArgumentList $username, $password;
$Session = New-PSSession -Name "Test" -ComputerName "Remote Server" -Credential $pscred;
$File = [System.IO.File]::ReadAllBytes("D:\Apps\TestFile.txt");
Invoke-Command -Session $Session -ArgumentList $File -ScriptBlock{[System.IO.File]::WriteAllBytes("E:\Apps\test1.txt", $args)};
Get-PSSession -ComputerName "Remote Server"|Where-Object{$_.Name -eq "Test"} | Remove-PSSession;

  

1 answer

1 accepted

1 vote
Answer accepted
Jimmy Seddon
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Apr 06, 2020

Hi @Premlme,

I would be wrapping the Bamboo variable in in quotes the same way  you were when hard-coding the password.  Bamboo does some weird things when passing strings around in variables.

$stringpassword = "${bamboo.Password}"; #Doesn't connect to remote machine

Give that a try and see if it helps.

-Jimmy

@Jimmy Seddon , It's working, its working !!! Thanks a lot, have been stuck here for a day or so. Thanks a ton for your prompt reply , cheers.

Like Jimmy Seddon likes this
Jimmy Seddon
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Apr 06, 2020

I'm glad you were able to get past that!

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events