Hello,
I'm trying to integrate modern UI apps, namely Calculator and Snip & Sketch in LTSC edition of Windows 10 without Microsoft Store.
I downloaded some files needed but got stuck on others, getting Error 403 forbidden by the server.
These are the files that I couldn't download.
These file are available on the Adguard repo to download directly from Microsoft's server.
Microsoft Store - Generation Project (v1.2.3) [by @rgadguard & mkuba50]
Search type URL and keyword (https://)apps.microsoft.com/store/detail/windows-calculator/9WZDNCRFHVN5 [please remove the brackets from the URL]
Can anyone else try and see if they can grab the files ?
Also, I found a script to install modern apps but can the script be modified to integrate the apps in the offline mounted WIM image ?
Script:
Can anyone who has some free time on their hands help me accomplish this ?
Your help will be greatly appreciated.
I'm trying to integrate modern UI apps, namely Calculator and Snip & Sketch in LTSC edition of Windows 10 without Microsoft Store.
I downloaded some files needed but got stuck on others, getting Error 403 forbidden by the server.
These are the files that I couldn't download.
Code:
| Microsoft.VCLibs.140.00.UWPDesktop_14.0.30704.0_x64__8wekyb3d8bbwe.Appx
| Microsoft.VCLibs.140.00.UWPDesktop_14.0.30704.0_x86__8wekyb3d8bbwe.Appx
| Microsoft.VCLibs.140.00_14.0.30704.0_x64__8wekyb3d8bbwe.appx
| Microsoft.VCLibs.140.00_14.0.30704.0_x86__8wekyb3d8bbwe.appx
| Microsoft.WindowsCalculator_2020.2103.8.0_neutral_~_8wekyb3d8bbwe.AppxBundle
These file are available on the Adguard repo to download directly from Microsoft's server.
Microsoft Store - Generation Project (v1.2.3) [by @rgadguard & mkuba50]
Search type URL and keyword (https://)apps.microsoft.com/store/detail/windows-calculator/9WZDNCRFHVN5 [please remove the brackets from the URL]
Can anyone else try and see if they can grab the files ?
Also, I found a script to install modern apps but can the script be modified to integrate the apps in the offline mounted WIM image ?
Script:
Code:
@echo off
setlocal EnableDelayedExpansion
if %PROCESSOR_ARCHITECTURE% == x86 (set PROCARCH=_x86_) else (set PROCARCH=_x64_)
for /f "tokens=3* delims= " %%i in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" ^| findstr /i "CurrentBuild"') do set "CurrentBuild=%%i"
for /f "delims=" %%j in ('dir /b "%~dp0Appx\%CurrentBuild%\*.Appx*"') do (copy /y "%~dp0Appx\%CurrentBuild%\%%j" "%~dp0Appx")
call :InstallAppx *%PROCARCH%*
call :InstallAppx *_neutral_*.appx*
call :InstallAppx *_neutral_*.Msi*
pause&exit
:InstallAppx
for /f "delims=" %%i in ('dir /b "%~dp0Appx\%1"') do (
set Licence=-SkipLicense
set "Appx=%~dp0Appx\%%i"
for %%j in ("!Appx!") do (set fiename=%%~nj)
for /f "tokens=1 delims=_" %%k in ("!fiename!") do (set prefix=%%k)
for /f "delims=" %%l in ('dir /b "%~dp0Appx\!prefix!*.xml"') do (set "Licence=-LicensePath '%~dp0Appx\%%l'")
>nul PowerShell -command "Add-AppXProvisionedPackage -Online -PackagePath '!Appx!' !Licence!; Add-AppxPackage -Path '!Appx!'"
)
exit /b
Can anyone who has some free time on their hands help me accomplish this ?
Your help will be greatly appreciated.