﻿Install:	
	Powershell version 5.1+ :
		powershell -ExecutionPolicy ByPass -File install.ps1

	Otherwise:
		sc.exe create {service_name} binpath= {full_path}\{service}.exe
		sc.exe description {service_name} {description}

		sc.exe create EventManagementService binpath= C:\Temp\EMS\EMS.Server.WorkerService.exe start=auto displayname="Event Management Service"
		sc.exe description EventManagementService 


Uinstall:
	Powershell version 5.1+ :
		powershell -ExecutionPolicy ByPass -File uinstall.ps1

	Otherwise:
		sc.exe delete {service_name}
		sc.exe delete EventManagementService