Generate a Report for installed Hotfix for Bulk Servers using PowerShell

Generate a Report for installed Hotfix for Bulk Servers using PowerShell

 

Function Get-ComInfo {
 
param(
## Computers
$computers
 
)
 
"#"*80
"Server HotFix Report"
"Generated $(get-date)"
"Generated from $(gc env:computername)"
"#"*80
 
Get-HotFix -ComputerName $computers
 
}
 
Get-Content computers.txt | ForEach-Object { Get-ComInfo -computers $_}




_____________________________________________________________________________________________________________

Regards
Biswajit Biswas
My Blogs|TechnetWiki Ninja

Leave a Comment
  • Please add 2 and 1 and type the answer here:
  • Post
Wiki - Revision Comment List(Revision Comment)
Sort by: Published Date | Most Recent | Most Useful
Comments
  • Richard Mueller edited Revision 5. Comment: Removed tag "w2k8r2"

  • Richard Mueller edited Revision 4. Comment: Replace RGB values with color names in HTML to restore colors

Page 1 of 1 (2 items)
Wikis - Comment List
Sort by: Published Date | Most Recent | Most Useful
Posting comments is temporarily disabled until 10:00am PST on Saturday, December 14th. Thank you for your patience.
Comments
  • Richard Mueller edited Revision 4. Comment: Replace RGB values with color names in HTML to restore colors

  • Richard Mueller edited Revision 5. Comment: Removed tag "w2k8r2"

Page 1 of 1 (2 items)