| | @@ -85,7 +85,24 @@ |
| 85 | 85 | |
| 86 | 86 | in the PowerShell console. |
| 87 | 87 | |
| 88 | 88 | Congratulations, you now have a base http accessible Fossil server running on |
| 89 | 89 | Windows. |
| 90 | + |
| 91 | +### Removing the Windows Service |
| 92 | + |
| 93 | +If you want to remove the Fossil service, execute the following from an |
| 94 | +Administrative PowerShell or Command Prompt console: |
| 95 | + |
| 96 | +``` |
| 97 | +sc.exe delete fossil |
| 98 | +``` |
| 99 | + |
| 100 | +If you have Powershell version 6.0 or later, you can use: |
| 101 | + |
| 102 | +```PowerShell |
| 103 | +Remove-Service -Name fossil |
| 104 | +``` |
| 105 | + |
| 106 | +with the same effect. |
| 90 | 107 | |
| 91 | 108 | *[Return to the top-level Fossil server article.](../)* |
| 92 | 109 | |