關閉      標題:訂便當提醒 alert_lunch.ps1 powershell
內容:
powershell

alert_lunch.ps1

$title = "訂便當提醒";
$message = "記得訂便當", "9:30 結單";
Add-Type -AssemblyName presentationFramework
[System.Windows.MessageBox]::Show($message,$title,'OK','Information')



.\alert_lunch.ps1