/ Published in: Windows PowerShell
Sample of declare a simple powershell class sample
thanks to Tome Tanasovski (http://powertoe.wordpress.com)
thanks to Tome Tanasovski (http://powertoe.wordpress.com)
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#Sample of declare a simple powershell class sample #thanks to Tome Tanasovski (http://powertoe.wordpress.com) $webclient = new-object psobject -Property @{ timeout = 10 } $webclient; $webclient.timeout=-1; $webclient;