Add OSFMount
This commit is contained in:
parent
bbdef56df2
commit
e388b77639
2 changed files with 19 additions and 0 deletions
|
|
@ -191,6 +191,19 @@ function Extract-SourceFiles {
|
||||||
Write-Host (" ERROR: Failed to extract files." ) -ForegroundColor "Red"
|
Write-Host (" ERROR: Failed to extract files." ) -ForegroundColor "Red"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# OSFMount
|
||||||
|
Write-Host "Extracting: OSFMount"
|
||||||
|
try {
|
||||||
|
$ArgumentList = @(
|
||||||
|
"x", "$BuildDir\downloads\osfmount.7z", "-o`"$ProgramFilesPE`"\OSFMount",
|
||||||
|
"-aoa", "-bso0", "-bse0", "-bsp0")
|
||||||
|
Start-Process -FilePath $SevenZip -ArgumentList $ArgumentList -NoNewWindow -Wait
|
||||||
|
}
|
||||||
|
catch {
|
||||||
|
Write-Host (" ERROR: Failed to extract files." ) -ForegroundColor "Red"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
# wimlib
|
# wimlib
|
||||||
Write-Host "Extracting: wimlib"
|
Write-Host "Extracting: wimlib"
|
||||||
try {
|
try {
|
||||||
|
|
|
||||||
|
|
@ -23,6 +23,12 @@
|
||||||
"Name": "ntpwedit.zip",
|
"Name": "ntpwedit.zip",
|
||||||
"Url": "http://cdslow.org.ru/files/ntpwedit/ntpwed07.zip"
|
"Url": "http://cdslow.org.ru/files/ntpwedit/ntpwed07.zip"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"Item": "OSFMount",
|
||||||
|
"Hash": "059B3F45902DF6FD6A7473ECDDAC3B16A73B49817F1FC85F118E6701F2493AC8",
|
||||||
|
"Name": "osfmount.7z",
|
||||||
|
"Url": "https://nextcloud.2shirt.work/s/2jA74iK2TdQKnSe/download/OSFMount.7z"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"Item": "wimlib",
|
"Item": "wimlib",
|
||||||
"Hash": "6d99e242bfbc6d36fc987d433d63772180551b7f2d8de43e9561535a3e2c16d8",
|
"Hash": "6d99e242bfbc6d36fc987d433d63772180551b7f2d8de43e9561535a3e2c16d8",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue