Adding comment headers to wip1
This commit is contained in:
parent
700c23d537
commit
33dfbcbe32
|
@ -1,3 +1,20 @@
|
|||
<#
|
||||
.SYNOPSIS
|
||||
I do this
|
||||
|
||||
.DESCRIPTION
|
||||
I really do a lot of this
|
||||
|
||||
.OUTPUTS
|
||||
Results are printed to the console. Future releases will support outputting to a log file.
|
||||
|
||||
.NOTES
|
||||
Change Log
|
||||
V1.0 Initial release
|
||||
|
||||
Reference Links: www.google.com
|
||||
#>
|
||||
|
||||
$domain = "myDomain"
|
||||
$password = "myPassword!" | ConvertTo-SecureString -asPlainText -Force
|
||||
$username = "$domain\myUserAccount"
|
||||
|
|
Loading…
Reference in New Issue