This repository has been archived by the owner on Mar 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
old_rev1.bat
64 lines (64 loc) · 2.39 KB
/
old_rev1.bat
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
@echo off
title Microsoft Software Download
:main_menu
chcp 65001
cls
echo.
echo.╔══════════════════MICROSOFT══════════════════╗
echo.║1. Download Windows ║
echo.║ ║
echo.║2. Download Office ║
echo.║ ║
echo.║3. Activate Office and/or Windows ║
echo.╠════════════════════ADOBE════════════════════╣
echo.║4. Download Creative Cloud ║
echo.║ ║
echo.║5. Activate Creative Cloud (Method 1, GenP) ║
echo.║ ║
echo.║6. Activate Creative Cloud (Method 2, AMTEmu)║
echo.║ ║
echo.║7. Activate Creative Cloud (Method 3, UAP) ║
echo.║ ║
echo.║8. Download Creative Suite 6 ║
echo.╠═════════════════════════════════════════════╣
echo.║9. Exit ║
echo.╚═════════════════════════════════════════════╝
echo.
chcp 850 > nul
choice /C 123456789 /N /M "Please choose an option: "
if errorlevel 9 (
exit /b
)
if errorlevel 8 (
powershell irm https://get-ms.github.io/adobe_cs6 ^| iex
goto :main_menu
)
if errorlevel 7 (
powershell irm https://get-ms.github.io/adobe_uap ^| iex
goto :main_menu
)
if errorlevel 6 (
powershell irm https://get-ms.github.io/adobe_amtemu ^| iex
goto :main_menu
)
if errorlevel 5 (
powershell irm https://get-ms.github.io/adobe_genp ^| iex
goto :main_menu
)
if errorlevel 4 (
powershell irm https://get-ms.github.io/adobe_cc ^| iex
goto :main_menu
)
if errorlevel 3 (
powershell irm https://get-ms.github.io/activate ^| iex
goto :main_menu
)
if errorlevel 2 (
powershell irm https://get-ms.github.io/office ^| iex
goto :main_menu
)
if errorlevel 1 (
powershell irm https://get-ms.github.io/windows ^| iex
goto :main_menu
)
goto :main_menu