0
点赞
收藏
分享

微信扫一扫

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

邯唐情感 2022-09-09 阅读 199

要点:  当到达 长地址时, 需要输入: 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



 




举报

相关推荐

0 条评论