1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
function Ver-Tam { [CmdletBinding()] param ( [Parameter(Mandatory,ValueFromPipeline)] [String] $Url ) process { $webRequest = [System.Net.WebRequest]::Create($Url) $response = $webRequest.GetResponse() $response.ContentLength $response.Dispose() } } Ver-Tam https://www.jesusninoc.com/wp-content/plugins/wp-postratings/images/stars_crystal/rating_over.gif |