These 5 PowerShell commands let me disable the annoying Windows features that aren’t in Settings


Everyone has at least a couple of Windows features they find particularly annoying. Whether that’s ads showing up everywhere, deep OneDrive integration that can sometimes make locally stored files harder to manage, or not being able to uninstall certain built-in apps even though you know you’ll never use them, we all have our Windows pet peeves.

The good news is that you can disable most Windows features you don’t like via PowerShell or Registry Editor. Today, I’ll show you how to use PowerShell to disable certain Windows features I find particularly annoying, as well as how to remove apps you can’t uninstall through Windows Settings.

Fully remove Copilot

Gone for good

Removing Copilot from Windows with a PowerShell command.

My Windows PC is completely Copilot-free. It’s not that I avoid using LLM chatbots altogether; it’s simply that there’s a time and place for them, and I’d rather access them through my browser than have one constantly showing its face all over my PC.

I used a PowerShell script to fully remove Copilot, along with a bunch of other unnecessary apps and services, back when I installed Windows 11 on my desktop PC. Of course, I forgot exactly which script I used because I didn’t write its name down. No biggie, because there’s an excellent PowerShell script known as RemoveWindowsAI you can use to safely and efficiently remove AI-related features and components from your PC, such as Windows Recall and AI-related appx and CBS packages, not just Copilot.

Before running these kinds of scripts, make sure you verify that they’re safe to execute and won’t break Windows features and components you rely on. You should also create a system restore point beforehand. As always, if you decide to run it, you’re doing so at your own risk. The script I’m using has a GitHub page, so feel free to check it out before running it.

All you have to do is open PowerShell as administrator (you should always open it as administrator to run the commands shown in this article) and paste the following script:

& ([scriptblock]::Create((irm "https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1")))

Then wait a bit for the app to load. Once you’re shown the menu listing the components you can remove, pick the ones you want gone and click Apply. I recommend enabling Backup mode so you can restore removed services later if needed.

Removing Copilot from Windows with a PowerShell command.

Removing all AI-related services from your PC takes a while, so just let the tool do its job. Once it’s done, you’ll need to restart your PC. After you boot back into Windows, you shouldn’t see any Copilot components on your system anymore, along with Recall if you chose to remove it as well.

Uninstall apps Windows doesn’t let you

Including built-in apps

I don’t recommend uninstalling apps this way unless you absolutely know what you’re doing. If you’re sure you know which app you want removed and that removing it won’t negatively affect Windows, go for it. But if you aren’t sure, look up whether it’s safe to remove it online, or simply leave it alone.

You can remove most apps on your Windows PC by opening Settings and going to Apps > Installed apps. The thing is, you can’t remove every single app this way, including a number of built-in Windows apps. Well, you can remove pretty much any app from your PC with PowerShell. Before you start deleting apps, you’ll need to list all app packages installed on your PC by typing:

Get-AppxPackage -AllUsers Once you find an app you want removed, locate its full package name and type:

Remove-AppxPackage -Package PackageFullName

Then replace PackageFullName with the app’s full package name.

Let me show you how to do it with an example. I found that I still had the Weather app on my PC even though I thought I’d already uninstalled it. Its full package name was Microsoft.BingWeather_4.54.63040.0_x64__8wekyb3d8bbwe. To uninstall it, I had to type the following command:

Remove-AppxPackage -Package Microsoft.BingWeather_4.54.63040.0_x64__8wekyb3d8bbwe

The uninstallation process started as soon as I hit Enter, and a few seconds later, Weather was gone from my PC.

Prevent Microsoft from reinstalling apps through Windows updates

And delete them for good

Windows 11 includes a number of preinstalled UWP (Universal Windows Platform) apps that are automatically installed during the initial sign-in process when setting up Windows. These apps include things like Outlook, Microsoft 365, Clipchamp, and more.

These so-called “provisioned” apps are installed every time a new user logs into a Windows PC, even if you’d already deleted them from your own user profile. They can also get reinstalled during major Windows updates, meaning they may reappear even after you’ve removed them.

