worksmodule.psm1
function Get-Greeting { param ( [string]$Name = "User" ) return "Hello, $Name! Welcome to PowerShell." } function IsItWorking{ return "Yest, it is working" } |
function Get-Greeting { param ( [string]$Name = "User" ) return "Hello, $Name! Welcome to PowerShell." } function IsItWorking{ return "Yest, it is working" } |