7 lines
400 B
PowerShell
7 lines
400 B
PowerShell
Add-Type -AssemblyName PresentationCore,PresentationFramework
|
|
$ButtonType = [System.Windows.MessageBoxButton]::YesNoCancel
|
|
$MessageIcon = [System.Windows.MessageBoxImage]::Error
|
|
$MessageBody = "Are you sure you want to delete the log file?"
|
|
$MessageTitle = "Confirm Deletion"
|
|
$Result = [System.Windows.MessageBox]::Show($MessageBody,$MessageTitle,$ButtonType,$MessageIcon)
|
|
"Your choice is $Result" |