You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 17/umbraco-cms/fundamentals/setup/install/unattended-install.md
+9-4Lines changed: 9 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ This article will give you the details you need to install Umbraco unattended.
8
8
9
9
## Get clean install of Umbraco
10
10
11
-
In order to get a clean instance of Umbraco, follow our installation guide for how to [Install an Umbraco project template](install-umbraco-with-templates.md#install-umbraco-with-net-cli).
11
+
In order to get a clean instance of Umbraco, follow our installation guide for how to [Install an Umbraco project template](install-umbraco-with-templates.md#install-using-net-cli).
12
12
13
13
## Configure your database
14
14
@@ -65,7 +65,8 @@ The unattended installs feature is disabled by default. In order to enable it, y
65
65
"InstallUnattended": true,
66
66
"UnattendedUserName": "FRIENDLY_NAME",
67
67
"UnattendedUserEmail": "EMAIL",
68
-
"UnattendedUserPassword": "PASSWORD"
68
+
"UnattendedUserPassword": "PASSWORD",
69
+
"UnattendedTelemetryLevel": "Detailed"
69
70
}
70
71
}
71
72
}
@@ -74,6 +75,8 @@ The unattended installs feature is disabled by default. In order to enable it, y
74
75
75
76
Remember to set the value of `InstallUnattended` to `true`.
76
77
78
+
The `UnattendedTelemetryLevel` can be set to `Minimal`, `Basic`, or `Detailed`. If omitted, `Detailed` is the default.
79
+
77
80
Alternatively you may set your configuration with Environment Variables or other means. Learn more about this in the [Microsoft .Net Core config documentation](https://docs.microsoft.com/en-us/aspnet/core/fundamentals/configuration/?view=aspnetcore-5.0#environment-variables).
@@ -56,6 +57,10 @@ This setting is used to specify the email address of the default admin user.
56
57
57
58
This setting is used to specify the password of the default admin user.
58
59
60
+
## Unattended telemetry level
61
+
62
+
This setting is used to specify the level of telemetry the installation will report. The `UnattendedTelemetryLevel` can be set to `Minimal`, `Basic`, or `Detailed`. If omitted, `Detailed` is the default.
63
+
59
64
### Package migrations unattended
60
65
61
66
Gets or sets a value indicating whether unattended package migrations are enabled.
0 commit comments