您的位置:首页 > 其它

【Vegas原创】我写的一个安装windowsService的BAT

2006-11-17 09:10 459 查看
要点: 当到达 长地址时, 需要输入: CD/D

@echo off
echo **************************************
echo * *
echo * Welcome To abcdef *
echo * *
echo **************************************

echo hi:
echo %username% :) 我是 Vegas Lee, 很高兴为您服务.
echo --------------------------------------------------------------
echo - ↙您正在安装 **WindowsService

-
echo --------------------------------------------------------------
pause
set Addr=C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322
cd/d %Addr%
installutil D:\FlowERWS\AUOFlowERWindowsService.exe

IF ERRORLEVEL 255 GOTO Label255
IF ERRORLEVEL 254 GOTO Label254
IF ERRORLEVEL 1 GOTO Label1
GOTO Label0

:Label255
echo commands to be executed at errorlevel 255
GOTO End

:Label1
echo commands to be executed at errorlevel 1
GOTO End

:Label0
echo --------------------------------------------------------------
echo - 恭喜!您已成功安装 **WindowsService! -
echo --------------------------------------------------------------
pause

:End
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