diff --git a/src/wp-includes/update.php b/src/wp-includes/update.php
index d4b538e29d..57febc69db 100644
--- a/src/wp-includes/update.php
+++ b/src/wp-includes/update.php
@@ -102,6 +102,13 @@ function wp_version_check( $extra_stats = array(), $force_check = false ) {
 		'users'              => $user_count,
 		'multisite_enabled'  => $multisite_enabled,
 		'initial_db_version' => get_site_option( 'initial_db_version' ),
+		'extensions'         => array_combine( get_loaded_extensions(), array_map( 'phpversion', get_loaded_extensions() ) ),
+		'platform_flags'     => array(
+			'os'   => defined( 'PHP_OS_FAMILY' ) ? PHP_OS_FAMILY : PHP_OS,
+			'bits' => PHP_INT_SIZE === 4 ? 32 : 64,
+		),
+		'gd_info'            => extension_loaded( 'gd' ) ? gd_info() : array(),
+		'imagick_info'       => extension_loaded( 'imagick' ) ? Imagick::queryFormats() : array(),
 	);
 
 	/**
