Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Add-Type -AssemblyName PresentationFramework
- function Show-Notification {
- param (
- [string]$Title,
- [string]$Message
- )
- [System.Windows.MessageBox]::Show($Message, $Title)
- }
- # Możesz dostosować tytuł i wiadomość powiadomienia
- $notificationTitle = "Informacja"
- $notificationMessage = "Witamy w systemie. Pamiętaj o przestrzeganiu zasad bezpieczeństwa."
- Show-Notification -Title $notificationTitle -Message $notificationMessage
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement