Advertisement
SuperSilverainox

prototyp.ps1

Dec 29th, 2023
1,638
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Add-Type -AssemblyName PresentationFramework
  2.  
  3. function Show-Notification {
  4.     param (
  5.         [string]$Title,
  6.         [string]$Message
  7.     )
  8.  
  9.     [System.Windows.MessageBox]::Show($Message, $Title)
  10. }
  11.  
  12. # Możesz dostosować tytuł i wiadomość powiadomienia
  13. $notificationTitle = "Informacja"
  14. $notificationMessage = "Witamy w systemie. Pamiętaj o przestrzeganiu zasad bezpieczeństwa."
  15.  
  16. Show-Notification -Title $notificationTitle -Message $notificationMessage
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement