We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This script produces 4 lines of output for each item:
$computers = Get-PSWSUSClient -IncludedInstallationState failed -IncludeDownstreamComputerTargets ; $failed += foreach ($computer in $computers) { Get-PSWSUSUpdatePerClient $computer -UpdateScope (New-PSWSUSUpdateScope -IncludedInstallationStates Failed) } ; $failed | sort ComputerName,UpdateKB | ft -auto
I have dealt with it by using the -unique parameter for sort, but it seems peculiar.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This script produces 4 lines of output for each item:
$computers = Get-PSWSUSClient -IncludedInstallationState failed -IncludeDownstreamComputerTargets ;
$failed += foreach ($computer in $computers) { Get-PSWSUSUpdatePerClient $computer -UpdateScope (New-PSWSUSUpdateScope -IncludedInstallationStates Failed) } ;
$failed | sort ComputerName,UpdateKB | ft -auto
I have dealt with it by using the -unique parameter for sort, but it seems peculiar.
The text was updated successfully, but these errors were encountered: