diff --git a/CMakeLists.txt b/CMakeLists.txt
index a74be9d0df0b39b434f66847ea5f7b4c80a8a3bc..9aeea1c13bf066c41bb798e6e5d486293a1bbbd3 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -30,7 +30,7 @@ set(QT6_LOCATION "" CACHE PATH "Additional Location to search for Qt6 libraries
 option(ENABLE_QT_TRANSLATION "Enable translations for the Qt frontend" OFF)
 CMAKE_DEPENDENT_OPTION(SUYU_USE_BUNDLED_QT "Download bundled Qt binaries" "${MSVC}" "ENABLE_QT" OFF)
 
-option(ENABLE_WEB_SERVICE "Enable web services (telemetry, etc.)" OFF)
+option(ENABLE_WEB_SERVICE "Enable web services (telemetry, etc.)" ON)
 
 option(SUYU_USE_BUNDLED_FFMPEG "Download/Build bundled FFmpeg" "${WIN32}")
 
diff --git a/src/suyu/configuration/configure_web.ui b/src/suyu/configuration/configure_web.ui
index 96bd701f9308aec29dfe8942bcbba3efcbffbfd5..35779e828541e18e073ba4f1d5171840acad0bb9 100644
--- a/src/suyu/configuration/configure_web.ui
+++ b/src/suyu/configuration/configure_web.ui
@@ -3,7 +3,7 @@
  <class>ConfigureWeb</class>
  <widget class="QWidget" name="ConfigureWeb">
   <property name="enabled">
-   <bool>false</bool>
+   <bool>true</bool>
   </property>
   <property name="geometry">
    <rect>
diff --git a/src/suyu/main.cpp b/src/suyu/main.cpp
index 14d1237265296c78be34b0ee47f8a1ca35288301..4963dde610a92aec9a6487db4a026f55f0ece01d 100644
--- a/src/suyu/main.cpp
+++ b/src/suyu/main.cpp
@@ -417,6 +417,9 @@ GMainWindow::GMainWindow(std::unique_ptr<QtConfig> config_, bool has_broken_vulk
     game_list->LoadCompatibilityList();
     game_list->PopulateAsync(UISettings::values.game_dirs);
 
+    // Show one-time "callout" messages to the user
+    ShowTelemetryCallout();
+
     // make sure menubar has the arrow cursor instead of inheriting from this
     ui->menubar->setCursor(QCursor());
     statusBar()->setCursor(QCursor());