'Service'에 해당되는 글 2건

  1. 2018.01.19 Windows Service 등록 방법
  2. 2016.07.21 [서비스] Windows 서비스 등록 및 삭제 방법
2018. 1. 19. 15:16

1- Use ICU


2- Use -install from the command prompt (use in non-cluster setups)

Create :

C:\>Program Files\PIPC\Interfaces\Example\Interface.exe -install -display "Display Name"

-serviceid "Service ID" -depend "servicename1 servicename2 etc" -auto

Remove :

C:\>Progam Files\PIPC\Interfaces\Example\Interface.exe -remove -serviceid "Service ID"


3- Use SC from the command prompt

Create : 

C:\>sc create "Service Name" binpath= "C: \Progam Files\PIPC\Interfaces\Example\Interface.exe ServiceID" depend= "servicename1/servicename2/etc" DisplayName= "Display Name" start= "auto"

Config Update : 

C:\>sc config "Service Name" option= "New Value"

Remove : 

C:\>sc delete "Service Name"


[참고 : https://techsupport.osisoft.com/Troubleshooting/KB/KB00324 ]

'4차산업혁명 > PI System' 카테고리의 다른 글

I/F Readonly 수정 방법  (0) 2018.03.21
PI System Backup 설정 방법  (0) 2018.03.19
[PI Vision] PI Web API 경로 변경  (0) 2018.01.19
PI Data Insert  (0) 2017.12.20
[PI System] Softbank 투자  (0) 2017.11.14
Posted by 까망후니
2016. 7. 21. 10:29

Windows 서비스를 등록하기 위해서는 sc.exe 파일(주로 C:\Windows\System32 에 있다.)을 이용한다.


Command 창으로 sc파일이 있는 경로로 이동한 뒤에 다음의 명령어를 이용한다.


등록 : sc create "서비스이름" binpath= "서비스 동작 파일 위치" start= auto depend= "종속해야 하는 서비스명"


삭제 : sc delete "서비스이름"


참고로 binpath나 다른 속성을 입력할때, = 다음에 꼭 한칸 띄어야 한다. 안띄면 에러 발생함.



Posted by 까망후니