Djentacodic

Show-Warning.ps1

Apr 12th, 2024 (edited)
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PowerShell 5.74 KB | Source Code | 0 0
  1. [CmdletBinding()]
  2. Param(
  3.     [Parameter(Mandatory,Position = 0)][datetime]$ShutdownTime
  4. )
  5. Function Show-Message {
  6.     Param(
  7.         [Parameter(Mandatory)]
  8.         [ValidateScript({$null -notlike "$_"})]
  9.         [uint16]$iMinutes
  10.     )
  11.     Function Get-Icon {
  12.         Param(
  13.             [Parameter(Mandatory)]
  14.             [string]$Base64String
  15.         )
  16.         $IconByteArray = [System.Convert]::FromBase64String($Base64String)
  17.         $IconStream = New-Object System.IO.MemoryStream($IconByteArray,0,$IconByteArray.Length)
  18.         $IconStream.Write($IconByteArray,0,$IconByteArray.Length)
  19.         $null = [System.Drawing.Image]::FromStream($IconStream,$true)
  20.         return [System.Drawing.Icon]::FromHandle((New-Object System.Drawing.Bitmap -ArgumentList $IconStream).GetHIcon())
  21.     }
  22.     Function Get-Image {
  23.         Param(
  24.             [Parameter(Mandatory)]
  25.             [string]$Base64String
  26.         )
  27.         $ImageByteArray = [System.Convert]::FromBase64String($Base64String)
  28.         $ImageStream = New-Object System.IO.MemoryStream($ImageByteArray,0,$ImageByteArray.Length)
  29.         $ImageStream.Write($ImageByteArray,0,$ImageByteArray.Length)
  30.         return [System.Drawing.Image]::FromStream($ImageStream,$true)
  31.     }
  32.     #Include .NET assembly to create forms
  33.     Add-Type -AssemblyName System.Windows.Forms
  34.  
  35.     #Graphic image binary data encoded in base64
  36.     [string]$b64Icon = "<paste base64 encoding of .ico here>"
  37.     [string]$b64Logo = "<paste base64 encoding of .jpg/.png/.bmp here>"
  38.  
  39.     $imgLogo = Get-Image -Base64String $b64Logo
  40.  
  41.     #Constants
  42.     New-Variable -Name frmTitle     -Value ([string]'Shutdown Warning') -Option Constant
  43.     New-Variable -Name frmWidth     -Value ([uint16]$imgLogo.Width)     -Option Constant
  44.     New-Variable -Name frmHeight    -Value ([uint16]340)                -Option Constant
  45.     New-Variable -Name pnlHeight    -Value ([uint16]40)                 -Option Constant
  46.     New-Variable -Name lblOffset    -Value ([uint16]8)                  -Option Constant
  47.  
  48.     #Create message box
  49.     $form = New-Object Windows.Forms.Form
  50.         $form.FormBorderStyle = "FixedToolWindow"
  51.         $form.Text = $frmTitle
  52.         $form.StartPosition = "CenterScreen"
  53.         $form.Width = $frmWidth; $form.Height = $frmHeight
  54.         $form.TopMost = $true
  55.         $form.Icon = Get-Icon -Base64String $b64Icon
  56.  
  57.     #Add button panel with OK button
  58.     $pnlButton = New-Object Windows.Forms.Panel
  59.         $pnlButton.Size = New-Object Drawing.Size @($frmWidth,$pnlHeight)
  60.         $pnlButton.Dock = "Bottom"
  61.         #Create OK button
  62.         $btnOK = New-Object Windows.Forms.Button
  63.             $btnOK.Top = ($pnlButton.Height / 2) - ($btnOK.Height / 2); $btnOK.Left = ($pnlButton.Width  / 2) - ($btnOK.Width / 2)
  64.             $btnOK.Text = 'OK'
  65.             $btnOK.DialogResult = 'OK'
  66.             $btnOK.Anchor = 'Top','Left'
  67.         #Add button to button panel
  68.         $pnlButton.Controls.Add($btnOK)
  69.     #Add panel to form
  70.     $form.Controls.Add($pnlButton)
  71.    
  72.     #Create logo logo banner
  73.     $picBanner = New-Object Windows.Forms.PictureBox
  74.         $picBanner.Left = 0; $picBanner.Top = 0; $picBanner.Width = $imgLogo.Width; $picBanner.Height = $imgLogo.Height
  75.         $picBanner.Image = $imgLogo
  76.  
  77.     #Create message labels
  78.     $lblWarning = New-Object System.Windows.Forms.Label
  79.         $lblWarning.Left = $lblOffset; $lblWarning.Top = $picBanner.Top + $picBanner.Height + $lblOffset; $lblWarning.Width = $picBanner.Width - $lblOffset * 2; $lblWarning.Height = 24
  80.         $lblWarning.TextAlign = [System.Drawing.ContentAlignment]::MiddleCenter
  81.         $lblWarning.Font = New-Object System.Drawing.Font("Microsoft Sans Serif",12,[System.Drawing.FontStyle]::Bold)
  82.         $lblWarning.Text = "Windows will shutdown in less than $iMinutes minutes"
  83.     #Create message label
  84.     $lblMessage = New-Object System.Windows.Forms.Label
  85.         $lblMessage.Left = $lblOffset; $lblMessage.Top = $lblWarning.Top + $lblWarning.Height + $lblOffset; $lblMessage.Width = ($picBanner.Width - ($lblOffset * 2)); $lblMessage.Height = $pnlButton.Top - $lblMessage.Top - $lblOffset; $lblMessage.AutoSize = $false
  86.         $lblMessage.TextAlign = [System.Drawing.ContentAlignment]::TopCenter
  87.         $lblMessage.Font = New-Object System.Drawing.Font("Microsoft Sans Serif",10,[System.Drawing.FontStyle]::Regular)
  88.         $lblMessage.Text = "This device has a parking schedule enabled and has an upcoming power down window. Please ensure you save any work as soon as possible. This system will power off in approximately $iMinutes minutes. If you need to continue working, you may reconnect after power down to restart the system."
  89.    
  90.     $timer = New-Object System.Windows.Forms.Timer
  91.         $timer.Interval = 1000
  92.         $timer.Add_Tick({
  93.             If (($script:ShutdownTime - (Get-Date)) -le (New-TimeSpan -Minutes ($iMinutes - 5))) {
  94.                 $form.Close()
  95.             }
  96.         })
  97.  
  98.     #Add remaining elements to form
  99.     $form.Controls.AddRange(@($picBanner,$lblWarning,$lblMessage))
  100.  
  101.     #Set default actions
  102.     $form.AcceptButton = $btnOK
  103.     $form.CancelButton = $btnOK
  104.  
  105.     #Show form
  106.     If (($script:ShutdownTime - (Get-Date)) -gt (New-TimeSpan -Minutes ($iMinutes - 5))) {
  107.         $form.Activate()
  108.         $timer.Start()
  109.         [void]$form.ShowDialog()
  110.     }
  111.  
  112.     #Stop timer after form is closed
  113.     $timer.Dispose()
  114.     $form.Dispose()
  115.    
  116.     return $null
  117. }
  118.  
  119. For ([int16]$Interval = 15; $Interval -ge 0; $Interval -= 5) {
  120.     [bool]$NextIteration = $false
  121.     $TimeSpan = New-TimeSpan -Minutes $Interval
  122.     Do {
  123.         If (($ShutdownTime - (Get-Date)) -le $TimeSpan) {
  124.             If ($Interval -gt 0) {
  125.                 Show-Message $Interval
  126.             }
  127.             $NextIteration = $true
  128.         }
  129.         Else {
  130.             Start-Sleep -Seconds 1
  131.         }
  132.     } Until ($NextIteration)
  133. }
Add Comment
Please, Sign In to add comment