demomod.psm1

cls

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