mirror of
https://github.com/Radarr/Radarr
synced 2025-02-22 06:11:09 +00:00
Added Service install/uninstall batch files
This commit is contained in:
parent
2eb14d93b7
commit
35cddf08df
3 changed files with 14 additions and 0 deletions
|
@ -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
|
Loading…
Reference in a new issue