PowerShell/Docs/save-screenshot.md

37 lines
1.1 KiB
Markdown
Raw Normal View History

2021-10-21 16:04:22 +02:00
## save-screenshot.ps1 - Saves a single screenshot
2021-10-17 14:33:27 +02:00
2021-10-20 12:28:14 +02:00
This script takes a single screenshot and saves it into a target folder (the user's pictures folder by default).
2021-10-17 14:33:27 +02:00
## Parameters
```powershell
2021-10-21 16:04:22 +02:00
save-screenshot.ps1 [[-TargetFolder] <String>] [<CommonParameters>]
2021-10-17 14:33:27 +02:00
2021-10-21 16:04:22 +02:00
-TargetFolder <String>
Specifies the target folder (the user's pictures folder by default)
2021-10-17 14:33:27 +02:00
Required? false
Position? 1
2021-10-20 12:28:14 +02:00
Default value "$HOME/Pictures"
2021-10-17 14:33:27 +02:00
Accept pipeline input? false
Accept wildcard characters? false
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
## Example
```powershell
2021-10-21 16:04:22 +02:00
PS> ./save-screenshot
✔️ screenshot saved to C:\Users\Markus\Pictures\2021-10-10T14-33-22.png
2021-10-17 14:33:27 +02:00
```
## Notes
Author: Markus Fleschutz · License: CC0
## Related Links
https://github.com/fleschutz/PowerShell
2021-10-20 12:28:14 +02:00
*Generated by convert-ps2md.ps1 using the comment-based help of save-screenshot.ps1*