Skip to content

Commit

Permalink
25.2.30.17.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gwblok committed Feb 20, 2025
1 parent 68d4a67 commit e6fef89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hardware/Dell/CommandUpdate/EMPS/Dell-EMPSWarranty.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ function Get-DellWarrantyInfo {
$ExportPath = "$env:programdata\Dell\WarrantyExport.csv"
Write-Verbose -Message "CSV Path: $CSVPath"
write-verbose -Message "Export Path: $ExportPath"
write-verbose -Message "Start-Process -FilePath $DellWarrantyCLIPath -ArgumentList `"/I=$($CSVPath) /E=$($ExportPath)`" -Wait -NoNewWindow -PassThru"
Start-Process -FilePath $DellWarrantyCLIPath -ArgumentList "/I=$($CSVPath) /E=$($ExportPath)" -Wait -NoNewWindow -PassThru
write-verbose -Message "Start-Process -FilePath $DellWarrantyCLIPath -ArgumentList `"/I=$($CSVPath) /E=$($ExportPath)`" -Wait -NoNewWindow"
Start-Process -FilePath $DellWarrantyCLIPath -ArgumentList "/I=$($CSVPath) /E=$($ExportPath)" -Wait -NoNewWindow
$Data = Get-Content -Path $ExportPath | ConvertFrom-Csv
if ($Cleanup) {
write-verbose "Cleanup"
Expand Down

0 comments on commit e6fef89

Please sign in to comment.