PowerShell/Scripts/take-screenshots.ps1

42 lines
1.3 KiB
PowerShell
Raw Normal View History

2021-04-21 19:53:52 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
take-screenshots.ps1 [<directory>] [<interval>]
.DESCRIPTION
Takes screenshots every 60 seconds and saves them into the current/given directory
.EXAMPLE
PS> .\take-screenshots.ps1 C:\Temp 60
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#>
2021-07-15 15:51:22 +02:00
param([string]$Directory = "$PWD", [int]$Interval = 60)
2021-01-27 10:32:04 +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:32:04 +01:00
}
2021-01-27 10:32:04 +01:00
try {
do {
$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
Start-Sleep -Seconds $Interval
} while (1)
2021-01-27 10:32:04 +01:00
exit 0
} catch {
2021-05-02 21:30:48 +02:00
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-01-27 10:32:04 +01:00
exit 1
}