mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
11 lines
273 B
PowerShell
11 lines
273 B
PowerShell
function Import-USPS {
|
|
[CmdletBinding()]
|
|
param(
|
|
$TrackingNumber,
|
|
[Switch]$UseDefaultCredentials
|
|
|
|
)
|
|
|
|
Import-Html "https://tools.usps.com/go/TrackConfirmAction?qtc_tLabels1=$($TrackingNumber)" 0 -UseDefaultCredentials:$UseDefaultCredentials
|
|
}
|