Required-Script1.ps1
<#PSScriptInfo .VERSION 2.5 .GUID 92ef7977-8c92-4e2c-81e7-34db0657da1e .AUTHOR manikb .COMPANYNAME Microsoft Corporation .COPYRIGHT (c) 2015 Microsoft Corporation. All rights reserved. .TAGS Tag1 Tag2 Tag-Required-Script1-2.5 .LICENSEURI http://required-script1.com/license .PROJECTURI http://required-script1.com/ .ICONURI http://required-script1.com/icon .EXTERNALMODULEDEPENDENCIES .REQUIREDSCRIPTS .EXTERNALSCRIPTDEPENDENCIES .RELEASENOTES Required-Script1 release notes #> <# .DESCRIPTION Description for the Required-Script1 script #> Param() Function Test-FunctionFromScript_Required-Script1 { Get-Date } Workflow Test-WorkflowFromScript_Required-Script1 { Get-Date } |