How could i upload a log file from my local system to a webpage (http://abc..) using powershell script? Thanks in advance
1 Answer
If you are using HTTP, try something like this:
$sourceFilePath = "c:\MyLocalFolder\LocalLogFileName.log"
$siteAddress = "http://192.168.15.12/DestinationFolder"
$urlDest = "{0}/{1}" -f ($siteAddress, "DestinationLogFileName.log";
$webClient = New-Object System.Net.WebClient;
$webClient.Credentials = New-Object System.Net.NetworkCredential("MyUserName", "MyPassword");
("*** Uploading {0} file to {1} ***" -f ($sourceFilePath, $siteAddress) ) | write-host -ForegroundColor Green -BackgroundColor Yellow
$webClient.UploadFile($urlDest, "PUT", $sourceFilePath);
3 Comments
sirdank
Care to elaborate for HTTPS?
irl_irl
Is it the same for HTTPS?
I run this script and I got this error Exception calling "UploadFile" with "3" argument(s): "The remote server returned an error: (503) Server Unavailable."At C:\ABCDEF-documents\upload-file.ps1:36 char:13 + $webClient.UploadFile($urlDest, "PUT", $sourceFilePath); any clue how to solve it