이제 윈도우즈 서비스를 다 만들었기 때문에 설치 파일을 만들어 보겠습니다.
저희 같은 경우에는 불특정 다수의 PC에 설치하는 것이 아니고 서버에만 설치하면 되기 때문에
파일을 서버에 복사한 뒤 [윈도우즈 서비스] Console 실행 - #1 에서 설명한 방식대로 서비스를 등록해도 됩니다.
하지만 설치 파일을 만들면 이러한 작업을 자동으로 해주기 때문에 번거로운 작업을 하지 않아도 됩니다.
WIX를 이용하여 윈도우즈 서비스를 등록하는 방법을 알아보도록 하겠습니다.
Tip: to specify a system account, such as LocalService or NetworkService, use the prefix NT AUTHORITY.
For example, use NT AUTHORITY\LocalService as the Account attribute value to run the service under this account.
ServivceInstall 이라는 요소에 윈도우즈 서비스 정보를 입력합니다.
윈도우즈 서비스 등록 시 권한 문제로 실패한다면 사용자 권한 등록으로 해결할 수 있습니다.
저희 같은 경우에는 불특정 다수의 PC에 설치하는 것이 아니고 서버에만 설치하면 되기 때문에
파일을 서버에 복사한 뒤 [윈도우즈 서비스] Console 실행 - #1 에서 설명한 방식대로 서비스를 등록해도 됩니다.
하지만 설치 파일을 만들면 이러한 작업을 자동으로 해주기 때문에 번거로운 작업을 하지 않아도 됩니다.
WIX를 이용하여 윈도우즈 서비스를 등록하는 방법을 알아보도록 하겠습니다.
How To: Install a Windows service
To install a Windows service, use the ServiceInstall element. Other configuration can be made using the ServiceControl element and the ServiceConfig element from WixUtilExtension.Step 1: Install the service
The ServiceInstall element contains the basic information about the service to install. This element should be the child of a Component element whose key path is a sibling File element that specifies the service executable file.Tip: to specify a system account, such as LocalService or NetworkService, use the prefix NT AUTHORITY.
For example, use NT AUTHORITY\LocalService as the Account attribute value to run the service under this account.
ServivceInstall 이라는 요소에 윈도우즈 서비스 정보를 입력합니다.
- Start : 시작 유형
- Account : 로그인 계정
Step 2: Configure the service (optional)
Using the util:ServiceConfig element from WixUtilExtension, you can configure how the service behaves if it fails. To use it, add WixUtilExtension to your project, add the the util namespace to your WiX authoring, and prefix the element name with the util prefix:<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
...
<ServiceInstall>
<util:ServiceConfig FirstFailureActionType="restart"
SecondFailureActionType="restart"
ThirdFailureActionType="restart" />
</ServiceInstall>
아래는 WIX 예제 XML 파일입니다. 이 예제 파일을 본인의 상황에 맞게 수정하면 됩니다.<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="{2D00166E-A14A-4F24-B94F-3D5E9ED21D65}" Name="MyApp" Language="1033" Version="1.0.0.0" Manufacturer="MyCompany" UpgradeCode="{8F800905-91E8-4234-AD80-A485F156FE1B}">
<Package InstallerVersion="400" Compressed="yes" InstallScope="perMachine" />
<Media Id='1' Cabinet='MyAppCAB.cab' EmbedCab='yes' />
<Directory Id='TARGETDIR' Name='SourceDir'>
<Directory Id='ProgramFilesFolder'>
<Directory Id='MyCompany' Name='MyCompany'>
<Directory Id='INSTALLDIR' Name='MyApp'>
<Component Id='ReadmeComponent' Guid='{2D00166E-AAAA-4F24-B94F-3D5E9ED21D65}'>
<File Id="Readme" Name="Readme.txt" DiskId="1" Source="Readme.txt"/>
</Component>
<Component Id='WindowsServicesComponent' Guid='{3D00166E-AAAA-4F24-B94F-3D5E9ED21D66}'>
<File Id="WindowsServicesSample.exe"
Name="WindowsServicesSample.exe"
DiskId="1"
Source="WindowsServicesSample.exe"/>
<ServiceInstall
Id="WindowsServicesSample"
Name="WindowsServicesSample"
DisplayName="WindowsServicesSample"
Description="Example Windows Services"
Start="auto"
Type="ownProcess"
ErrorControl="normal"
Account="LocalSystem"
Arguments="/ARGUMENTS LIST"
Vital="yes"
Interactive="no"/>
<ServiceControl Id="WindowsServicesSample"
Name="WindowsServicesSample"
Start="install"
Stop="both"
Remove="uninstall"
Wait="yes"/>
<ServiceConfig
ServiceName="WindowsServicesSample"
OnInstall="yes"
DelayedAutoStart="yes"/>
</Component>
</Directory>
</Directory>
</Directory>
</Directory>
<Feature Id='MyFeature' Title='My 1st Feature' Level='1'>
<ComponentRef Id='ReadmeComponent' />
<ComponentRef Id='WindowsServicesComponent' />
</Feature>
</Product>
</Wix>
ServiceInstall, ServiceControl의 Name 속성과 ServiceConfig의 ServiceName을 같게 설정해줘야 서비스 등록이 됩니다.윈도우즈 서비스 등록 시 권한 문제로 실패한다면 사용자 권한 등록으로 해결할 수 있습니다.
권한 문제로 등록 실패 |
How to Verify That You Have Sufficient Privileges to Install System Services
Resolution
- Run gpedit.msc.
- Navigate to Computer Configuration > Windows Settings > Security Settings > Local Policies >User Rights Assignment.
- In the details pane, double-click Log on as a service.
- Click Add User or Group… and add the account to the list of accounts that have the Log on as a service right. Once you have selected the user, click OK.
- Click OK and close the policy editor.
Supported on
RAS RD Session Host Agent is supported on the following operating systems:- Windows Server 2019
- Windows Server 2016
- Windows Server 2012 R2
- Windows Server 2012
- Windows Server 2008 R2
- Windows Server 2008
댓글
댓글 쓰기