Questions tagged [pscp]

PuTTY Secure Copy client (pscp) is a command-line SCP client for transferring files securely between computers using an SSH connection.

PSCP documentation: https://the.earth.li/~sgtatham/putty/latest/htmldoc/Chapter5.html

120 questions
0
votes
0 answers

shell script not executing without errors

I wrote a shell script to copy a file from Windows directory to a remote Linux machine. I'm using cygwin to run the script. The script gets executed without any error. I'm using pscp to copy files, but the file is not being copied. Putty is…
mb_pravi
  • 23
  • 6
0
votes
1 answer

How do I use the right cipher with pscp.exe?

I have been using pscp to upload some files to a remote server but apparently they are updating the security so that only certain SFTP and MAC ciphers are allowed, but I'm not really a programmer so I don't know what this all entails. Right now I…
Sean Hill
  • 1,297
  • 1
  • 13
  • 21
0
votes
1 answer

How do I make my file copy script using pscp write logs?

I use pscp command to copy files but it does not write logs. Can anyone please suggest? Here is the syntax of the pcsp script: pscp C:\Users\jbsmith\directory\*.txt jbsmith@cheyenne.ucar.edu:/glade/u/home/$USER
Shivani Darshan
  • 71
  • 1
  • 3
  • 9
0
votes
1 answer

how to transfer folder from linux machine to windows

please suggest possible solution to transfer folder from Linux machine to windows machine. I have tried below command using PSCP but couldn't achieve anything. pscp -pw abc123 10.11.23.123:/opter/ss/* c:/user/other/ But I could see fatal error &…
0
votes
1 answer

What are common pscp command issues?

I am transferring files from Windows server to Unix server using pscp command. About 30% files are not getting transferred, I am not getting any specific error in the logs,apart from this: pscp: MP*.xml: No such file or directory What can be the…
0
votes
0 answers

Jenkins Java build is failing to execute Putty PSCP

I have a Java project that is being built remotely through Jenkins on a Windows server and running some Cucumber tests. Once the tests are finished running, I am creating a process to execute a Putty pscp command to transfer a file over to a linux…
TrollBearPig
  • 496
  • 1
  • 7
  • 17
0
votes
1 answer

How to transfer a file from Windows XP to a virtual machine inside vSphere 5.5?

I have a file on my desktop that I need to put onto one of the virtual machines, however when I search for solutions on how to do this many say to download third party software to do it, or to use drag and drop through vSphere. The issue is I am on…
david_10001
  • 492
  • 1
  • 6
  • 22
0
votes
0 answers

PSCP copy file from server to local ( from unknown sub folder)

I'm trying to copy a file from server to windows local using following command pscp.exe -pw Password User@Machinenumber:/temp/Subfolder1/FileName.txt C:\Users\Desktop Above command will copy FileName.txt from subfolder1 to desktop. Here my problem…
0
votes
0 answers

Converting mp4 file downloaded via youtube-dl from periscope by using ffmpeg gives error

This is command i have used to download from periscope by using latest youtube-dl youtube-dl -v periscopeurl Then i am running this command to convert it to a proper MP4 ffmpeg -i gg.mp4 -c:v libx264 -preset veryslow -crf 18 -c:a aac -b:a 192k…
Furkan Gözükara
  • 22,964
  • 77
  • 205
  • 342
0
votes
1 answer

pscp between linux and windows

I am trying to scp file(s) from window to linux. user is windows system, we are executing pscp from linux command Command used : pscp user@ip:source dest It shows : unable to identify source: permission denied If I use it in this way, pscp…
Jeet
  • 761
  • 3
  • 10
  • 27
0
votes
0 answers

pscp upload using vbs

I am attempting to create a function in VBScript that uploads a text file to a remote server using the pscp command. When I run the function, I receive the error 80070002 - The system cannot find the file specified. Below is the function, I was…
0
votes
1 answer

Transferring files from windows to linux box with pscp

I am trying to transfer a directory to a linux box I have set up. I use putty to ssh in and the prompt is open and working. I am trying to get a directory from my host computer(windows) on to the linux box which is open through putty. I have…
0
votes
1 answer

Debugging file transfer using pscp executed from PowerShell

I am trying to use PowerShell to send a file from a Windows 10 dev box to a CentOS 7 server across a local area network. When I run the following command from PowerShell in the Windows 10 dev box, Putty opens, but then closes before asking for…
CodeMed
  • 9,527
  • 70
  • 212
  • 364
0
votes
1 answer

Using domain user in PSCP command?

I use this command to copy file from Window to Linux with user "fred", it is successful pscp c:\temp\example-hosts.txt fred@10.53.x.x:/etc/hosts But if my user name is domain user, such as: domain\fred. I got the error: More than remote source…
taibc
  • 897
  • 2
  • 15
  • 39
0
votes
2 answers

VBA and Putty's pscp.exe when username includes @ characters

I have some VBA code which is using Putty's pscp.exe file for logging on Unix server. I am using Windows 7. The problem is that the username includes a @ character. I am not able to login if I use the following VBA code. So, how should I replace…
xms
  • 429
  • 5
  • 24