-
Code's Tags
-
Your Codes
-
Reffers
-
Linked Codes
|
Code:
Short link for Twitter:
HTML:
HTML view:
Copy Source | Copy HTML- [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")
- function msgBox($x){
- [System.Windows.Forms.MessageBox]::Show($x, 'Done!:PowerShell',
- [Windows.Forms.MessageBoxButtons]::OK,
- [Windows.Forms.MessageBoxIcon]::Information, [Windows.Forms.MessageBoxDefaultButton]::Button1,
- [Windows.Forms.MessageBoxOptions]::ServiceNotification
- )
- }
-
- function done(){
- msgBox("done")
- }
-
|