You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
400 B
14 lines
400 B
@Echo Off
|
|
title YaCy Windows Service UnInstall
|
|
|
|
Rem choose service runner executable according to processor architecture
|
|
set exepath=addon\windowsService
|
|
if /I "%PROCESSOR_ARCHITECTURE%"=="AMD64" set exepath=addon\windowsService\amd64
|
|
if /I "%PROCESSOR_ARCHITECTURE%"=="IA64" set exepath=addon\windowsService\ia64
|
|
|
|
|
|
REM UnInstall YaCy Windows Service
|
|
%exepath%\prunsrv.exe //DS//YaCy
|
|
|
|
|