Aghili.Extensions.Service.Install
8.0.0
dotnet add package Aghili.Extensions.Service.Install --version 8.0.0
NuGet\Install-Package Aghili.Extensions.Service.Install -Version 8.0.0
<PackageReference Include="Aghili.Extensions.Service.Install" Version="8.0.0" />
paket add Aghili.Extensions.Service.Install --version 8.0.0
#r "nuget: Aghili.Extensions.Service.Install, 8.0.0"
// Install Aghili.Extensions.Service.Install as a Cake Addin #addin nuget:?package=Aghili.Extensions.Service.Install&version=8.0.0 // Install Aghili.Extensions.Service.Install as a Cake Tool #tool nuget:?package=Aghili.Extensions.Service.Install&version=8.0.0
Windows Firewall and service Helper Class Library
A class library to manage the Windows Firewall as well as adding your program to the Windows Firewall Exception list.
For Manage Windows Service application this package can used SC or Dotnet4 Tools.
For manage Windows firewall we also used Netsh Command.
This project supports (.netStandard2.1 , Net6 and Net7), therefore, is compatible with Net6 and any version of dotNet equal or greater than it
Even though it is possible to reference this library under Linux or Mac; it's obviously not going to work.
How to get
This library is available as a NuGet package at nuget.org.
Help me fund my own Death Star
--OR--
You can always donate your time by contributing to the project or by introducing it to others.
How to use
Create new instance of Engine
class and send string argument of Application name to Class creator for use in service registering title.
Results
- Run the program without sending Commands, all the features of the package will be displayed in the console output.
Extention for manage windows service by himself.
Commands:
info Information about console commands.
status Status of service state such as installation and running states.
install Add service to this computer, if service was installed did not return error.
uninstall Remove service from this computer, if service was uninstalled did not return error.
firewalladd Add service file access rule to firewall.
firewallremove Remove service file access rule from firewall.
start Start service if exist in this computer.
stop Stop service if exist in this computer.
s Short command for Status.
i Short command for install.
u Short command for unistall.
fa Short command for FirewallAdd.
fr Short command for FirewallRemove.
Arguments:
silent Run command in silent mode.
out_json [Default]output result as json string.
- If the program is called with one of the arguments, the output will be displayed as below and the output type can be selected with arguments
{
"ServiceRunStatus":"0",
"ServiceIsInstalled":False,
"FirewallIsInstall":False,
"FirewallIsEnable":False,
"FirewallRuleAdded":False,
"Message":"",
"Result":True
}
Examples
Check the 'Document.Service.Sample' projects as a brief example of what can be done using this class library.
Console example
- Create new console application and for Program block add below code:
internal class Program
{
private static void Main(string[] args)
{
new Document.Service.Engine("TestApp").Run(args);
Console.ReadLine();
}
}
License
MIT License
Copyright (c) 2010-2023 mostafa aghili
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Microsoft.Win32.Registry (>= 5.0.0)
- System.ServiceProcess.ServiceController (>= 8.0.0)
- System.Text.Json (>= 8.0.0)
-
net6.0
- System.ServiceProcess.ServiceController (>= 8.0.0)
-
net7.0
- System.ServiceProcess.ServiceController (>= 8.0.0)
-
net8.0
- System.ServiceProcess.ServiceController (>= 8.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.