< Back

Get-d00mHardwareReport

Mon Jan 13, 2020 8:37 am

NAME Get-d00mHardwareReport



SYNOPSIS

Generates system inventory HTML report





SYNTAX

Get-d00mHardwareReport [-ComputerName] <String[]> [[-FilePath] <String>] [[-Credential] <PSCredential>]

[<CommonParameters>]





DESCRIPTION

Queries useful properties from different WMI classes

via CIM and generates an HTML report saved to the

file system





PARAMETERS

-ComputerName <String[]>

The computers to which to execute this report



Required? true

Position? 1

Default value

Accept pipeline input? true (ByValue, ByPropertyName)

Accept wildcard characters? false



-FilePath <String>

The directory to save the HTML report. The default is the current directory.



Required? false

Position? 2

Default value $(Get-Location)

Accept pipeline input? false

Accept wildcard characters? false



-Credential <PSCredential>

The credential to use when creating a CIM session to the computer. The default is the current users

credentials.



Required? false

Position? 3

Default value

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS



OUTPUTS



-------------------------- EXAMPLE 1 --------------------------



PS C:\\>Get-d00mHardwareReport -ComputerName Localhost



This example generates a system inventory HTML report of the localhost

saved to the current file system location using the default credentials.









-------------------------- EXAMPLE 2 --------------------------



PS C:\\>Computer1, Computer2 | Get-d00mHardwareReport



This example generates a system inventory HTML report for the computer

names piped in to the cmdlet saved to the current file system location

using the default credentials.









-------------------------- EXAMPLE 3 --------------------------



PS C:\\>Get-d00mHardwareReport -ComputerName Computer1 -Credential (Get-Credential)



This example generates a systme inventory HTML report for Computer1

using the credentials suppied saved to the current file system location.









-------------------------- EXAMPLE 4 --------------------------



PS C:\\>Get-d00mHardwareReport -FilePath c:\\path\\to\\report



This example generates a system inventory HTML report

for the local machine using default credentials and saved

to the file system path specified.











RELATED LINKS