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