< Back

Get-URLData

Mon Jan 13, 2020 8:23 am

NAME Get-URLData



SYNOPSIS

This function parses a URL and returns an object with all the detailed information of it





SYNTAX

Get-URLData [-Url] <String> [-IsValidURL] [<CommonParameters>]





DESCRIPTION

Long description





PARAMETERS

-Url <String>

{{Fill Url Description}}



Required? true

Position? 1

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-IsValidURL [<SwitchParameter>]

{{Fill IsValidURL Description}}



Required? false

Position? named

Default value False

Accept pipeline input? False

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

String







OUTPUTS

Object







NOTES





v0.3 Author: St ????phane van Gulick



-------------------------- EXAMPLE 1 --------------------------



PS C:\\> Get-UrlData -Url 'https://Google.com/Search'



Name Value

---- -----

FullUrl https://Google.com/Search

BaseUrl https://Google.com

DomainName Google.com

Extension .com

BaseName Google

Path /Search

Protocol https

QueryString

Fragment







RELATED LINKS