Skip to content

Commit

Permalink
Update Get-Software.psm1
Browse files Browse the repository at this point in the history
  • Loading branch information
TonyPhipps authored Oct 2, 2024
1 parent 3c0334f commit 3dc8b11
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions Modules/Get-Software.psm1
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
function Get-Software {
function Get-Software {
<#
.SYNOPSIS
Gets installed software.
Collects information on all currently installed software on the system.
.DESCRIPTION
Gets installed software.
Collects information on all currently installed software on the system.
.EXAMPLE
Get-Software
.EXAMPLE
Get-Software |
Select-Object -Property * -ExcludeProperty PSComputerName,RunspaceID |
Export-Csv -NoTypeInformation ("c:\temp\Software.csv")
.EXAMPLE
Invoke-Command -ComputerName remoteHost -ScriptBlock ${Function:Get-Software} |
Select-Object -Property * -ExcludeProperty PSComputerName,RunspaceID |
Expand Down

0 comments on commit 3dc8b11

Please sign in to comment.