mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-02-26 17:55:51 +00:00
Added Service install/uninstall batch files
This commit is contained in:
@@ -94,7 +94,13 @@
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="app.config" />
|
||||
<None Include="ServiceInstall.bat">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</None>
|
||||
<None Include="packages.config" />
|
||||
<None Include="ServiceUninstall.bat">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="NzbDrone.ico" />
|
||||
|
||||
4
NzbDrone/ServiceInstall.bat
Normal file
4
NzbDrone/ServiceInstall.bat
Normal file
@@ -0,0 +1,4 @@
|
||||
@ECHO OFF
|
||||
nzbdrone.exe /i
|
||||
net start nzbdrone
|
||||
pause
|
||||
4
NzbDrone/ServiceUninstall.bat
Normal file
4
NzbDrone/ServiceUninstall.bat
Normal file
@@ -0,0 +1,4 @@
|
||||
@ECHO OFF
|
||||
net stop nzbdrone
|
||||
nzbdrone.exe /u
|
||||
pause
|
||||
Reference in New Issue
Block a user