Created
June 1, 2016 13:55
-
-
Save vMarkusK/701ce05c93a1b36e08f9ced4b9a738a7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Tells you how to get Awsome. | |
.DESCRIPTION | |
Tells you how to get Awsome. | |
.EXAMPLE | |
Get-Awsome | |
#Requires PS -Version 2.0 | |
#> | |
function Get-Awsome { | |
[cmdletbinding()] | |
param ( ) | |
Process { | |
Write-Output "Get Awsome, Learn PowerShell! (http://mycloudrevolution.com/)" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment