-
Notifications
You must be signed in to change notification settings - Fork 0
/
installer.ps1
103 lines (99 loc) · 2.89 KB
/
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
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
}
}
echo よー来たな。StarrySky インストーラーへようこそ。言語はオーサカ共和国語のみや。注意せいや。
echo StarrySkyインストールするで
if(Test-Path ".\tmp\src.zip"){
Remove-Item ".\tmp\src.zip" -Recurse
}else{
}
Invoke-DownloadFile -Uri "https://github.com/StarrySky-PE/StarrySky/archive/master.zip" -DownloadFolder ".\tmp\" -FileName "src.zip"
Expand-Archive ".\tmp\src.zip" ".\"
Move-Item ".\StarrySky-master\src" ".\" -Passthru
Move-Item ".\StarrySky-master\start.cmd" ".\" -Passthru
Move-Item ".\StarrySky-master\start.ps1" ".\" -Passthru
Remove-Item ".\StarrySky-master" -Recurse
$os = Get-WmiObject -Class Win32_OperatingSystem
if($os.OSarchitecture -match "64"){
echo このosは64bitです。
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" ".\" -Passthru
Remove-Item ".\PocketMine_Bin_win_x64-master" -Recurse
}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" ".\"
Remove-Item ".\PocketMine_Bin_win_x32-master" -Recurse
}