Files
Chocolatey-tools/functions/Invoke-RebootPrompt.ps1
2019-07-10 11:36:48 -04:00

25 lines
760 B
PowerShell

Function Invoke-RebootPrompt {
<#
.SYNOPSIS
Used in Start-ChocoRemotemgmt to prompt if a user wants to reboot a computer.
#>
param(
$Message = "Click OK to reboot",
$Title = "Continue or Cancel"
)
Add-Type -AssemblyName System.Windows.Forms | Out-Null
$MsgBox = [System.Windows.Forms.MessageBox]
$Decision = $MsgBox::Show($Message,$Title,"OkCancel", "Information")
If ($Decision -ne "Cancel") {
$outputBox.Text = ""
try {
$outputBox.Text = ("Rebooting " + $ComputerList.Text)
Restart-Computer -ComputerName $ComputerList.Text -Force -ErrorAction stop
}
catch {
$ErrorMessage = $_.Exception.Message
$outputBox.Text = $ErrorMessage
}
}
}