mirror of
https://github.com/MustardChef/WSABuilds.git
synced 2024-11-10 21:55:11 +01:00
54 lines
2.2 KiB
PowerShell
54 lines
2.2 KiB
PowerShell
# 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) 2023 LSPosed Contributors
|
|
#
|
|
|
|
$MakePri = "C:\Program Files (x86)\Windows Kits\10\bin\10.0.22621.0\x64\makepri.exe"
|
|
|
|
New-Item -Path "." -Name "priinfo" -ItemType "directory" | Out-Null
|
|
Copy-Item .\resources.pri -Destination ".\pri\resources.pri" | Out-Null
|
|
$AppxManifestFile = ".\AppxManifest.xml"
|
|
$PriItem = Get-Item ".\pri\*" -Include "*.pri"
|
|
Write-Output "Dumping resources..."
|
|
foreach ($Item in $PriItem) {
|
|
Start-Process -PassThru $MakePri -Args "dump /if $($Item | Resolve-Path -Relative) /o /es .\pri\resources.pri /of .\priinfo\$($Item.Name).xml /dt detailed"
|
|
}
|
|
|
|
Write-Output "Creating pri from dumps...."
|
|
$ProcNewFromDump = Start-Process -PassThru $MakePri -Args "new /pr .\priinfo /cf .\xml\priconfig.xml /of .\resources.pri /mn $AppxManifestFile /o"
|
|
$null = $ProcNewFromDump.Handle
|
|
$ProcNewFromDump.WaitForExit()
|
|
Remove-Item 'priinfo' -Recurse -Force
|
|
if ($ProcNewFromDump.ExitCode -ne 0) {
|
|
Write-Error "Failed to create resources from priinfos"
|
|
exit 1
|
|
}
|
|
|
|
$ProjectXml = [xml](Get-Content $AppxManifestFile)
|
|
$ProjectResources = $ProjectXml.Package.Resources;
|
|
$(Get-Item .\xml\* -Exclude "priconfig.xml" -Include "*.xml") | ForEach-Object {
|
|
$($([xml](Get-Content $_)).Package.Resources.Resource) | ForEach-Object {
|
|
$ProjectResources.AppendChild($($ProjectXml.ImportNode($_, $true)))
|
|
}
|
|
}
|
|
$ProjectXml.Save($AppxManifestFile)
|
|
|
|
Remove-Item 'pri' -Recurse -Force
|
|
Remove-Item 'xml' -Recurse -Force
|
|
Remove-Item 'filelist-pri.txt' -Force
|
|
Remove-Item $PSCommandPath -Force
|
|
exit 0
|