Add a script for installing ASUS packages
This commit is contained in:
parent
bed24acbe3
commit
181426ee41
|
@ -58,6 +58,32 @@ $null = New-Module {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Installs a package downloaded from ASUS.
|
||||||
|
|
||||||
|
.PARAMETER URL
|
||||||
|
The URL to download the package from.
|
||||||
|
#>
|
||||||
|
function Install-AsusPackage {
|
||||||
|
param(
|
||||||
|
[string] $URL
|
||||||
|
)
|
||||||
|
|
||||||
|
$file = "AsusPackage.zip";
|
||||||
|
$dir = New-TemporaryDirectory;
|
||||||
|
$unpackDir = New-TemporaryDirectory;
|
||||||
|
|
||||||
|
$null = Push-Location $dir;
|
||||||
|
Invoke-WebRequest $URL -OutFile $file;
|
||||||
|
Expand-Archive $file $unpackDir;
|
||||||
|
$null = Pop-Location;
|
||||||
|
Remove-Item -Recurse $dir;
|
||||||
|
|
||||||
|
$null = Start-Process -Wait -WorkingDirectory $unpackDir -FilePath (Join-Path $unpackDir "AsusSetup.exe") -ArgumentList "/S";
|
||||||
|
Remove-Item -Recurse $unpackDir;
|
||||||
|
}
|
||||||
|
|
||||||
function Start-SoftwareInstaller {
|
function Start-SoftwareInstaller {
|
||||||
param(
|
param(
|
||||||
[string] $Name,
|
[string] $Name,
|
||||||
|
|
Loading…
Reference in a new issue