********************************************
* Description: Knowledge of Windows service
* Compatiablity: RDBMS 11g, 12c
* Date: 11:23 AM EST, 04/17/2017
********************************************


<1> Windows Service:
     |
     |__ Microsoft Windows services, formerly known as NT services, enable you to create >> long-running executable << applications that run in their own Windows sessions. 
         These services can be automatically started when the computer boots, can be paused and restarted, and >> do not show any user interface <<. 
         These features make services ideal for use on a server or whenever you need long-running functionality that does not interfere with other users who are working 
         on the same computer.
		 
         >>> CAUTION <<< Only .exe file can be installed as a windows service. 
         >>> CAUTION <<< The Windows service as to Windows process, analogy to record a short video as to 24*7 all time monitoring camera.
		 
		 
		 	 
<2> Create Windows Service:
     |
     |__ C:\Windows\system32> sc create AmosService binPath= C:\Users\AmosPC\Desktop\test\testservice.exe ......... [Bin means "Binary", and space is needed after "="]
        
             [SC] CreateService SUCCESS

	
	

Your Comments