代码拉取完成,页面将自动刷新
同步操作将从 chuanjiao10/kasini3000 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#建议保存编码为:bom头 + utf8
param
(
# [parameter(Mandatory = $true)]
# [ValidateNotNullOrEmpty()]
# [Alias("user")][String]$用户名,
# [parameter(Mandatory = $true)]
# [ValidateNotNullOrEmpty()]
# [Alias("pwd")][String]$密码,
[parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[String]$FilePath,
[parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[String]$httpDPath
#[String]$httpDPath = 'http://127.0.0.1:8888/?upload' # http://1.2.3.4:8888
)
if ( ($httpDPath -match '^http://') -or ($httpDPath -match '^https://') )
{
}
else
{
Write-Error "错误:目标路径错误。http://1.2.3.4:8888。退出码2"
exit 2
}
$temp99 = $httpDPath.Split(':')
if ($temp99.Length -eq 3)
{
[String]$目的ip地址 = $temp99[1].Trim('/')
[uint16]$端口 = $temp99[2].split('/')[0] -as [uint16]
# $目的ip地址
# $端口
}
else
{
Write-Error "错误:必须输入httpd端口。http://1.2.3.4:8888。退出码4"
exit 4
}
if (Test-Path -LiteralPath $FilePath.Trim())
{
}
else
{
Write-Error "错误:找不到源文件,或源路径。退出码3"
exit 3
}
$端口通了 = & 'c:\ProgramData\kasini3000\tcp--ping-v5.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
}
Try
{
Add-Type -AssemblyName 'System.Net.Http'
$client = New-Object System.Net.Http.HttpClient
$content = New-Object System.Net.Http.MultipartFormDataContent
$fileStream = [System.IO.File]::OpenRead($filePath)
$fileName = [System.IO.Path]::GetFileName($filePath)
$fileContent = New-Object System.Net.Http.StreamContent($fileStream)
$content.Add($fileContent, 'file', $fileName)
$result = $client.PostAsync($httpDPath, $content).Result
$result.EnsureSuccessStatusCode()
}
Catch
{
Write-Error $_
if ($env:LANG -eq 'zh_CN.UTF-8')
{
Write-Error "错误:文件上传失败。错误码1"
}
else
{
Write-Error "error:File upload failed.exit 1"
}
exit 1
}
Finally
{
if ($client -ne $null)
{
$client.Dispose()
}
if ($content -ne $null)
{
$content.Dispose()
}
if ($fileStream -ne $null)
{
$fileStream.Dispose()
}
if ($fileContent -ne $null)
{
$fileContent.Dispose()
}
}
exit 0
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。