Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssougnez/0ecfb8e543969290c79c69ef4f629efb to your computer and use it in GitHub Desktop.
Save ssougnez/0ecfb8e543969290c79c69ef4f629efb to your computer and use it in GitHub Desktop.
Param(
[Parameter(Mandatory = $true)]
[string]$Package,
[Parameter(Mandatory = $true)]
[string]$Hostname,
[int]$Port = 80,
[Parameter(Mandatory = $true)]
[string]$Username,
[Parameter(Mandatory = $true)]
[string]$Email,
[Parameter(Mandatory = $true)]
[string]$Password,
[Parameter(Mandatory = $true)]
[ValidateSet("SqlCe", "SqlServer", "MySql", "SqlAzure")]
[string]$DatabaseType = "SqlCe",
[string]$SqlServer,
[string]$DatabaseName = "umbraco-cms",
[bool]$SqlUseIntegratedAuthentication = $false,
[string]$SqlUsername,
[string]$SqlPassword
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment