Create macro.vbs

A basic Macro
This commit is contained in:
Marius Ciepluch 2024-06-18 17:35:58 +02:00 committed by GitHub
parent ee5a76d52f
commit af57147743
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,3 @@
Sub GreetUser()
MsgBox "Hello from PowerShell!", vbInformation, "Greeting"
End Sub