Skip to main content

Installing Windows Service

What is a windows Service ?
 Windows service is a long running process that runs as a background process in windows OS.
          We create windows service when we need to perform tasks without the user interaction. Like regular application windows services lacks UI for user interaction.

We can install windows service by navigating to installutil.exe file that resides in Microsoft.Net Folder inside Windows folder.
For for .net version 4
the file path is  C:\Windows\Microsoft.NET\Framework\v4.0.30319
 we can install the service by running the following command in CommandLine  opening it as an Administrator.

"C:\Windows\Microsoft.NET\Framework\v4.0.30319\installutil.exe" "E:\servicename.exe"
 
See the following command run  for installing the merotrackerlistener in the system.
 
 
 After running the command windows service is installed in the system.

Comments

Popular posts from this blog

Using SqlDataAdapter to fill DataTable in c#

public DataTable List(string sql)         {             SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["DefaultConnection"].ConnectionString);             SqlCommand cmd = new SqlCommand(sql, con);             DataTable dt = new DataTable();             SqlDataAdapter da = new SqlDataAdapter(cmd);             try             {                              con.Open();                 da.Fill(dt);             }             finally             {                 con.Close();          ...

Converting List to DataTable in C#

public static DataTable ConvertToDataTable<T>(IList<T> data)         {             PropertyDescriptorCollection properties =                TypeDescriptor.GetProperties(typeof(T));             DataTable table = new DataTable();             foreach (PropertyDescriptor prop in properties)                 table.Columns.Add(prop.Name, Nullable.GetUnderlyingType(prop.PropertyType) ?? prop.PropertyType);             foreach (T item in data)             {                 DataRow row = table.NewRow();                 foreach (PropertyDescriptor prop in properties)                     row[prop.Name]...