代码拉取完成,页面将自动刷新
同步操作将从 chuanjiao10/kasini3000 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#Requires -Modules winscp
param
(
[parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[Alias("ipaddress")][String]$目的ip地址,
[Alias("port")][uint16]$端口 = 22,
[ValidateNotNullOrEmpty()]
[Alias("user")][String]$用户名 = 'root',
[parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[Alias("pwd")][String]$密码,
[parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[String]$LiteralPath, # /开头,默认覆盖,默认连同子目录。支持通配符 *。支持中文目录名,支持中文文件名。
[parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[String]$Destination #
)
if ($IsLinux -eq $True)
{
Write-Error "错误:不支持linux"
exit 1
}
if ($LiteralPath[0] -eq '/')
{
}
else
{
Write-Error "错误:源路径,请使用绝对目录。退出码2"
exit 2
}
if (Test-Path -LiteralPath $Destination)
{
}
else
{
Write-Error "错误:找不到目标路径。退出码3"
exit 3
}
if ( ($IsWindows -eq $True) -or ($PSVersionTable.psversion.major -lt 6) ) #win
{
[string]$temp001 = ssh.exe -V *>&1
if (-not ($temp001.ToLower().Contains('ssh'.ToLower())) )
{
Write-Error '管理linux被控机,需要ssh.exe。请运行【zkj_install_k记饭店_win主控机.ps1】'
exit 23
}
$端口通了 = & 'c:\ProgramData\kasini3000\tcp--ping-v2.ps1' -MyComputerName $目的ip地址 -port $端口 -Quiet
if ($端口通了 -eq $true)
{
}
else
{
if ($env:LANG -eq 'zh_CN.UTF-8')
{
Write-Error "错误:被控机端口不通。错误码24"
}
else
{
Write-Error "error:node port cloesd.exit 24"
}
exit 24
}
Write-Verbose '使用ssh密码,连接开始'
Import-Module -Name WinSCP -ErrorAction Stop
$用户密码密文 = ConvertTo-SecureString $密码 -AsPlainText -Force
$我的登陆凭据 = New-Object System.Management.Automation.PSCredential ($用户名,$用户密码密文)
$sftp连接参数 = New-WinSCPSessionOption -Protocol Sftp -HostName $目的ip地址 -Credential $我的登陆凭据
$指纹 = Get-WinSCPHostKeyFingerprint -SessionOption $sftp连接参数 -Algorithm SHA-256
$sftp连接参数.SshHostKeyFingerprint = $指纹
$private:连接81 = New-WinSCPSession -SessionOption $sftp连接参数
if ($private:连接81 -eq $null)
{
Write-Error "使用ssh密码,在${目的ip地址}上连接失败。退出码31"
exit 31
}
else
{
$密码连接成功 = $true
Write-Verbose '使用ssh密码,连接成功。'
}
if ($密码连接成功 -eq $true)
{
Write-Verbose '用winscp+密码,复制主文件到被控机,命令开始。'
# $权限600 = New-WinSCPTransferOption -FilePermissions (New-WinSCPItemPermission -Octal 600)
Receive-WinSCPItem -RemotePath $LiteralPath -LocalPath $Destination -WinSCPSession $private:连接81
Write-Verbose '用winscp+密码,复制主文件到被控机,命令完成。'
Remove-WinSCPSession -WinSCPSession $private:连接81
}
}
exit 0
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。