-
Notifications
You must be signed in to change notification settings - Fork 36
/
ntinfo.cmd
28 lines (22 loc) · 828 Bytes
/
ntinfo.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
@echo off
REM ///////////////////////////////////////////////////////////////////////////
REM ntinfo.cmd
REM ///////////////////////////////////////////////////////////////////////////
REM //
REM // Verify that the script is running under the sizzle environment.
REM //
if [%NTROOT%] equ [] (
echo You must run this script under the sizzle environment.
goto End
)
REM //
REM // Display the environment information.
REM //
echo Repository Name (NTREPO) = %NTREPO%
echo Source Path (NTROOT) = %NTROOT%
echo Target Architecture (NTARCH) = %NTARCH%
echo Target Build (NTBLD) = %NTBLD%
echo Target (NTTARGET) = %NTTARGET%
echo NTOSBE Root (BEROOT) = %BEROOT%
echo NT Binary Tree (NTTREE) = %NTTREE%
:End