Sharma20.psm1

1
2
3
4
5
6
7
function Hello-Function {
    $message = 'Hello 2021!';
    Write-Output $message;
}

Hello-Function