通过Powershell Remoting传输文件(如linux中的scp)

前端之家收集整理的这篇文章主要介绍了通过Powershell Remoting传输文件(如linux中的scp)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在创建一些基于Power Shell的部署脚本的过程中,我非常想念一种通过Powershell Remoting快速文件传输到另一台服务器(通过互联网)的简单方法,比如scp for linux.
幸运的是,可以通过Powershell Remoting激活一些东西.我忽视了什么吗?

解决方法

您可以使用Invoke-Command和Set-Content通过PSRemoting会话轻松地通过线上复制文件内容
$Session = New-PSSession -ComputerName "remotehost.domain.tld" -Credential (Get-Credential) -UseSsl

$FileContents = Get-Content -Path 'C:\path\to\arbitrary.file'
Invoke-Command -Session $Session -ScriptBlock {
    param($FilePath,$data)
    Set-Content -Path $FilePath -Value $data
} -ArgumentList "C:\remote\file\path.file",$FileContents
原文链接:https://www.f2er.com/linux/396099.html

猜你在找的Linux相关文章