Return to Snippet

Revision: 68772
at February 23, 2015 02:54 by jatubio


Updated Code
#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;

Revision: 68771
at February 23, 2015 02:31 by jatubio


Initial Code
$webclient = new-object psobject -Property @{
   timeout = 10
}

$webclient;
$webclient.timeout=-1;
$webclient;

Initial URL


Initial Description
Sample of declare a simple powershell class sample
thanks to Tome Tanasovski (http://powertoe.wordpress.com)

Initial Title
Sample of declare a simple powershell class sample

Initial Tags


Initial Language
Windows PowerShell