Luckily, you can get rid of these apps for good by deprovisioning them and then uninstalling them. All you need are a few PowerShell commands. To start, you need to list all provisioned apps on your PC with the following command:

Get-AppxProvisionedPackage -Online | Format-Table DisplayName, PackageName

Once you hit Enter, you’ll get a list of all provisioned apps on your PC. As you can see from my screenshots, I don’t have many left because I’d already deprovisioned and deleted most of them, but a few still remain. One of those apps, aimgr, is a local AI manager component tied to Microsoft 365 that somehow survived the purge I ran after installing Windows 11.

Naturally, after seeing it was still on my PC, I wanted to remove it for good. So I copied its full package name (shown in one of the screenshots) and typed the following command to deprovision it:

Remove-AppxProvisionedPackage -Online -PackageName aimgr_0.20.47.0_x64__8wekyb3d8bbwe

If you want to deprovision an app on your PC, just replace aimgr_0.20.47.0_x64__8wekyb3d8bbwe with the full package name of the app you want to remove.

After deprovisioning it, I ran the command that lists provisioned apps again, and aimgr no longer appeared. That means it was deprovisioned for all current and future user accounts on my PC, and a future Windows update shouldn’t bring it back.

However, that’s not the end of it, because you still have to uninstall the app from your current Windows installation. Deprovisioning only prevents Windows from automatically installing it for new users or restoring it through certain update processes.

What I did next was run the command that lists all installed apps on my PC:

Get-AppxPackage -AllUsers I then located the aimgr app and removed it with the following command:

Remove-AppxPackage -Package aimgr_0.20.47.0_x64__8wekyb3d8bbwe

Now aimgr is not only deprovisioned, but also removed from my PC for good. If you want to get an app back after removing it this way in the future, you can always reinstall it the regular way.

Microsoft decided to “upgrade” the contextual right-click menu in Windows 11, but many long-time Windows users, myself included, still find the Windows 10 version superior. Unfortunately, you can’t simply disable the new contextual menu and roll back to the Windows 10 version through Settings, but you can do it with a simple command.

I used this tweak right after installing Windows 11 on my PC to bring back the Windows 10-style contextual menu, and I can confirm it’s worked great ever since. I haven’t had to reapply it after updates or anything like that.

To restore the Windows 10 contextual menu, paste the following command into PowerShell and then restart your PC:

reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve

If you later decide you actually prefer the newer design, you can revert to the default Windows 11 right-click menu by running the following command and then rebooting your PC:

reg.exe delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f

Disabling Bing online search results from appearing in Windows Search.

Another Windows 11 feature I find particularly annoying is Bing-powered online search results appearing in Windows Search and the Start menu. To me, they just make Search slower without adding much value, because when I want to search for something online, I use a browser. I use Windows Search to look for settings, apps, or files stored locally on my PC.

Unfortunately, you can’t fully disable this feature through Windows Settings, but you can with PowerShell. Disabling Bing online search results is dead simple. All it takes is entering the following command into PowerShell and hitting Enter:

reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Search /v BingSearchEnabled /t REG_DWORD /d 0 /f

You generally shouldn’t need to reboot your PC for the change to take effect, though you may need to restart Windows Explorer. Unfortunately, Microsoft has largely disabled this tweak from also removing Microsoft Store app suggestions in Search. There used to be more effective workarounds for this, but many of them have since been blocked or broken by Windows updates. Still, this tweak is better than nothing.

Microsoft Windows 11 logo on a transparent background

What’s included?

Device encryption, find my device, firewall and network protection, internet protection, and more

Brand

Microsoft

Upgrading the operating system for your PC can be simple with Windows 11 Home; it offers a simple, fast, and intuitive interface for ease of use.



PowerShell is one of the most useful Windows tools out there

PowerShell is, hands down, one of the most useful tools available in Windows. You can use it to troubleshoot and fix issues, install, update, and remove apps, disable features you don’t need, enable or disable optional Windows components, automate tasks, and much more.

If you’ve been avoiding it because the command-line interface looks intimidating, try running a few simple everyday commands and see for yourself that PowerShell really isn’t that scary once you learn the ropes.


