PowerShell/Docs/start-calibre-server.md

43 lines
1.0 KiB
Markdown
Raw Normal View History

2021-09-28 11:56:17 +02:00
# PowerShell Script: start-calibre-server.ps1
```powershell
2021-10-06 10:46:35 +02:00
Starts a local Calibre server
2021-09-28 11:56:17 +02:00
```
2021-10-06 10:46:35 +02:00
start-calibre-server.ps1 [<port>]
2021-09-28 11:56:17 +02:00
Starts a local Calibre server as background process (Web port number is 8099 by default)
## Syntax & Parameters
```powershell
/home/markus/Repos/PowerShell/Scripts/start-calibre-server.ps1 [[-port] <Int32>] [<CommonParameters>]
```
```
-port <Int32>
Required? false
Position? 1
Default value 8099
Accept pipeline input? false
Accept wildcard characters? false
```
```
[<CommonParameters>]
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
## Example
```powershell
PS>./start-calibre-server
```
## Notes
Author: Markus Fleschutz · License: CC0
## Related Links
https://github.com/fleschutz/PowerShell
*Generated by convert-ps2md.ps1 using the comment-based help of start-calibre-server.ps1*