Friday, 26 June 2015

Install//UnInstall Windows Service bat file


--------------------------------------
Install Windows Service bat file
--------------------------------------
//Notes put his bat file in same folder and run as a admin
CD\
CD C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319


InstallUtil.exe "%~dp0WindowsService.exe"

pause

--------------------------------------
UnInstall Windows Service bat file
--------------------------------------
//Notes put his bat file in same folder and run as a admin
CD\
CD C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319

InstallUtil.exe /u "%~dp0WindowsService.exe"

pause


No comments:

Post a Comment