Get-DellWarrantyInfo.ps1
<#PSScriptInfo .VERSION 1.0.1 .GUID 32344980-a9d3-4e37-83bb-94595ff60a3f .AUTHOR nave keinan .COMPANYNAME .COPYRIGHT .TAGS .LICENSEURI .PROJECTURI .ICONURI .EXTERNALMODULEDEPENDENCIES .REQUIREDSCRIPTS .EXTERNALSCRIPTDEPENDENCIES .RELEASENOTES #> <# .DESCRIPTION #dell service tag lookup# #> $DellServiceTag = Get-CimInstance win32_bios | select serialnumber $Dellservicetag = $DellServiceTag.serialnumber start-process -FilePath 'C:\Program Files\Internet Explorer\iexplore.exe' -ArgumentList "https://www.dell.com/support/home/us/en/04/product-support/servicetag/$DellServiceTag/overview#" |