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,557,331
Community Members
 
Community Events
184
Community Groups

cant run powershell script as a script task in deployment project

Edited

hi I am trying to deploy artifact.zip from Bamboo deployment project to azure webapp using rest api kudo method using below script

 

works fine in powershell ISE, but getting error on bamboo deplyment script task, please help

 

$ProgressPreference = "SilentlyContinue"
#get publish profile
$publishProfile = [Xml](Get-AzureRMWebAppPublishingProfile -ResourceGroupName HOxxx -Name HOxxxxx)
#Get Username
$userName = (Select-Xml -Xml $publishProfile -Xpath "//publishData/publishProfile[contains(@profileName,'Web Deploy')]/@userName").Node.Value
#Get Password
$password = (Select-Xml -Xml $publishProfile -Xpath "//publishData/publishProfile[contains(@profileName,'Web Deploy')]/@userPWD").Node.Value
#Encode userName and pwd to base64string
$base64AuthInfo = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes(("{0}:{1}" -f $userName, $password)))
#splat all parameters together in a param hast table
$param = @{
#deploy zip URL
Uri = “https://hoxxxxx.scm.azurewebsites.net/api/zipdeploy"
Headers = @{Authorization=("Basic {0}" -f $base64AuthInfo)}
UserAgent = "powershell/1.0"
Method = "POST"
#Deployment artifact path
Infile = "C:\Users\Sxxxxxxxx\xml-data\build-dir\HON-HON-JOB1\artifact.zip"
ContentType = "multipart/form-data"
}
#Invoke Rest call
Invoke-RestMethod @Param

 

error is:

The string is missing the terminator: ".

+ Invoke-RestMethod @param

ContentType = "multipart/form-data"

 

The hash literal was incomplete.

The hash literal was incomplete.
10-Jun-2021 20:17:26    + CategoryInfo          : ParserError: (:) [], ParseException
10-Jun-2021 20:17:26    + FullyQualifiedErrorId : TerminatorExpectedAtEndOfString

0 answers

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events