Windows running on a tablet with the PowerShell open and a command asking Windows to make the user's life easier.


You’re wasting your time on Windows—these 3 PowerShell scripts save me hours every week

Stop doing manually what your PC has been able to automate since forever.



Source link

Leave a Reply

Subscribe to Our Newsletter

Get our latest articles delivered straight to your inbox. No spam, we promise.

Recent Reviews


The Toyota Corolla Cross Hybrid has quickly become the default choice for buyers looking to step into an affordable hybrid SUV. It’s practical, efficient, and backed by a reputation that makes it an easy recommendation. But when you look beyond the badge, it’s no longer the clear-cut value leader it appears to be.

One Korean rival from Kia quietly outperforms it where it matters most. It’s cheaper to buy, significantly more fuel-efficient, and offers a more refined and spacious experience, despite targeting the same budget-conscious buyers. Instead of just meeting expectations, it raises them for what an entry-level hybrid SUV should deliver.

That’s what makes this comparison so one-sided. When a vehicle costs less while doing more, using less fuel, offering more room, and feeling more polished, it stops being an alternative and starts looking like the obvious choice.

In order to give you the most up-to-date and accurate information possible, the data used to compile this article was sourced from various manufacturer websites, including the EPA.


2026 Toyota Crown Signia


This Toyota hybrid beats Acura, Genesis, and even Lexus where it matters most

The Toyota Crown Signia does more than keep up. In several categories, it sets the pace.

There aren’t many small hybrid SUVs, but the Kia Niro is the best

Easily the most budget-friendly crossover on the market

Hybrid crossovers are a really attractive proposition. You get the added practicality of an SUV and fuel efficiency that keeps your monthly fuel bills low. Perhaps the most obvious choice here, especially if you’re on a tight budget, is the Toyota Corolla Cross Hybrid. However, if you’re looking for the best bang for your buck, and the most efficiency, then the Kia Niro remains king of the subcompact SUV segment.

2026 Kia Niro Hybrid trims and pricing

Models

Starting MSRP

LX

$27,390

EX

$30,190

SX

$33,390

SX Touring

$35,790

As we’ve already mentioned, the Corolla Cross Hybrid is kind of the benchmark for small hybrid SUVs, with its badge definitely helping make it so popular. The Toyota has a starting price of $29,395, meaning it is just over $2,000 more expensive than the Kia. Despite this, we think even the most affordable Niro Hybrid feels more refined, better equipped, and, to top it all off, its more efficient.

With the Niro being one of the most affordable crossovers on the market, you have a little wiggle room when it comes to trims. We still wouldn’t climb the ladder far, as we think the EX offers the best bang for your buck. It comes with niceties like a smartphone charging pad, faux-leather upholstery, and an upgraded infotainment screen. The Premium package is also definitely worth the extra $2,000, adding things like a panoramic sunroof, a power-operated tailgate, and a premium sound system.


Front 3/4 shot of a red 2024 Mazda MX-5 Miata RF driving on a winding road with the ocean in the background.


These 5 sporty cars keep smiles high and fuel bills low

Fun behind the wheel doesn’t have to mean pain at the pump.

Neither are particularly entertaining, but the Niro is lighter on fuel

Beating Toyota at the hybrid game isn’t easy

Toyota is one of the most experienced automakers out there when it comes to building hybrid powertrains, with the Japanese brand being a big proponent of the setup. This is why it’s so impressive that the little Niro comes out ahead when it comes to efficiency. On top of this, Kia has delivered a more refined driving experience that feels better than you’d expect considering the price you pay.

Kia Niro Hybrid performance and efficiency


980919-1.jpg

kia-logo.jpeg

Base Trim Engine

1.6L I4 Hybrid

Base Trim Transmission

6-speed auto-shift manual

Base Trim Drivetrain

Front-Wheel Drive

Base Trim Horsepower

103.5 HP @5700 RPM

Base Trim Torque

106.3 lb.-ft. @ 4000 RPM

Base Trim Fuel Economy (city/highway/combined)

53/54/53 MPG

Base Trim Battery Type

