Index: wp-admin/menu.php
===================================================================
--- wp-admin/menu.php	(revision 42771)
+++ wp-admin/menu.php	(working copy)
@@ -256,6 +256,7 @@
 	$submenu['tools.php'][5]  = array( __( 'Available Tools' ), 'edit_posts', 'tools.php' );
 	$submenu['tools.php'][10] = array( __( 'Import' ), 'import', 'import.php' );
 	$submenu['tools.php'][15] = array( __( 'Export' ), 'export', 'export.php' );
+	$submenu['tools.php'][20] = array( __( 'Privacy Policy' ), 'manage_options', 'privacy-policy.php' );
 if ( is_multisite() && ! is_main_site() ) {
 	$submenu['tools.php'][25] = array( __( 'Delete Site' ), 'delete_site', 'ms-delete-site.php' );
 }
Index: wp-admin/privacy-policy.php
===================================================================
--- wp-admin/privacy-policy.php	(nonexistent)
+++ wp-admin/privacy-policy.php	(working copy)
@@ -0,0 +1,32 @@
+<?php
+/**
+ * Privacy Policy Screen.
+ *
+ * @package WordPress
+ * @subpackage Administration
+ */
+
+/** WordPress Administration Bootstrap */
+require_once( dirname( __FILE__ ) . '/admin.php' );
+
+$title = __('Privacy Policy');
+
+get_current_screen()->add_help_tab( array(
+	'id'      => 'privacypolicy',
+	'title'   => __('Privacy Policy'),
+	'content' => '<p>' . __('This page will show all of the information gathered by WordPress and/or compatible plugins to assist you on making your Privacy Policy page.' ) . '</p>',
+) );
+
+get_current_screen()->set_help_sidebar(
+	'<p><strong>' . __('For more information:') . '</strong></p>' .
+	'<p>' . __('<a href="#">Documentation on GDPR</a>') . '</p>'
+);
+
+require_once( ABSPATH . 'wp-admin/admin-header.php' );
+
+?>
+	<div class="wrap">
+		<h1><?php echo esc_html( $title ); ?></h1>
+	</div>
+<?php
+include( ABSPATH . 'wp-admin/admin-footer.php' );
