2024-04-03 16:17:11 +02:00
# This file is part of MagiskOnWSALocal.
#
# MagiskOnWSALocal is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# MagiskOnWSALocal is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with MagiskOnWSALocal. If not, see <https://www.gnu.org/licenses/>.
#
# Copyright (C) 2024 LSPosed Contributors
#
$Host . UI . RawUI . WindowTitle = " Installing MagiskOnWSA.... "
function Test-Administrator {
[ OutputType ( [ bool ] ) ]
param ( )
process {
[ Security.Principal.WindowsPrincipal ] $user = [ Security.Principal.WindowsIdentity ] :: GetCurrent ( ) ;
return $user . IsInRole ( [ Security.Principal.WindowsBuiltinRole ] :: Administrator ) ;
}
}
function Get-InstalledDependencyVersion {
param (
[ string ] $Name ,
[ string ] $ProcessorArchitecture
)
PROCESS {
If ( $null -Ne $ProcessorArchitecture ) {
return Get-AppxPackage -Name $Name | ForEach-Object { if ( $_ . Architecture -Eq $ProcessorArchitecture ) { $_ } } | Sort-Object -Property Version | Select-Object -ExpandProperty Version -Last 1 ;
}
}
}
2024-04-07 14:09:55 +02:00
Function Check-Windows11 {
RETURN ( Get-ComputerInfo | Select-Object -expand OsName ) -match 11
}
2024-04-03 16:17:11 +02:00
Function Test-CommandExist {
Param ( $Command )
$OldPreference = $ErrorActionPreference
$ErrorActionPreference = 'stop'
try { if ( Get-Command $Command ) { RETURN $true } }
Catch { RETURN $false }
Finally { $ErrorActionPreference = $OldPreference }
} #end function Test-CommandExist
Function Finish {
Clear-Host
Start-Process " wsa://com.topjohnwu.magisk "
Start-Process " wsa://com.android.vending "
}
2024-04-07 15:25:24 +02:00
If ( ( Check-Windows11 ) -And ( Test-CommandExist 'pwsh.exe' ) ) {
2024-04-03 16:17:11 +02:00
$pwsh = " pwsh.exe "
2024-04-07 14:09:55 +02:00
} Else {
2024-04-03 16:17:11 +02:00
$pwsh = " powershell.exe "
}
If ( -Not ( Test-Administrator ) ) {
Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Bypass -Force
$Proc = Start-Process -PassThru -Verb RunAs $pwsh -Args " -ExecutionPolicy Bypass -Command Set-Location ' $PSScriptRoot '; &' $PSCommandPath ' EVAL "
If ( $null -Ne $Proc ) {
$Proc . WaitForExit ( )
}
If ( $null -Eq $Proc -Or $Proc . ExitCode -Ne 0 ) {
Write-Warning " Failed to launch start as Administrator `r `n Press any key to exit "
$null = $Host . UI . RawUI . ReadKey ( 'NoEcho,IncludeKeyDown' ) ;
}
exit
}
ElseIf ( ( $args . Count -Eq 1 ) -And ( $args [ 0 ] -Eq " EVAL " ) ) {
Start-Process $pwsh -NoNewWindow -Args " -ExecutionPolicy Bypass -Command Set-Location ' $PSScriptRoot '; &' $PSCommandPath ' "
exit
}
$FileList = Get-Content -Path . \ filelist . txt
If ( ( ( Test-Path -Path $FileList ) -Eq $false ) . Count ) {
Write-Error " Some files are missing in the folder. Please try to build again. Press any key to exit "
$null = $Host . UI . RawUI . ReadKey ( 'NoEcho,IncludeKeyDown' )
exit 1
}
If ( ( ( Test-Path -Path " MakePri.ps1 " ) -And ( Test-Path -Path " makepri.exe " ) ) -Eq $true ) {
$ProcMakePri = Start-Process $pwsh -PassThru -NoNewWindow -Args " -ExecutionPolicy Bypass -File MakePri.ps1 " -WorkingDirectory $PSScriptRoot
$null = $ProcMakePri . Handle
$ProcMakePri . WaitForExit ( )
If ( $ProcMakePri . ExitCode -Ne 0 ) {
Write-Warning " Failed to merge resources, WSA Seetings will always be in English `r `n Press any key to continue "
$null = $Host . UI . RawUI . ReadKey ( 'NoEcho,IncludeKeyDown' )
}
$Host . UI . RawUI . WindowTitle = " Installing MagiskOnWSA.... "
}
reg add " HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock " / t REG_DWORD / f / v " AllowDevelopmentWithoutDevLicense " / d " 1 "
# When using PowerShell which is installed with MSIX
# Get-WindowsOptionalFeature and Enable-WindowsOptionalFeature will fail
# See https://github.com/PowerShell/PowerShell/issues/13866
if ( $PSHOME . contains ( " 8wekyb3d8bbwe " ) ) {
Import-Module DISM -UseWindowsPowerShell
}
If ( $ ( Get-WindowsOptionalFeature -Online -FeatureName 'VirtualMachinePlatform' ) . State -Ne " Enabled " ) {
Enable-WindowsOptionalFeature -Online -NoRestart -FeatureName 'VirtualMachinePlatform'
Write-Warning " Need restart to enable virtual machine platform `r `n Press y to restart or press any key to exit "
$Key = $Host . UI . RawUI . ReadKey ( 'NoEcho,IncludeKeyDown' )
If ( " y " -Eq $Key . Character ) {
Restart-Computer -Confirm
}
Else {
exit 1
}
}
[ xml ] $Xml = Get-Content " .\AppxManifest.xml " ;
$Name = $Xml . Package . Identity . Name ;
Write-Output " Installing $Name version: $( $Xml . Package . Identity . Version ) "
$ProcessorArchitecture = $Xml . Package . Identity . ProcessorArchitecture ;
$Dependencies = $Xml . Package . Dependencies . PackageDependency ;
$Dependencies | ForEach-Object {
$InstalledVersion = Get-InstalledDependencyVersion -Name $_ . Name -ProcessorArchitecture $ProcessorArchitecture ;
If ( $InstalledVersion -Lt $_ . MinVersion ) {
If ( $env:WT_SESSION ) {
$env:WT_SESSION = $null
Write-Output " Dependency should be installed but Windows Terminal is in use. Restarting to conhost.exe "
Start-Process conhost . exe -Args " powershell.exe -ExecutionPolicy Bypass -Command Set-Location ' $PSScriptRoot '; &' $PSCommandPath ' "
exit 1
}
Write-Output " Dependency package $( $_ . Name ) $ProcessorArchitecture required minimum version: $( $_ . MinVersion ) . Installing.... "
Add-AppxPackage -ForceApplicationShutdown -ForceUpdateFromAnyVersion -Path " $( $_ . Name ) _ $ProcessorArchitecture .appx "
}
Else {
Write-Output " Dependency package $( $_ . Name ) $ProcessorArchitecture current version: $InstalledVersion . Nothing to do. "
}
}
$Installed = $null
$Installed = Get-AppxPackage -Name $Name
If ( ( $null -Ne $Installed ) -And ( -Not ( $Installed . IsDevelopmentMode ) ) ) {
Write-Warning " There is already one installed WSA. Please uninstall it first. `r `n Press y to uninstall existing WSA or press any key to exit "
$key = $Host . UI . RawUI . ReadKey ( 'NoEcho,IncludeKeyDown' )
If ( " y " -Eq $key . Character ) {
Clear-Host
Remove-AppxPackage -Package $Installed . PackageFullName
}
Else {
exit 1
}
}
If ( Test-CommandExist WsaClient ) {
Write-Output " Shutting down WSA.... "
Start-Process WsaClient -Wait -Args " /shutdown "
}
Stop-Process -Name " WsaClient " -ErrorAction SilentlyContinue
Write-Output " Installing MagiskOnWSA.... "
Add-AppxPackage -ForceApplicationShutdown -ForceUpdateFromAnyVersion -Register . \ AppxManifest . xml
If ( $ ? ) {
Finish
}
ElseIf ( $null -Ne $Installed ) {
Write-Error " Failed to update. `r `n Press any key to uninstall existing installation while preserving user data. `r `n Take in mind that this will remove the Android apps' icon from the start menu. `r `n If you want to cancel, close this window now. "
$null = $Host . UI . RawUI . ReadKey ( 'NoEcho,IncludeKeyDown' )
Clear-Host
Remove-AppxPackage -PreserveApplicationData -Package $Installed . PackageFullName
Add-AppxPackage -ForceApplicationShutdown -ForceUpdateFromAnyVersion -Register . \ AppxManifest . xml
If ( $ ? ) {
Finish
}
}
Write-Output " All Done! `r `n Press any key to exit "
$null = $Host . UI . RawUI . ReadKey ( 'NoEcho,IncludeKeyDown' )