Apps missing after installing Windows 10 Fall creators update [How to Fix]

Apps are missing after installing Windows 10 Fall creators update, ya you read it right.! Once you installed/upgraded the latest version of Windows 10, i.e., windows 10 fall creators update you will see some apps, not some apps almost all apps will seem to be missing, this would be the case even when you try to rebuild index of cortana.

So, how to get back missing apps on windows 10 fall creators update .. ?

The answer is pretty much simple, all you need to do is, to just follow the steps below which will re-register all your apps.

I'm not that much Advanced user, can i try it ?

Of course, you can still try those steps, because we want to get back our old apps.

1) Press Windows (logo) and X keys.

2) You will see an option called Windows Powershell(Admin), select the option.

[See : How to Open Powershell in Windows 10 [Beginners Guide ]

3) If User Account Control pops up, select yes.

4) Type or copy paste the below commands and hit enter after every command.


  i)  reg delete “HKCU\Software\Microsoft\Windows NT\CurrentVersion\TileDataModel\Migration\TileStore” /va /f

ii) get-appxpackage -packageType bundle |% {add-appxpackage -register -disabledevelopmentmode ($_.installlocation + "\appxmetadata\appxbundlemanifest.xml")}

iii) $bundlefamilies = (get-appxpackage -packagetype Bundle).packagefamilyname

iv) get-appxpackage -packagetype main |? {-not ($bundlefamilies -contains $_.packagefamilyname)} |% {add-appxpackage -register -disabledevelopmentmode ($_.installlocation + "\appxmanifest.xml")}

5) Wait for sometime, till it completes.

6) Restart your PC.

That's it.

It would work like an temporary fix, remember Microsoft is already aware of the issue, so they might release an update to fix this bug anytime soon.

Enjoy.

How to Fix & Connect Bluetooth in Kali Linux (2025) – Ultimate Troubleshooting Guide (Updated)

How to connect Bluetooth in Kali Linux 2025 or how to enable bluetooth on any latest or old version of Kali Linux? that's what we gonna see in this post. 

When you opened the Bluetooth using the normal GUI, it will display "Bluetooth Turned Off, Turn on to Connect devices and receive file transfers", even when you slide the option to right side on the top right corner (which normally indicates the option is turned on), but the switch refuses to cooperate? 

Been there, buddy. Frustrating, right? You expect a simple toggle, but Linux loves making things... complicated. And of course, when we're talking Kali Linux, there’s no exception! 😅

But hey, credit where it's due—Kali has come a long way, with tons of refinements and additions in the latest versions!

Alright, back to the actual reason you’re here...

🚀 The good news? It’s fixable—and no, you don’t need to be some Kali Linux guru to get it working. Because let's be real—even if you are one, sometimes you completely forget exact commands! True or true? 😆

🔥 Whether you're trying to connect headphones, speakers, keyboards, or even AirPods to Kali Linux, this guide is here to make it simple. Let’s get that Bluetooth working—without headaches! 💯

So, what you need to do ?
You don't need to perform any big operations, all you need to do is to just start bluetooth service in your Kali Linux OS.


1. First Things First: Is Bluetooth Even Enabled?

 1️⃣ Open Terminal (Press Ctrl + Alt + T). 

 2️⃣ Run this command:

sudo systemctl start bluetooth.service

3️⃣ Alternatively, this simpler command works too: service bluetooth restart

That's it.

Now, open the same bluetooth GUI screen, you can see your Bluetooth device and linux scanning and displaying nearest devices. I
s your adapter showing up? If yes, awesome! 🎉 If not, keep reading...

Sometimes, if there will be issues due to GUI versions, So try the fool proof way for that which as usual is using terminal..

Do, this you won't be disappointed.

1) Fire up your terminal

Write Sudo service bluetooth restart and hit enter (if you had logged in as root, simply type Service bluetooth restart)

2) Once service is restarted, type bluetoothctl and Hit Enter.

3) Now, we have to perform scanning of devices, so run "Scan on" Command on the same terminal and hit enter.

Makesure, your bluetooth devices are in paring mode.

4) Once your device is discovered, type Pair "Mac address of the device ID" for example Pair 00:18:00:00 

5) It will pair, or will show pair already exists if its done before or u might need to run additional command trust "device mac address id". example: trust XX:XX:XX:XX:XX:XX

6) Now, just type connect "device id" for example : Connect 00:19:00:00 and hit enter.

🔥 Boom! Your device is now connected via Bluetooth. Time to enjoy back your wireless freedom on Kali Linux! 

💡 Pro Tip: If Bluetooth disappears after every restart, enable it permanently using:

2. Fix "No Bluetooth Adapter Found" Error

This one hits hard, especially for users trying Bluetooth on Raspberry Pi or Virtual Machines.