Lithium polymer (LiPo)

Make

Kia

Model

Niro



The Corolla Cross Hybrid has a little more grunt than the Kia, putting down 196 horsepower versus the Niro’s dinky 139 horses. The 1.6-liter engine in the Korean crossover is an underachiever, which is why it takes around 8.9 seconds to get up to 60 miles per hour. With both of these crossovers being more urban crawlers than highway cruisers, we don’t think that lack of power is the end of the world.

There really isn’t a winner when it comes to driving engagement here, with both small SUVs being exceptionally dull to drive. However, the Kia Niro does come feature a pretty plush ride quality. It also gets a six-speed DCT instead of the CVT in the Corolla, which results in less droning when accelerating, resulting in a more refined experience.

Fuel economy

Model

City

Highway

Combined

Kia Niro FE

53 MPG

54 MPG

53 MPG

Kia Niro

53 MPG

45 MPG

49 MPG

Toyota Corolla Cross Hybrid

46 MPG

39 MPG

42 MPG

Efficiency is a massive reason to pick a Kia Niro over a Corolla Cross Hybrid. The base model Niro is rated for up to 53 miles per gallon combined, with every other model managing 49 miles per gallon combined. This means that even the least efficient Niro is rated to get seven more miles per gallon than a Toyota Corolla Cross Hybrid.


2027 Hyundai IONIQ 9 AWD Performance Calligraphy Black Ink


This Hyundai SUV takes three-row EV luxury into new territory

Hyundai IONIQ 9 AWD Performance Calligraphy Black Ink reveal

Kia delivers a sleek and stylish interior in the 2026 Niro

Meanwhile, the Corolla Cross is a bit boring

Toyota has always been known to value simplicity, and this has often resulted in somewhat underwhelming interiors. While there isn’t anything wrong with the cabin of the Corolla Cross, and it does come well-equipped, it does lean a little too far in the utilitarian direction. The Niro, on the other hand, finds a good middle ground between simplicity and modernity.

Interior dimensions and comfort

Model

Kia Niro Hybrid

Toyota Corolla Cross Hybrid

Front row headroom

40.5 inches

38.6 inches

Front row legroom

41.5 inches

42.9 inches

Second row headroom

39.6 inches

39 inches

Second row legroom

39.8 inches

32 inches

Cargo capacity (behind second row)

22.8 cubic feet

21.5 cubic feet

Both the Niro and the Corolla Cross feel very practical for cheap subcompact SUVs, but the Kia has a pretty clear advantage. The Niro offers a much more spacious rear row of seats, with tons of legroom. You’d have no problem fitting even particularly tall passengers in the rear seats. It also does have a slightly more spacious cargo hold, though the difference here is much smaller.

Both the Corolla Cross and Niro have similar philosophies regarding interior design, but with some differences in execution. Both aim for basic functionality, but the Kia does it in a much more contemporary way. It’s obvious at all times that both crossovers are budget-oriented, in no small part thanks to the cheap plastics used, but build quality is good. The Kia also offers a few upscale touches that put it ahead of its Japanese rival, especially on higher trim levels.

Infotainment and technology

There is very little competition between the Niro and Corolla Cross when it comes to tech features. Both come standard with an eight-inch infotainment screen to start, with a 10.3-inch screen available on every trim but the base Niro and a 10.5-inch screen being optional in the Corolla Cross.

The two budget crossovers are fairly evenly matched when it comes to other tech features. Things like smartphone mirroring and a wireless smartphone charging pad are available on the Kia and Toyota. One key difference is the optional sound systems, with the Niro’s seven-speaker Harman/Kardon sound system performing much better than the optional JBL system in the Corolla Cross.


Cheaper, more efficient, and more refined

When comparing these two small crossovers side-by-side, it’s really hard to make a case for the Toyota. The Corolla Cross does have more power and comes with the peace of mind you get from the Toyota badge, but in just about every other way the Kia feels like the better deal. For less money, you’re getting a crossover that is more spacious, less boring on the inside, and far more efficient. In just about every way, the Niro is a more successful budget hybrid crossover.



Source link