31 lines
697 B
Markdown
31 lines
697 B
Markdown
|
|
# PrintWorker Windows Service
|
||
|
|
|
||
|
|
## 发布
|
||
|
|
|
||
|
|
```powershell
|
||
|
|
cd C:\项目\QYZH.InteractiveMagazine\QYZH.InteractiveMagazine.PrintWorker
|
||
|
|
.\scripts\publish-win-x64.ps1
|
||
|
|
```
|
||
|
|
|
||
|
|
发布目录默认是 `.\publish\win-x64`,其中包含 `PrintToolV2.7`、`appsettings.json` 和 `QYZH.InteractiveMagazine.PrintWorker.exe`。
|
||
|
|
|
||
|
|
## 安装服务
|
||
|
|
|
||
|
|
用管理员 PowerShell 执行:
|
||
|
|
|
||
|
|
```powershell
|
||
|
|
cd C:\Web\QYZH.InteractiveMagazine.PrintWorker
|
||
|
|
.\scripts\install-service.ps1
|
||
|
|
```
|
||
|
|
|
||
|
|
默认服务名:`QYZH.InteractiveMagazine.PrintWorker`。
|
||
|
|
|
||
|
|
## 卸载服务
|
||
|
|
|
||
|
|
用管理员 PowerShell 执行:
|
||
|
|
|
||
|
|
```powershell
|
||
|
|
cd C:\项目\QYZH.InteractiveMagazine\QYZH.InteractiveMagazine.PrintWorker
|
||
|
|
.\scripts\uninstall-service.ps1
|
||
|
|
```
|