All pastes #2053422 Raw Edit

bat install

public text v1 · immutable
#2053422 ·published 2011-05-03 10:50 UTC
rendered paste body
@ECHO OFF

REM The following directory is for .NET 2.0
set DOTNETFX2=%SystemRoot%\Microsoft.NET\Framework\v2.0.50727
set PATH=%PATH%;%DOTNETFX2%

echo Installing WindowsService...
echo ---------------------------------------------------
InstallUtil /i WindowsService.exe
echo ---------------------------------------------------
echo Done.
echo Starting the service
echo ---------------------------------------------------
sc start officecount
echo ---------------------------------------------------
@ECHO ON