Skip to content

chaliy/psremotefiles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

PsRemoteFiles

Utility to copy local file to remote computer using PowerShell Remoting

Features

  1. Copy any file to remote computer
  2. Support PowerShell Remoting Sessions

Warning

Right now tool is pretty dumb, so it loads content of the file at least two times on client and then two times on server. This will be improved leter.

Examples

To copy file Tests.ps1 to the Docmuents folder of the User01 on computer Comp1

copy-remoteItem Tests.ps1 -Credential "Comp1\User01" -ComputerName "Comp1"

You can also use sessions

$session = new-pssession -Credential "Comp1\User01" -ComputerName "Comp1"
copy-remoteitem Tests.ps1 -Session $session

Installation

With PsGet run:

Install-Module -ModuleUrl https://raw.github.com/chaliy/psremotefiles/master/PsRemoteFiles/PsRemoteFiles.psm1

Roadmap

Roadmap is not sorted in any order. This is just list what is think should be done.

  1. Transfer files by chancks
  2. Specify path on remote computer
  3. Add more remote connection options
  4. Add pregress indication
  5. Add support to download files from remote computer

About

Stuff to help to copy file to remote computer

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published