🚨 If Kali says "No Bluetooth Adapter Found," your system isn’t detecting the device properly. Here’s how to fix that instantly:

Check If Your Bluetooth Adapter Exists 

 1️⃣ Open Terminal, and run:

lsusb | grep Bluetooth

2️⃣ If nothing shows up, it means your system doesn’t detect a Bluetooth adapter—either because your device lacks one or drivers are missing.

🔥 Solution: ✅ If you're using USB Bluetooth, unplug/replug it, then run:

sudo dmesg | grep bluetooth

✅ If Bluetooth is blocked, unblock it with:

sudo rfkill unblock bluetooth

✅ Restart the service again:

sudo systemctl restart bluetooth.service

3. Fix Bluetooth Not Working After Kali Linux Update

🚨 After updating Kali Linux, some users report Bluetooth breaking randomly—devices refuse to connect, or the whole Bluetooth option disappears.

Here's how to fix Bluetooth after an update: 

 1️⃣  Reinstall missing packages (sometimes updates remove drivers):

sudo apt install bluez blueman

2️⃣ Restart the service:

sudo systemctl restart bluetooth.service

3️⃣ Check logs for errors:

dmesg | grep bluetooth

💡 Pro Tip: If updates mess up Bluetooth, rolling back to a previous kernel sometimes fixes it. Try:

sudo apt list --installed | grep linux-image

Look for older kernel versions, then boot into an earlier one via GRUB. 🚀

4. Bluetooth Security Considerations in Kali Linux

Since Kali Linux is focused on cybersecurity, here are some quick safety tips when using Bluetooth:

Disable Discovery Mode When Not Pairing

  • Keeping Bluetooth always discoverable makes your device vulnerable to attacks.

  • After pairing a device, run:

discoverable off

Prevent Unwanted Pairing Attempts

  • If you’re in public or shared networks, attackers might try to force-pair with your device.

  • To limit this, set pairing mode to only trusted devices using:

trust XX:XX:XX:XX:XX:XX --Enter your device id here

💡 Final Tip: If you don’t use Bluetooth often, disable it to reduce risk:

sudo systemctl stop bluetooth.service

Alright, We are at end of the post. So, let me finish with common questions..

These are common Bluetooth questions users ask

Q: How do I check if Bluetooth is enabled in Kali Linux? 

A: Run bluetoothctl show in Terminal—if Bluetooth is enabled, it will list adapter details.

Q: Why does my Bluetooth disconnect randomly? 

  A: This usually happens due to power-saving settings—disable power management with:

sudo systemctl mask sleep.target suspend.target

Q: Can I connect AirPods to Kali Linux? 

 A: Yes! Follow the pairing steps above, but AirPods may require additional audio configurations using Pulseaudio if i'm not wrong..

You now know exactly how to enable, fix, and connect Bluetooth devices in Kali Linux on all versions which even works on Raspberry Pi, Virtual Machines, and USB adapters!


Hope it helps:)

Latest articles that might help you :

Windows media creation tool error 0x80004005 - 0xa001a [Solution that could help!]

Windows media creation tool error 0x80004005 - 0xa001a[How to fix, alternate ways].

Today, while trying to create a bootable Windows 10 Fall Creators update ISO, the windows media creation tool crashed and produced an error code 0x80004005, 0xa001a.
I searched online and found another user had posted the same question on forums.

Here is the question asked by one of the user on MS forum.: 

Hi, Since the Fall update I have had nothing but problems with a bootable USB drive. Windows media creation tool returns an error 0x80004005 - 0xa001a, which the internet seems oblivious too and the windows 7 USB/DVD download tool creates a drive which is none bootable.

I spoke to microsoft who advised me to download the windows 10 ISO and use the windows 7 USB/DVD download tool to create the media but it failed to boot.

I searched online for solutions as to why windows 7 USB/DVD download tool would not create a bootable USB drive from a windows 7 ISO and I was given directions to use Diskpart. This also failed.

So does anyone have any solutions to fix the 0x80004005 - 0xa001a error with the media creation tool.

I also tried both windows 7 and windows 10 USB Drive in 2 systems and neither would boot the windows install program.


Since, i had experienced the same problem, i decided to figure out the solution myself. So i found a simple solution that work in most cases.

So, what you need ?

Just download the ISO using browser, create a bootable USB and enjoy.
  
 So, how to download and install Windows 10 Fall Creators Update ISO?

1) Download the Windows 10 Fall creators update ISO using the direct links.


You can check the below video to know how to download the latest windows 10 using direct links.

2) After downloading the ISO, Download Rufus/ UltraISO.

3) Install Rufus, and create the Bootable USB.

4) Install Windows 10 as usual.

Check the Video on our youtube channel if you need detailed information.

Enjoy.