Skip to content

FooBartn/Win.ServerInformation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Purpose:

This module is used to gather data from a Windows operating system

Usage:

Examples:

  • Get-ServerData -ComputerName localhost -Verbose
  • Get-SecurityData -ComputerName localhost -Verbose
  • Get-AdminUserData -ComputerName localhost -Verbose

You could use PoSHRSJobs and AD to get everything like:

$Servers = Get-ADComputer -Filter {operatingsystem -Like "Windows *server*"} |
    Select-Object -ExpandProperty Name

$Servers | Start-RSJob -ScriptBlock {
    Import-Module Win.ServerInformation -ErrorAction Stop
    Get-ServerData -Name $_
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published