forked from kkkgo/LTSB-Add-MicrosoftStore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Add-Store.cmd
140 lines (128 loc) · 5.83 KB
/
Add-Store.cmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
@echo off
for /f "tokens=6 delims=[]. " %%G in ('ver') do if %%G lss 14393 goto :version
%windir%\system32\reg.exe query "HKU\S-1-5-19" 1>nul 2>nul || goto :uac
setlocal enableextensions
if /i "%PROCESSOR_ARCHITECTURE%" equ "AMD64" (set "arch=x64") else (set "arch=x86")
cd /d "%~dp0"
if not exist "*WindowsStore*.appxbundle" goto :nofiles
if not exist "*WindowsStore*.xml" goto :nofiles
for /f %%i in ('"dir /b *WindowsStore*.appxbundle" 2^>nul') do set "Store=%%i"
for /f %%i in ('"dir /b *NET.Native.Framework*x64*1.6*.appx" 2^>nul') do set "Framework6X64=%%i"
for /f %%i in ('"dir /b *NET.Native.Framework*x86*1.6*.appx" 2^>nul') do set "Framework6X86=%%i"
for /f %%i in ('"dir /b *NET.Native.Framework*x64*1.3*.appx" 2^>nul') do set "Framework3X64=%%i"
for /f %%i in ('"dir /b *NET.Native.Framework*x86*1.3*.appx" 2^>nul') do set "Framework3X86=%%i"
for /f %%i in ('"dir /b *NET.Native.Runtime*x64*1.6*.appx" 2^>nul') do set "Runtime6X64=%%i"
for /f %%i in ('"dir /b *NET.Native.Runtime*x86*1.6*.appx" 2^>nul') do set "Runtime6X86=%%i"
for /f %%i in ('"dir /b *NET.Native.Runtime*x64*1.4*.appx" 2^>nul') do set "Runtime4X64=%%i"
for /f %%i in ('"dir /b *NET.Native.Runtime*x86*1.4*.appx" 2^>nul') do set "Runtime4X86=%%i"
for /f %%i in ('"dir /b *NET.Native.Runtime*x64*1.3*.appx" 2^>nul') do set "Runtime3X64=%%i"
for /f %%i in ('"dir /b *NET.Native.Runtime*x86*1.3*.appx" 2^>nul') do set "Runtime3X86=%%i"
for /f %%i in ('"dir /b *VCLibs*x64*.appx" 2^>nul') do set "VCLibsX64=%%i"
for /f %%i in ('"dir /b *VCLibs*x86*.appx" 2^>nul') do set "VCLibsX86=%%i"
if exist "*DesktopAppInstaller*.appxbundle" if exist "*DesktopAppInstaller*.xml" (
for /f %%i in ('"dir /b *DesktopAppInstaller*.appxbundle" 2^>nul') do set "AppInstaller=%%i"
)
if exist "*StorePurchaseApp*.appxbundle" if exist "*StorePurchaseApp*.xml" if exist "%Framework3X86%" if exist "%Runtime4X86%" (
for /f %%i in ('"dir /b *StorePurchaseApp*.appxbundle" 2^>nul') do set "PurchaseApp=%%i"
)
if exist "*XboxIdentityProvider*.appxbundle" if exist "*XboxIdentityProvider*.xml" if exist "%Framework3X86%" if exist "%Runtime3X86%" (
for /f %%i in ('"dir /b *XboxIdentityProvider*.appxbundle" 2^>nul') do set "XboxIdentity=%%i"
)
if /i %arch%==x64 (
set "DepStore=%VCLibsX64%,%VCLibsX86%,%Framework6X64%,%Framework6X86%,%Runtime6X64%,%Runtime6X86%"
set "DepPurchase=%VCLibsX64%,%VCLibsX86%,%Framework3X64%,%Framework3X86%,%Runtime4X64%,%Runtime4X86%"
set "DepXbox=%VCLibsX64%,%VCLibsX86%,%Framework3X64%,%Framework3X86%,%Runtime3X64%,%Runtime3X86%"
set "DepInstaller=%VCLibsX64%,%VCLibsX86%"
) else (
set "DepStore=%VCLibsX86%,%Framework6X86%,%Runtime6X86%"
set "DepPurchase=%VCLibsX86%,%Framework3X86%,%Runtime4X86%"
set "DepXbox=%VCLibsX86%,%Framework3X86%,%Runtime3X86%"
set "DepInstaller=%VCLibsX86%"
)
for %%i in (%DepStore%) do (
if not exist "%%i" goto :nofiles
)
set "PScommand=PowerShell -NoLogo -NoProfile -NonInteractive -InputFormat None -ExecutionPolicy Bypass"
echo.
echo ============================================================
echo Adding Microsoft Store
echo ============================================================
echo.
1>nul 2>nul %PScommand% Add-AppxProvisionedPackage -Online -PackagePath %Store% -DependencyPackagePath %DepStore% -LicensePath Microsoft.WindowsStore_8wekyb3d8bbwe.xml
for %%i in (%DepStore%) do (
%PScommand% Add-AppxPackage -Path %%i
)
%PScommand% Add-AppxPackage -Path %Store%
if defined AppInstaller (
echo.
echo ============================================================
echo Adding App Installer
echo ============================================================
echo.
1>nul 2>nul %PScommand% Add-AppxProvisionedPackage -Online -PackagePath %AppInstaller% -DependencyPackagePath %DepInstaller% -LicensePath Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.xml
%PScommand% Add-AppxPackage -Path %AppInstaller%
)
if defined PurchaseApp (
echo.
echo ============================================================
echo Adding Store Purchase App
echo ============================================================
echo.
1>nul 2>nul %PScommand% Add-AppxProvisionedPackage -Online -PackagePath %PurchaseApp% -DependencyPackagePath %DepPurchase% -LicensePath Microsoft.StorePurchaseApp_8wekyb3d8bbwe.xml
for %%i in (%DepPurchase%) do (
%PScommand% Add-AppxPackage -Path %%i
)
%PScommand% Add-AppxPackage -Path %PurchaseApp%
)
if defined XboxIdentity (
echo.
echo ============================================================
echo Adding Xbox Identity Provider
echo ============================================================
echo.
1>nul 2>nul %PScommand% Add-AppxProvisionedPackage -Online -PackagePath %XboxIdentity% -DependencyPackagePath %DepXbox% -LicensePath Microsoft.XboxIdentityProvider_8wekyb3d8bbwe.xml
for %%i in (%DepXbox%) do (
%PScommand% Add-AppxPackage -Path %%i
)
%PScommand% Add-AppxPackage -Path %XboxIdentity%
)
goto :fin
:uac
echo.
echo ============================================================
echo Error: Run the script as administrator
echo ============================================================
echo.
echo.
echo Press any key to Exit
pause >nul
exit
:version
echo.
echo ============================================================
echo Error: This pack is for Windows 10 version 1607 and later
echo ============================================================
echo.
echo.
echo Press any key to Exit
pause >nul
exit
:nofiles
echo.
echo ============================================================
echo Error: Required files are missing in the current directory
echo ============================================================
echo.
echo.
echo Press any key to Exit
pause >nul
exit
:fin
echo.
echo ============================================================
echo Done
echo ============================================================
echo.
echo Press any Key to Exit.
pause >nul
exit