浏览代码

Supports both CMD and PowerShell (#9344)

sc is aliased to Set-Content in PowerShell and these commands will not work without the `.exe` extension.
tags/v1.11.0-rc1
Matthew Bramer 4 年前
父节点
当前提交
39db99a595
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      docs/content/doc/installation/windows-service.en-us.md

+ 2
- 2
docs/content/doc/installation/windows-service.en-us.md 查看文件

@@ -40,7 +40,7 @@ To register Gitea as a Windows service, open a command prompt (cmd) as an Admini
then run the following command:

```
sc create gitea start= auto binPath= "\"C:\gitea\gitea.exe\" web --config \"C:\gitea\custom\conf\app.ini\""
sc.exe create gitea start= auto binPath= "\"C:\gitea\gitea.exe\" web --config \"C:\gitea\custom\conf\app.ini\""
```

Do not forget to replace `C:\gitea` with the correct Gitea directory.
@@ -54,5 +54,5 @@ that was configured).
To unregister Gitea as a service, open a command prompt (cmd) as an Administrator and run:

```
sc delete gitea
sc.exe delete gitea
```

正在加载...
取消
保存