vinfo.psm1

cls


<#
need one script that can show BIOS, OS ,CS information
#>




function get-bios
{
param([string[]]$cname=".")
Get-WmiObject -Class win32_bios -ComputerName $cname
}

function get-os
{
Get-WmiObject -Class win32_operatingsystem
}

function get-cs
{
Get-WmiObject -Class win32_computersystem
}