summaryrefslogtreecommitdiffstats
path: root/private/net/otnboot/setup.bat
diff options
context:
space:
mode:
authorAdam <you@example.com>2020-05-17 05:51:50 +0200
committerAdam <you@example.com>2020-05-17 05:51:50 +0200
commite611b132f9b8abe35b362e5870b74bce94a1e58e (patch)
treea5781d2ec0e085eeca33cf350cf878f2efea6fe5 /private/net/otnboot/setup.bat
downloadNT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.gz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.bz2
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.lz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.xz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.zst
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.zip
Diffstat (limited to 'private/net/otnboot/setup.bat')
-rw-r--r--private/net/otnboot/setup.bat28
1 files changed, 28 insertions, 0 deletions
diff --git a/private/net/otnboot/setup.bat b/private/net/otnboot/setup.bat
new file mode 100644
index 000000000..74f2406e6
--- /dev/null
+++ b/private/net/otnboot/setup.bat
@@ -0,0 +1,28 @@
+@echo off
+echo Installing Client-based Network Administration Tools...
+copy *.exe %systemroot%\system32\*.* > nul:
+if errorlevel 1 goto Error_COPY
+copy *.dll %systemroot%\system32\*.* > nul:
+if errorlevel 1 goto Error_COPY
+copy *.hlp %systemroot%\system32\*.* > nul:
+if errorlevel 1 goto Error_COPY
+copy *.ind %systemroot%\system32\*.* > nul:
+if errorlevel 1 goto Error_COPY
+goto Exit_SUCCESS
+:Error_COPY
+echo ÿ
+echo The Client-based Network Administration Tools were not correctly
+echo installed on the system. Check for sufficient disk space and correct
+echo access permissions on the Windows NT system drive, then retry the
+echo installation. Setup must be run from the directory where the
+echo Administration Tools reside.
+echo ÿ
+goto Exit_point
+:Exit_SUCCESS
+echo ÿ
+echo The Client-based Network Administration Tools have been correctly installed.
+echo You can create Program Manager icons for the following tools:
+dir /b /l *.exe
+echo ÿ
+goto Exit_point
+:Exit_point