Index: src/wp-admin/includes/class-wp-internal-pointers.php
===================================================================
--- src/wp-admin/includes/class-wp-internal-pointers.php	(revision 43152)
+++ src/wp-admin/includes/class-wp-internal-pointers.php	(working copy)
@@ -41,7 +41,7 @@
 		 *     )
 		 */
 		$registered_pointers = array(
-			// None currently
+			'index.php' => 'wp496_privacy',
 		);
 
 		// Check if screen related pointer is registered
@@ -65,7 +65,7 @@
 		 *     )
 		 */
 		$caps_required = array(
-			// None currently
+			'wp496_privacy'    => array( 'manage_options' ),
 		);
 
 		// Get dismissed pointers
@@ -152,6 +152,38 @@
 	public static function pointer_wp410_dfw() {}
 
 	/**
+	 * Display a pointer for the new privacy tools.
+	 *
+	 * @since 4.9.6
+	 */
+	public static function pointer_wp496_privacy() {
+		$content  = '<h3>' . __( 'Privacy and Personal Data' ) . '</h3>';
+		$content .= '<h4>' . __( 'Privacy Policy' ) . '</h4>';
+		$content .= '<p>' . __( 'Create or select your site’s privacy policy page under <strong>Settings > Privacy</strong> to keep your users informed and aware.' ) . '</p>';
+		$content .= '<h4>' . __( 'Personal Data Export and Erasure' ) . '</h4>';
+		$content .= '<p>' . __( 'New <strong>Tools</strong> have been added to help you with personal data export and erasure requests.' ) . '</p>';
+
+		if ( is_rtl() ) {
+			$position = array(
+				'edge'  => 'right',
+				'align' => 'left',
+				'at'    => 'left+40',
+			);
+		} else {
+			$position = array(
+				'edge'  => 'left',
+				'align' => 'right',
+				'at'    => 'right-40 bottom'
+			);
+		}
+
+		self::print_js( 'wp496_privacy', '#menu-tools', array(
+			'content' => $content,
+			'position' => $position,
+		) );
+	}
+
+	/**
 	 * Prevents new users from seeing existing 'new feature' pointers.
 	 *
 	 * @since 3.3.0
Index: src/wp-includes/css/wp-pointer.css
===================================================================
--- src/wp-includes/css/wp-pointer.css	(revision 43152)
+++ src/wp-includes/css/wp-pointer.css	(working copy)
@@ -36,6 +36,10 @@
 	-moz-osx-font-smoothing: grayscale;
 }
 
+.wp-pointer-content h4 {
+	margin: 1.33em 15px;
+}
+
 .wp-pointer-content p {
 	padding: 0 15px;
 }
