mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
330 B
20 lines
330 B
@echo off
|
|
if (%1) == () goto usage
|
|
echo.
|
|
echo Microsoft WebCAT Controller configuration
|
|
echo Configuring Web Server Name ....
|
|
echo.
|
|
echo Setting server name to "%1"
|
|
echo set webserver=%1>srvname.cmd
|
|
set webserver=%1
|
|
goto end
|
|
echo.
|
|
:usage
|
|
call beep
|
|
echo Specify the name of the web server
|
|
echo Example:
|
|
echo config web1
|
|
:end
|
|
|
|
|
|
|