准备批处理脚本

发布于 2025-01-03 01:42:12 字数 899 浏览 2 评论 0原文

请帮忙准备DOS下的批处理脚本。

该脚本应按以下方式运行:

  1. Telent IP 并使用现有的密码(在脚本中明确给出)。
  2. telnet后,显示MENU选项
  3. MB station
  4. RC
  5. ODU
  6. AP
  7. SU
  8. Exit

    <块引用>

    输入 1 // 将打开“MB station”菜单选项

1 - Show
2 - Unit Control

type 2 // UC MENU 选项将打开 ie

1 - 更改密码
2 - 重置

输入 1 //更改密码 MENU 选项将打开 ie

1 - 更改电脑密码
2 - 更改 LU 密码
3 - 更改管理员密码

输入 3 // 更改管理员密码

MB station - 更改管理员密码
输入新密码:XYZ 输入
重新输入密码 : XYZ 输入

新密码接受

退出

3 次 escape // 从 telnet 1.MB 站
2. 遥控
3.欧都
4.美联社
5.苏
6. 退出

输入 6 // 退出
出口? [是/否] 是

与主机的连接丢失。

然后使用不同的 IP 进行步骤。 IP 值将由用户在提示符下执行脚本时一次性给出,例如 ./pass-change IPs.txt

Please help to prepare batch script on DOS.

This script should run in following manner :

  1. Telent the IP and use the existing passwd (explicitly given in the script).
  2. After the telnet, it shows MENU options
  3. MB station
  4. RC
  5. ODU
  6. AP
  7. SU
  8. Exit

    type 1 // a "MB station" MENU options will open i.e.

1 - Show
2 - Unit Control

type 2 // UC MENU options will open i.e

1 - Change Password
2 - Reset

type 1 //change passwd MENU options will open i.e.

1 - Change PC Password
2 - Change LU Password
3 - Change Admin Password

type 3 // to change ADMIN passwd

MB station - Change Admin Password
Enter New Password : XYZ enter
Re-enter Password : XYZ enter

New password accepted

3 times escape // to escape from telnet

1.MB station
2. RC
3. ODU
4. AP
5. SU
6. Exit

type 6 // to exit
Exit? [Y/N] y

Connection to host lost.

then move to step with different IP. The IP values will be given by the user one-time while executing the script at the prompt e.g. ./pass-change IPs.txt

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

本王不退位尔等都是臣 2025-01-10 01:42:12

从这个开始:

@ECHO OFF

:BEGIN
CLS
ECHO.                 
ECHO          Oleg Grishko  + Flora  = Love          
ECHO.
ECHO.
ECHO        1=Remove All Hard Drive Partitions
ECHO        2=FDISK Hard Drive
ECHO        3=Format Hard Drive
ECHO        4=Dell Utilities
ECHO        5=Re-image
ECHO        6=Exit To DOS
ECHO.
ECHO       To bring this menu back type GO.BAT at the dos prompt.
ECHO.
CHOICE /N /C:123456 

ECHO.
If ERRORLEVEL ==6 GOTO SIX
If ERRORLEVEL ==5 GOTO FIVE
If ERRORLEVEL ==4 GOTO FOUR
IF ERRORLEVEL ==3 GOTO THREE
IF ERRORLEVEL ==2 GOTO TWO
IF ERRORLEVEL ==1 GOTO ONE
GOTO END

:SIX
EXIT
GOTO QUIT

:FIVE
call re-image.bat
GOTO END

:FOUR
call dell.bat
GOTO END

:THREE
cd dos
call format.bat
GOTO END

:TWO
cd dos
call fdisk.bat
GOTO END

:ONE
cd dos
call blast.bat
GOTO END

:END
cd\
REM ECHO Completed. Bringing up DOS menu again...
REM pause
REM f:go.bat

:QUIT
f:

start with this :

@ECHO OFF

:BEGIN
CLS
ECHO.                 
ECHO          Oleg Grishko  + Flora  = Love          
ECHO.
ECHO.
ECHO        1=Remove All Hard Drive Partitions
ECHO        2=FDISK Hard Drive
ECHO        3=Format Hard Drive
ECHO        4=Dell Utilities
ECHO        5=Re-image
ECHO        6=Exit To DOS
ECHO.
ECHO       To bring this menu back type GO.BAT at the dos prompt.
ECHO.
CHOICE /N /C:123456 

ECHO.
If ERRORLEVEL ==6 GOTO SIX
If ERRORLEVEL ==5 GOTO FIVE
If ERRORLEVEL ==4 GOTO FOUR
IF ERRORLEVEL ==3 GOTO THREE
IF ERRORLEVEL ==2 GOTO TWO
IF ERRORLEVEL ==1 GOTO ONE
GOTO END

:SIX
EXIT
GOTO QUIT

:FIVE
call re-image.bat
GOTO END

:FOUR
call dell.bat
GOTO END

:THREE
cd dos
call format.bat
GOTO END

:TWO
cd dos
call fdisk.bat
GOTO END

:ONE
cd dos
call blast.bat
GOTO END

:END
cd\
REM ECHO Completed. Bringing up DOS menu again...
REM pause
REM f:go.bat

:QUIT
f:
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文