🙆♂️
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| setlocal | |
| if "%~1"=="" ( | |
| echo Please provide the path to the folder containing the APKs. | |
| exit /b | |
| ) | |
| set APK_FOLDER=%~1 | |
| set OUTPUT_APK_NAME=%~2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| setlocal enabledelayedexpansion | |
| if "%~1"=="" ( | |
| echo Please provide a package ID or partial package ID. | |
| exit /b | |
| ) | |
| set package_input=%~1 | |
| set output_dir=output |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| "GS", | |
| "GD", | |
| "CH", | |
| "SL", | |
| "HU", | |
| "TW", | |
| "WF", | |
| "BB", | |
| "PN", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $vm = "VMNAME" | |
| Remove-VMGpuPartitionAdapter -VMName $vm | |
| Add-VMGpuPartitionAdapter -VMName $vm | |
| Set-VMGpuPartitionAdapter -VMName $vm -MinPartitionVRAM 1 | |
| Set-VMGpuPartitionAdapter -VMName $vm -MaxPartitionVRAM 11 | |
| Set-VMGpuPartitionAdapter -VMName $vm -OptimalPartitionVRAM 10 | |
| Set-VMGpuPartitionAdapter -VMName $vm -MinPartitionEncode 1 | |
| Set-VMGpuPartitionAdapter -VMName $vm -MaxPartitionEncode 11 | |
| Set-VMGpuPartitionAdapter -VMName $vm -OptimalPartitionEncode 10 | |
| Set-VMGpuPartitionAdapter -VMName $vm -MinPartitionDecode 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package color | |
| var ( | |
| // Reset | |
| ColorOff = "\033[0m" // Text Reset | |
| // Regular Colors | |
| Black = "\033[0;30m" // Black | |
| Red = "\033[0;31m" // Red | |
| Green = "\033[0;32m" // Green |