mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
10 lines
252 B
PowerShell
10 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
|
|
}
|