moving shit around
This commit is contained in:
20
testing/Param-Test.ps1
Normal file
20
testing/Param-Test.ps1
Normal file
@@ -0,0 +1,20 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Joins this computer to the Technolog domain.
|
||||
.PARAMETER CompType
|
||||
The computer type. This can either be (w/o quotes) "WKS", or "Server".
|
||||
.PARAMETER ServerTier
|
||||
Can only be used with if CompType is "Server"- determines the tier of the server.
|
||||
#>
|
||||
|
||||
# Parameters
|
||||
param(
|
||||
[Parameter(Position=0,Mandatory=$true)]
|
||||
[string]$CompType = "None",
|
||||
[Parameter(Position=1,Mandatory=$false)]
|
||||
[string]$ServerTier = "None"
|
||||
)
|
||||
|
||||
|
||||
$CompType
|
||||
$ServerTier
|
Reference in New Issue
Block a user