Function New-Employee { | |
[cmdletbinding()] | |
param( | |
[Parameter(Mandatory)] | |
$EmployeeID, | |
[Parameter(Mandatory)] | |
$FirstName, | |
[Parameter(Mandatory)] | |
$LastName, | |
[Parameter(ParameterSetName='IT Admin')] | |
[switch]$ITPermissions, | |
[Parameter(ParameterSetName='HR Associate')] | |
[switch]$HRPerms, | |
[Parameter(ParameterSetName='Sales Associate')] | |
[switch]$SalesPerms, | |
[Parameter(ParameterSetName='Contractor')] | |
[switch]$Contractor, | |
[ValidateSet("IT", "HR", "Sales")] | |
$NetworkShares = 'IT', | |
[switch]$O365Enabled | |
) | |
} | |
Show-Command New-Employee |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
mexicangangboss commentedJan 30, 2019
Awesome. Love your blog by the way!