-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbin_installer.ps1
87 lines (84 loc) · 2 KB
/
bin_installer.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
function Invoke-DownloadFile{
[CmdletBinding()]
param(
[parameter(Mandatory,position=0)]
[string]
$Uri,
[parameter(Mandatory,position=1)]
[string]
$DownloadFolder,
[parameter(Mandatory,position=2)]
[string]
$FileName
)
begin
{
If (-not(Test-Path $DownloadFolder))
{
try
{
New-Item -ItemType Directory -Path $DownloadFolder -ErrorAction stop
}
catch
{
throw $_
}
}
try
{
$DownloadPath = Join-Path $DownloadFolder $FileName -ErrorAction Stop
}
catch
{
throw $_
}
}
process
{
Invoke-WebRequest -Uri $Uri -OutFile $DownloadPath -Verbose -PassThru
}
end
{
Get-Item $DownloadPath
}
}
$os = Get-WmiObject -Class Win32_OperatingSystem
if($os.OSarchitecture -match "64"){
if(Test-Path ".\tmp\bin.zip"){
Remove-Item ".\tmp\bin.zip" -Force
echo 前のTmpファイルがあったからな削除したで。
}else{
}
Invoke-DownloadFile -Uri "https://github.com/Takesikaityo/PocketMine_Bin_win_x64/archive/master.zip" -DownloadFolder "tmp\" -FileName "bin.zip"
if(Test-Path ".\bin"){
Remove-Item ".\bin" -Recurse
echo 前のBinファイルがあったからな削除したで。
}else{
}
if(Test-Path ".\PocketMine_Bin_win_x64-master"){
Remove-Item ".\PocketMine_Bin_win_x64-master" -Recurse
echo 前の一時展開ファイルがあったからな削除したで。
}else{
}
Expand-Archive ".\tmp\bin.zip" ".\"
Move-Item ".\PocketMine_Bin_win_x64-master\bin" ".\"
}else{
if(Test-Path ".\tmp\bin.zip"){
Remove-Item ".\tmp\bin.zip" -Recurse
echo 前のTmpファイルがあったからな削除したで。
}else{
}
Invoke-DownloadFile -Uri "https://github.com/Takesikaityo/PocketMine_Bin_win_x32/archive/master.zip" -DownloadFolder "tmp\" -FileName "bin.zip"
if(Test-Path ".\bin"){
Remove-Item ".\bin" -Recurse
echo 前のBinファイルがあったからな削除したで。
}else{
}
if(Test-Path ".\PocketMine_Bin_win_x32-master"){
Remove-Item ".\PocketMine_Bin_win_x32-master" -Recurse
echo 前の一時展開ファイルがあったからな削除したで。
}else{
}
Expand-Archive ".\tmp\bin.zip" ".\"
Move-Item ".\PocketMine_Bin_win_x32-master\bin" ".\"
}