Export-RDMSystemInformationReport
Synopsis
Syntax
__AllParameterSets
Export-RDMSystemInformationReport [-Path] <string> [-InputObject] <PSSystemInformationReport>
[-Theme <Theme>] [-AsHtml] [-NoClobber] [-VaultMode <VaultMode>]
[-ForcePromptAnswer <DialogResult[]>] [-WhatIf] [-Confirm] [<CommonParameters>]Description
Examples
PS C:\> $lastYearReports = Get-RDMEntry -Name 'MySystemInformationReportEntry' | Get-RDMSystemInformationReport -After 2023-01-01 -Before 2023-12-31
PS C:\> foreach ($report in $lastYearReports) {
$exportPath = "C:\my\path\$($report.Inventory.ComputerName)_$($report.MetaInformation.CreationDate.ToString('yyyy-MM-dd')).inv"
Export-RDMSystemInformationReport -Path $exportPath -InputObject $report
}Parameters
-AsHtml
-Confirm
-ForcePromptAnswer
-InputObject
-NoClobber
-Path
-Theme
-VaultMode
-WhatIf
CommonParameters
Inputs
RemoteDesktopManager.PowerShellModule.PSOutputObject.PSSystemInformationReport
Notes
Last updated
Was this helpful?