├── .github └── FUNDING.yml ├── LICENSE ├── LegacyScript └── WarrantyRetrieval.ps1 ├── PSWarranty.psd1 ├── PSWarranty.psm1 ├── README.md ├── private ├── Get-AppleWarranty.ps1 ├── Get-DellWarranty.ps1 ├── Get-HPWarranty.ps1 ├── Get-LenovoWarranty.ps1 ├── Get-MSWarranty.ps1 ├── Get-ToshibaWarranty.ps1 ├── Get-WarrantyAutotask.ps1 ├── Get-WarrantyBTIO.ps1 ├── Get-WarrantyCSV.ps1 ├── Get-WarrantyCWA.ps1 ├── Get-WarrantyCWM.ps1 ├── Get-WarrantyDRMM.ps1 ├── Get-WarrantyHalo.ps1 ├── Get-WarrantyHudu.ps1 ├── Get-WarrantyITG.ps1 ├── Get-WarrantyNable.ps1 ├── Get-WarrantyNinja.ps1 ├── Get-WarrantySWRMM.ps1 └── Get-WarrantySyncro.ps1 └── public ├── Get-WarrantyInfo.ps1 ├── Set-WarrantyAPIKeys.ps1 └── Update-WarrantyInfo.ps1 /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/LICENSE -------------------------------------------------------------------------------- /LegacyScript/WarrantyRetrieval.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/LegacyScript/WarrantyRetrieval.ps1 -------------------------------------------------------------------------------- /PSWarranty.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/PSWarranty.psd1 -------------------------------------------------------------------------------- /PSWarranty.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/PSWarranty.psm1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/README.md -------------------------------------------------------------------------------- /private/Get-AppleWarranty.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/private/Get-AppleWarranty.ps1 -------------------------------------------------------------------------------- /private/Get-DellWarranty.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/private/Get-DellWarranty.ps1 -------------------------------------------------------------------------------- /private/Get-HPWarranty.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/private/Get-HPWarranty.ps1 -------------------------------------------------------------------------------- /private/Get-LenovoWarranty.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/private/Get-LenovoWarranty.ps1 -------------------------------------------------------------------------------- /private/Get-MSWarranty.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/private/Get-MSWarranty.ps1 -------------------------------------------------------------------------------- /private/Get-ToshibaWarranty.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/private/Get-ToshibaWarranty.ps1 -------------------------------------------------------------------------------- /private/Get-WarrantyAutotask.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/private/Get-WarrantyAutotask.ps1 -------------------------------------------------------------------------------- /private/Get-WarrantyBTIO.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/private/Get-WarrantyBTIO.ps1 -------------------------------------------------------------------------------- /private/Get-WarrantyCSV.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/private/Get-WarrantyCSV.ps1 -------------------------------------------------------------------------------- /private/Get-WarrantyCWA.ps1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /private/Get-WarrantyCWM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/private/Get-WarrantyCWM.ps1 -------------------------------------------------------------------------------- /private/Get-WarrantyDRMM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/private/Get-WarrantyDRMM.ps1 -------------------------------------------------------------------------------- /private/Get-WarrantyHalo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/private/Get-WarrantyHalo.ps1 -------------------------------------------------------------------------------- /private/Get-WarrantyHudu.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/private/Get-WarrantyHudu.ps1 -------------------------------------------------------------------------------- /private/Get-WarrantyITG.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/private/Get-WarrantyITG.ps1 -------------------------------------------------------------------------------- /private/Get-WarrantyNable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/private/Get-WarrantyNable.ps1 -------------------------------------------------------------------------------- /private/Get-WarrantyNinja.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/private/Get-WarrantyNinja.ps1 -------------------------------------------------------------------------------- /private/Get-WarrantySWRMM.ps1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /private/Get-WarrantySyncro.ps1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/Get-WarrantyInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/public/Get-WarrantyInfo.ps1 -------------------------------------------------------------------------------- /public/Set-WarrantyAPIKeys.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/public/Set-WarrantyAPIKeys.ps1 -------------------------------------------------------------------------------- /public/Update-WarrantyInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinTegelaar/PowerShellWarrantyReports/HEAD/public/Update-WarrantyInfo.ps1 --------------------------------------------------------------------------------