diff options
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/cfg.ini | 56 | ||||
| -rw-r--r-- | examples/incorrect.ini | 5 |
2 files changed, 61 insertions, 0 deletions
diff --git a/examples/cfg.ini b/examples/cfg.ini new file mode 100644 index 0000000..ae0ae42 --- /dev/null +++ b/examples/cfg.ini @@ -0,0 +1,56 @@ +[InitialConfiguration] +;Optional, display language can only be one of the installed language +Language=en-us +;Optional, The name of a script that runs after setupComplete.cmd but before the initial configuration begins. +;Optional +Locale=en-us +;Optional +Country=US +;Optional +Keyboard=0409:00000409 +AcceptEula=true +;This is only required on a server where an OEM EULA has been specified +;by using the OOBE.xml file +AcceptOEMEula=true +;Optional. Example: My Company Name +CompanyName=EnterCompanyName +ServerName=EnterServerName +; Example: CONTOSO +NetbiosName=EnterNetbiosDomainName +; Example: contoso.local +DNSName=EnterDNSDomain +; Used to set the user name for the domain admin +UserName=EnterDomainAdminUserName +;The password has to be strong and at least 8 characters +PlainTextPassword=EnterAdminPassword +;. Used to set the user name for the domain standard user account. Ignored in migration mode. +StdUserName=EnterDomainStandardUserName +;. The password for the domain standard user account has to be strong and at least 8 characters +StdUserPlainTextPassword=EnterStandardUserPassword +;Controls the Watson and automatic update settings +Settings=All or Updates or None +WebDomainName=www.abc.com +TrustedCertFileName=c:\cert\a.pfx +TrustedCertPassword=Enteryourpassword +EnableVPN=true +EnableRWA=true +IPv4DNSForwarder=<IPV4Address,IPV4Address,¦> +IPv6DNSForwarder=<IPV6Address,IPV6Address,¦> +VpnIPv4StartAddress=<IPV4Address> +VpnIPv4EndAddress=<IPV4Address> +VpnBaseIPv6Address=<IPV6Address> +VpnIPv6PrefixLength=<number> +;All these section are optional. + [PostOSInstall] +;Optional, The name of a script that runs after setupComplete.cmd but before the initial configuration begins. + +IsHosted=true +StaticIPv4Address=<IPV4Address> +StaticIPv4Gateway=<IPV4Address> +StaticIPv4SubnetMask=<IPV4SubnetMask> +StaticIPv6Address=<IPV6Address> +StaticIPv6SubnetPrefixLength=<number> +StaticIPv6Gateway=<IPV6Address> +ClientBackupOn=true +FileHistoryOn=true +LaunchPadHiddenTasks=<Microsoft.LaunchPad.AdminDashboard,Microsoft.LaunchPad.Backup>
\ No newline at end of file diff --git a/examples/incorrect.ini b/examples/incorrect.ini index 317ce8a..42dd5f2 100644 --- a/examples/incorrect.ini +++ b/examples/incorrect.ini @@ -10,6 +10,11 @@ a = 1 test=2 beta=96 +# We allow for spaces and special characters inside values, but not on keys +erro r = 56 +correct = al bel gam + +# Section names can have special characters and spaces [ section 2 ] test2 = 65 a = ; 15 |
