通过PSSession发送文件

时间:2012-05-17 11:51:51

标签: powershell winrm

我只是花了几个小时寻找一个通过活动的PSSession发送文件的解决方案。结果是nada,niente。我正在尝试通过活动会话在远程计算机上调用命令,该活动会话应从网络存储中复制某些内容。所以,基本上就是这样:

icm -Session $s {
Copy-Item $networkLocation $PCLocation }

由于“第二跳”问题,我不能直接这样做,因为我正在运行win server 2003,我无法启用CredSSP。我可以先将文件复制到我的电脑然后发送/推送到远程机器,但是如何?我尝试了 PModem ,但正如我所看到的,它只能提取数据而不是推送。

任何帮助都是适用的。

5 个答案:

答案 0 :(得分:37)

现在可以在PowerShell / WMF 5.0中使用

Copy-Item包含-FromSession-toSession个参数。您可以使用其中一个并传入会话变量。

例如

$cs = New-PSSession -ComputerName 169.254.44.14 -Credential (Get-Credential) -Name SQL
Copy-Item Northwind.* -Destination "C:\Program Files\Microsoft SQL Server\MSSQL10_50.SQL2008R2\MSSQL\DATA\" -ToSession $cs

https://richardspowershellblog.wordpress.com/2015/05/28/copy-files-over-ps-remoting-sessions/

上查看更多示例

答案 1 :(得分:20)

如果是小文件,您可以将文件内容和文件名作为参数发送。

$f="the filename"
$c=Get-Content $f
invoke-command -session $s -script {param($filename,$contents) `
     set-content -path $filename -value $contents} -argumentlist $f,$c

如果文件太长而无法满足会话的限制,您可以将文件作为块读取,并使用类似的技术将它们一起附加到目标位置

答案 2 :(得分:2)

前一段时间我遇到了同样的问题,并通过PS Remoting会话发送了一个概念验证文件。你会在这里找到这个剧本:

https://gist.github.com/791112

#requires -version 2.0

[CmdletBinding()]
param (
    [Parameter(Mandatory=$true)]
    [string]
    $ComputerName,

    [Parameter(Mandatory=$true)]
    [string]
    $Path,

    [Parameter(Mandatory=$true)]
    [string]
    $Destination,

    [int]
    $TransferChunkSize = 0x10000
)

function Initialize-TempScript ($Path) {
    "<# DATA" | Set-Content -Path $Path 
}

function Complete-Chunk () {
@"
DATA #>
`$TransferPath = `$Env:TEMP | Join-Path -ChildPath '$TransferId'
`$InData = `$false
`$WriteStream = [IO.File]::OpenWrite(`$TransferPath)
try {
    `$WriteStream.Seek(0, 'End') | Out-Null
    `$MyInvocation.MyCommand.Definition -split "``n" | ForEach-Object {
        if (`$InData) {
            `$InData = -not `$_.StartsWith('DATA #>')
            if (`$InData) {
                `$WriteBuffer = [Convert]::FromBase64String(`$_)
                `$WriteStream.Write(`$WriteBuffer, 0, `$WriteBuffer.Length)
            }
        } else {
            `$InData = `$_.StartsWith('<# DATA')
        }
    }
} finally {
    `$WriteStream.Close()
}
"@
}

function Complete-FinalChunk ($Destination) {
@"
`$TransferPath | Move-Item -Destination '$Destination' -Force
"@
}

$ErrorActionPreference = 'Stop'
Set-StrictMode -Version Latest

$EncodingChunkSize = 57 * 100
if ($EncodingChunkSize % 57 -ne 0) {
    throw "EncodingChunkSize must be a multiple of 57"
}

$TransferId = [Guid]::NewGuid().ToString()


$Path = ($Path | Resolve-Path).ProviderPath
$ReadBuffer = New-Object -TypeName byte[] -ArgumentList $EncodingChunkSize

$TempPath = ([IO.Path]::GetTempFileName() | % { $_ | Move-Item -Destination "$_.ps1" -PassThru}).FullName
$Session = New-PSSession -ComputerName $ComputerName
$ReadStream = [IO.File]::OpenRead($Path)

$ChunkCount = 0
Initialize-TempScript -Path $TempPath 

try {
    do {
        $ReadCount = $ReadStream.Read($ReadBuffer, 0, $EncodingChunkSize)
        if ($ReadCount -gt 0) {
            [Convert]::ToBase64String($ReadBuffer, 0, $ReadCount, 'InsertLineBreaks') |
                Add-Content -Path $TempPath
        }
        $ChunkCount += $ReadCount
        if ($ChunkCount -ge $TransferChunkSize -or $ReadCount -eq 0) {
            # send
            Write-Verbose "Sending chunk $TransferIndex"
            Complete-Chunk | Add-Content -Path $TempPath
            if ($ReadCount -eq 0) {
                Complete-FinalChunk -Destination $Destination | Add-Content -Path $TempPath
                Write-Verbose "Sending final chunk"
            }
            Invoke-Command -Session $Session -FilePath $TempPath 

            # reset
            $ChunkCount = 0
            Initialize-TempScript -Path $TempPath 
        }
    } while ($ReadCount -gt 0)
} finally {
    if ($ReadStream) { $ReadStream.Close() }
    $Session | Remove-PSSession
    $TempPath | Remove-Item
}

一些小的改动将允许它接受一个会话作为参数而不是它开始一个新的参数。我发现在传输大文件时,目标计算机上的远程处理服务的内存消耗可能会变得非常大。我怀疑PS Remoting并没有真正被设计成以这种方式使用。

答案 3 :(得分:1)

NET USE 允许您为远程系统添加本地驱动器号,然后允许您使用PSSession中的驱动器号,或者即使没有PSSession。如果你没有Powershell v5.0,即使你没有,也很有用,

您可以将远程计算机名称或其IP地址用作远程UNC路径的一部分,并且可以在同一行上指定用户名和密码凭据:

    NET USE Z: \\192.168.1.50\ShareName /USER:192.168.1.50\UserName UserPassword  

另一个例子:

    NET USE Z: \\RemoteSystem\ShareName /USER:RemoteSystem\UserName UserPassword  

OR

    NET USE Z: \\RemoteSystem\ShareName /USER:Domain\UserName UserPassword  

如果您未在同一行提供用户凭据,系统会提示您输入凭据:

>NET USE Z: \\192.168.1.50\ShareName
Enter the user name for '192.168.1.50': 192.168.1.50\UserName
Enter the password for 192.168.1.50: *****
The command completed successfully.

您可以在完成以下操作后删除驱动器号:

    NET USE Z: /delete

您可以使用NET USE /获得完整语法吗?

>net use /?
The syntax of this command is:

NET USE
[devicename | *] [\\computername\sharename[\volume] [password | *]]
        [/USER:[domainname\]username]
        [/USER:[dotted domain name\]username]
        [/USER:[username@dotted domain name]
        [/SMARTCARD]
        [/SAVECRED]
        [[/DELETE] | [/PERSISTENT:{YES | NO}]]

NET USE {devicename | *} [password | *] /HOME

NET USE [/PERSISTENT:{YES | NO}]  

NET是系统文件夹中的标准外部.exe命令,可以在Powershell中正常工作。

答案 4 :(得分:0)

$data = Get-Content 'C:\file.exe' -Raw
Invoke-Command -ComputerName 'server' -ScriptBlock { $using:data | Set-Content -Path 'D:\filecopy.exe' }

实际上并不知道最大文件大小限制是什么。