Bạn có thể hiển thị thông báo trong Windows 10 bằng cách sử dụng tập lệnh powershell:
https://technet.microsoft.com/en-us/l Library / ff730952.aspx
[void]
[System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")
$objNotifyIcon = New-Object System.Windows.Forms.NotifyIcon
$objNotifyIcon.Icon = "C:\Scripts\Forms\Folder.ico"
$objNotifyIcon.BalloonTipIcon = "Info"
$objNotifyIcon.BalloonTipText = "Please turn off your wireless mouse"
$objNotifyIcon.BalloonTipTitle = "Battery life reminder"
$objNotifyIcon.Visible = $True
$objNotifyIcon.ShowBalloonTip(10000)
Cách chạy tập lệnh khi tắt máy tính đã được trả lời trên stackoverflow, vì vậy tôi sẽ chỉ liên kết nó ở đây:
https://stackoverflow.com/questions/12434863/executing-a-batch-script-on-windows-shutdown
Tôi chưa có cơ hội để kiểm tra nó, vì vậy tôi không biết, nếu thông báo sẽ hiển thị đủ lâu.
gpedit.msc là một phần của Windows 10 Professional hoặc tốt hơn. Có nhiều cách không chính thức để cài đặt bằng tay mặc dù.