PowerShell/Scripts/take-screenshot.ps1

34 lines
1.2 KiB
PowerShell
Raw Normal View History

2021-04-16 20:01:38 +02:00
#!/usr/bin/pwsh
<#
2021-04-07 15:17:49 +02:00
.SYNTAX take-screenshot.ps1 [<directory>]
2021-03-22 20:10:18 +01:00
.DESCRIPTION takes a single screenshot and saves it into the current/given directory
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
2021-04-16 20:01:38 +02:00
param($Directory = "$PWD")
2021-01-27 10:29:01 +01:00
2021-01-27 15:12:17 +01:00
function TakeScreenshot { param([string]$FilePath)
Add-Type -Assembly System.Windows.Forms
$ScreenBounds = [Windows.Forms.SystemInformation]::VirtualScreen
$ScreenshotObject = New-Object Drawing.Bitmap $ScreenBounds.Width, $ScreenBounds.Height
$DrawingGraphics = [Drawing.Graphics]::FromImage($ScreenshotObject)
$DrawingGraphics.CopyFromScreen( $ScreenBounds.Location, [Drawing.Point]::Empty, $ScreenBounds.Size)
$DrawingGraphics.Dispose()
$ScreenshotObject.Save($FilePath)
$ScreenshotObject.Dispose()
2021-01-27 10:29:01 +01:00
}
2021-01-27 10:29:01 +01:00
try {
$Time = (Get-Date)
$Filename = "$($Time.Year)-$($Time.Month)-$($Time.Day)-$($Time.Hour)-$($Time.Minute)-$($Time.Second).png"
$FilePath = (Join-Path $Directory $Filename)
write-output "Saving screenshot to $FilePath..."
TakeScreenshot $FilePath
2021-01-27 10:29:01 +01:00
exit 0
} catch {
2021-02-16 10:03:20 +01:00
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-01-27 10:29:01 +01:00
exit 1
}