mirror of
https://github.com/msvc-win/get.msvc.win.git
synced 2025-12-16 05:07:39 +00:00
Add ARM64 support
This commit is contained in:
parent
2bf0a92ded
commit
9e128e7a5c
4 changed files with 38 additions and 2 deletions
6
dx
6
dx
|
|
@ -6,6 +6,12 @@ function Main {
|
|||
return 1
|
||||
}
|
||||
|
||||
$procArch = $Env:PROCESSOR_ARCHITECTURE
|
||||
if ($procArch -eq 'ARM') {
|
||||
Write-Warning "This script does not support Windows RT. Exiting..."
|
||||
return 1
|
||||
}
|
||||
|
||||
$flagPath = "$env:TEMP\elevation_success.flag"
|
||||
if (Test-Path $flagPath) { Remove-Item $flagPath -ErrorAction SilentlyContinue }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue