PowerShell/Docs/save-screenshot.md

36 lines
1.0 KiB
Markdown
Raw Normal View History

2021-10-20 12:28:14 +02:00
## save-screenshot.ps1 - Takes a single screenshot and saves it into a folder
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-20 12:28:14 +02:00
save-screenshot.ps1 [[-Directory] <String>] [<CommonParameters>]
2021-10-17 14:33:27 +02:00
-Directory <String>
2021-10-20 12:28:14 +02:00
Specifies the target directory (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-20 12:28:14 +02:00
PS> ./save-screenshot C:\Temp
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*