diff options
| author | Clecio Jung | 2023-03-18 20:43:43 -0300 |
|---|---|---|
| committer | Clecio Jung | 2023-03-18 20:43:43 -0300 |
| commit | 0113ec2c4358a5a6f4ad473372a63d2aa3c249c0 (patch) | |
| tree | 18c1faa2ccebd38ca28511597cdbf031fc69e16b /examples/cfg.ini | |
| parent | a3942b3241189a003414874a96732e373e63ccae (diff) | |
| download | libini-0113ec2c4358a5a6f4ad473372a63d2aa3c249c0.tar.xz libini-0113ec2c4358a5a6f4ad473372a63d2aa3c249c0.tar.zst | |
Improve parsing
Diffstat (limited to 'examples/cfg.ini')
| -rw-r--r-- | examples/cfg.ini | 56 |
1 files changed, 56 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 |
