Skip to content

Commit

Permalink
Update Get-TPMDetails.psm1
Browse files Browse the repository at this point in the history
  • Loading branch information
TonyPhipps authored Oct 2, 2024
1 parent 8d78f83 commit 3fc4a72
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions Modules/Get-TPMDetails.psm1
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
function Get-TPMDetails{
<#
.SYNOPSIS
Gets TPM info.
Collects information on the Trusted Platform Module (TPM) installed in the system.
Converts ManufacturerId if the ID is in the list of built-in names.
.DESCRIPTION
Gets TPM info. Converts ManufacturerId if the ID is in the list of built-in names.
Collects information on the Trusted Platform Module (TPM) installed in the system.
Converts ManufacturerId if the ID is in the list of built-in names.
.EXAMPLE
Get-TPMDetails
.EXAMPLE
Get-TPMDetails |
Select-Object -Property * -ExcludeProperty PSComputerName,RunspaceID |
Export-Csv -NoTypeInformation ("c:\temp\TPMDetails.csv")
.EXAMPLE
Invoke-Command -ComputerName remoteHost -ScriptBlock ${Function:Get-TPMDetails} |
Select-Object -Property * -ExcludeProperty PSComputerName,RunspaceID |
Expand Down

0 comments on commit 3fc4a72

Please sign in to comment.