mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-03 22:10:51 +02:00
Improved take-screenshot.ps1 and take-screenshots.ps1
This commit is contained in:
parent
f57d1b2652
commit
a488b0da03
@ -8,20 +8,8 @@
|
|||||||
|
|
||||||
param([string]$Directory = "")
|
param([string]$Directory = "")
|
||||||
|
|
||||||
function GetTimedScreenshots {
|
function TakeScreenshot() { param([string]$FilePath)
|
||||||
[CmdletBinding()] Param(
|
Add-Type -Assembly System.Windows.Forms
|
||||||
[Parameter(Mandatory=$True)]
|
|
||||||
[ValidateScript({Test-Path -Path $_ })]
|
|
||||||
[string]$Path,
|
|
||||||
|
|
||||||
[Parameter(Mandatory=$True)]
|
|
||||||
[int32]$Interval,
|
|
||||||
|
|
||||||
[Parameter(Mandatory=$True)]
|
|
||||||
[string]$EndTime
|
|
||||||
)
|
|
||||||
|
|
||||||
function GenScreenshot {
|
|
||||||
$ScreenBounds = [Windows.Forms.SystemInformation]::VirtualScreen
|
$ScreenBounds = [Windows.Forms.SystemInformation]::VirtualScreen
|
||||||
$ScreenshotObject = New-Object Drawing.Bitmap $ScreenBounds.Width, $ScreenBounds.Height
|
$ScreenshotObject = New-Object Drawing.Bitmap $ScreenBounds.Width, $ScreenBounds.Height
|
||||||
$DrawingGraphics = [Drawing.Graphics]::FromImage($ScreenshotObject)
|
$DrawingGraphics = [Drawing.Graphics]::FromImage($ScreenshotObject)
|
||||||
@ -31,25 +19,17 @@ function GetTimedScreenshots {
|
|||||||
$ScreenshotObject.Dispose()
|
$ScreenshotObject.Dispose()
|
||||||
}
|
}
|
||||||
|
|
||||||
Add-Type -Assembly System.Windows.Forms
|
|
||||||
|
|
||||||
do {
|
|
||||||
$Time = (Get-Date)
|
|
||||||
$FileName = "$($Time.Year)-$($Time.Month)-$($Time.Day)-$($Time.Hour)-$($Time.Minute)-$($Time.Second).png"
|
|
||||||
[string]$FilePath = (Join-Path $Path $FileName)
|
|
||||||
|
|
||||||
write-output "Saving screenshot to $FilePath..."
|
|
||||||
GenScreenshot
|
|
||||||
|
|
||||||
Start-Sleep -Seconds $Interval
|
|
||||||
} while ((Get-Date -Format HH:%m) -lt $EndTime)
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if ($Directory -eq "") {
|
if ($Directory -eq "") {
|
||||||
$Directory = "$PWD"
|
$Directory = "$PWD"
|
||||||
}
|
}
|
||||||
GetTimedScreenshots $Directory 0 "00:00"
|
|
||||||
|
$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
|
||||||
exit 0
|
exit 0
|
||||||
} catch {
|
} catch {
|
||||||
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
@ -8,20 +8,8 @@
|
|||||||
|
|
||||||
param([string]$Directory = "", [int]$Interval = 60)
|
param([string]$Directory = "", [int]$Interval = 60)
|
||||||
|
|
||||||
function GetTimedScreenshots {
|
function TakeScreenshot() { param([string]$FilePath)
|
||||||
[CmdletBinding()] Param(
|
Add-Type -Assembly System.Windows.Forms
|
||||||
[Parameter(Mandatory=$True)]
|
|
||||||
[ValidateScript({Test-Path -Path $_ })]
|
|
||||||
[string]$Path,
|
|
||||||
|
|
||||||
[Parameter(Mandatory=$True)]
|
|
||||||
[int32]$Interval,
|
|
||||||
|
|
||||||
[Parameter(Mandatory=$True)]
|
|
||||||
[string]$EndTime
|
|
||||||
)
|
|
||||||
|
|
||||||
function GenScreenshot {
|
|
||||||
$ScreenBounds = [Windows.Forms.SystemInformation]::VirtualScreen
|
$ScreenBounds = [Windows.Forms.SystemInformation]::VirtualScreen
|
||||||
$ScreenshotObject = New-Object Drawing.Bitmap $ScreenBounds.Width, $ScreenBounds.Height
|
$ScreenshotObject = New-Object Drawing.Bitmap $ScreenBounds.Width, $ScreenBounds.Height
|
||||||
$DrawingGraphics = [Drawing.Graphics]::FromImage($ScreenshotObject)
|
$DrawingGraphics = [Drawing.Graphics]::FromImage($ScreenshotObject)
|
||||||
@ -31,25 +19,20 @@ function GetTimedScreenshots {
|
|||||||
$ScreenshotObject.Dispose()
|
$ScreenshotObject.Dispose()
|
||||||
}
|
}
|
||||||
|
|
||||||
Add-Type -Assembly System.Windows.Forms
|
|
||||||
|
|
||||||
do {
|
|
||||||
$Time = (Get-Date)
|
|
||||||
$FileName = "$($Time.Year)-$($Time.Month)-$($Time.Day)-$($Time.Hour)-$($Time.Minute)-$($Time.Second).png"
|
|
||||||
[string]$FilePath = (Join-Path $Path $FileName)
|
|
||||||
|
|
||||||
write-output "Saving screenshot to $FilePath..."
|
|
||||||
GenScreenshot
|
|
||||||
|
|
||||||
Start-Sleep -Seconds $Interval
|
|
||||||
} while ((Get-Date -Format HH:%m) -lt $EndTime)
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if ($Directory -eq "") {
|
if ($Directory -eq "") {
|
||||||
$Directory = "$PWD"
|
$Directory = "$PWD"
|
||||||
}
|
}
|
||||||
GetTimedScreenshots $Directory $Interval "23:59"
|
|
||||||
|
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)
|
||||||
exit 0
|
exit 0
|
||||||
} catch {
|
} catch {
|
||||||
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||||
|
Loading…
Reference in New Issue
Block a user