bamboo artifact to server

ahmer khan October 9, 2015

I have an issue with uploading .net application to the server. I am trying to run a power shell script but it keeps failing. I am new to this, can someone see what I am doing wrong?

Set-ExecutionPolicy RemoteSigned $UserName = 'SVC-ENT-c-WFA' ----------=> This is the Service Account Login

$Password = 'xxxxxxxx'                                                 -------------=> This is the Service account Password

$LocalFilePath = 'E:data/bamboo-home/artifacts/WA-ARMS1/shared'   -------------=> this is where the file I need Uploaded sits

$RemoteFileName = 'btsdedevwfa02/D:/Arms/Arms.exe'               -------------=> This is the server/Folder I need to file uploaded

$ServerName = 'server name-here'                            --------------=> This is where the software sits and Builds file/stores file I need uploaded

$webclient = New-Object System.Net.WebClient $webclient.Credentials = New-Object System.Net.NetworkCredential($UserName, $Password)

 

$file = Get-Item -Path $FilePath

$uri = New-Object System.Uri(“ftp://$ServerName/$($file.Name)”)

if ($Action -eq ‘Download’) {

$webclient.DownloadFile($uri, $FilePath)

} elseif ($Action -eq ‘Upload’) {

$webclient.UploadFile($uri, $FilePath)

1 answer

0 votes
Daniel Wester
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 9, 2015

I removed your password and server name from your code. You might want to reset the password on the service account - just in case the server was available on the public internet....

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events