-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCallAllBatchSetups.bat
55 lines (49 loc) · 1.81 KB
/
CallAllBatchSetups.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
rem This CallAllBatchSetups.bat file last updated by whm 17Feb2022
@echo off
Break ON
echo This batch file calls all batch files for the Setup Generator folders
echo in adaptit:
echo 1. _CopyDocs2InstallFolders.bat in the docs folder
echo 2. _CopyHelp2InstallFolders.bat in the hlp folder
echo 3. _CopyMO2InstallFolders.bat in the po folder
echo 4. _CopyXML2InstallFolders.bat in the xml folder
echo 5. _CopyWin32ExeUtils2InstallFolders.bat in the kbserver_win32_utils folder
echo ===============================================================
echo Note: Calling the batch files populates the installation folders
echo with everything they need EXCEPT for the actual Regular and
echo Unicode executable to pack in the installation. The executables
echo are copied directly to the installation folders by Visual Studio
echo when Unicode Debug and Unicode Release builds are done.
echo ===============================================================
@echo on
rem 1. Now calling _CopyDocs2InstallFolders.bat from the docs folder
@echo off
cd "docs"
call _CopyDocs2InstallFolders.bat
@echo on
rem 2. Now calling _CopyHelp2InstallFolders.bat from the hlp folder
@echo off
cd ..
cd "hlp"
call _CopyHelp2InstallFolders.bat
@echo on
rem 3. Now calling _CopyMO2InstallFolders.bat from the po folder
@echo off
cd ..
cd "po"
call _CopyMO2InstallFolders.bat
@echo on
rem 4. Now calling _CopyXML2InstallFolders.bat from the xml folder
@echo off
cd ..
cd "xml"
call _CopyXML2InstallFolders.bat
@echo on
rem 5. Now calling _CopyWin32ExeUtils2InstallFolders.bat from the kbserver_win32_utils folder
@echo off
cd ..
cd "kbserver_win32_utils"
call _CopyWin32ExeUtils2InstallFolders.bat
cd ..
echo ===================================================
echo Batch processes completed.