Get-sqmServerHardwareReport
Other sqmSQLTool v1.8.2+
Creates an HTML hardware configuration report for one or more servers.

Examples

# Lokalen Server analysieren - Report wird automatisch im Browser geoeffnet
# Lokalen Server analysieren - Report wird automatisch im Browser geoeffnet
    Get-sqmServerHardwareReport
# Remote-Server
# Remote-Server
    Get-sqmServerHardwareReport -ComputerName "SQL01"
# Mehrere Server, eigener Report-Pfad
# Mehrere Server, eigener Report-Pfad
    Get-sqmServerHardwareReport -ComputerName "SQL01","SQL02","SQL03" -ReportPath "C:\Reports"
# Nur speichern, nicht oeffnen - Dateipfad zurueckgeben
# Nur speichern, nicht oeffnen - Dateipfad zurueckgeben
    $path = Get-sqmServerHardwareReport -ComputerName "SQL01" -NoOpen -PassThru
    Write-Host "Report: $path"
# CSV-Export fuer Weiterverarbeitung in Excel
# CSV-Export fuer Weiterverarbeitung in Excel
    Get-sqmServerHardwareReport -ComputerName "SQL01","SQL02" -OutputFormat CSV -NoOpen
# Alle Formate auf einmal (HTML + CSV + TXT)
# Alle Formate auf einmal (HTML + CSV + TXT)
    Get-sqmServerHardwareReport -ComputerName "SQL01" -OutputFormat All -NoOpen -PassThru