Disable baremetal for now;Add to package manager install logic
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
@ -52,3 +52,14 @@ $AddAppxPackageSplat = @{
|
||||
}
|
||||
Add-AppxPackage @AddAppxPackageSplat
|
||||
|
||||
# Create reparse point
|
||||
$SetExecutionAliasSplat = @{
|
||||
Path = "$([System.Environment]::SystemDirectory)\winget.exe"
|
||||
PackageName = "Microsoft.DesktopAppInstaller_8wekyb3d8bbwe"
|
||||
EntryPoint = "Microsoft.DesktopAppInstaller_8wekyb3d8bbwe!winget"
|
||||
Target = "$((Get-AppxPackage Microsoft.DesktopAppInstaller).InstallLocation)\AppInstallerCLI.exe"
|
||||
AppType = 'Desktop'
|
||||
Version = 3
|
||||
}
|
||||
Set-ExecutionAlias @SetExecutionAliasSplat
|
||||
& explorer.exe "shell:appsFolder\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe!winget"
|
Reference in New Issue
Block a user