Featured

Running Windows 11 on Linux with KVM/QEMU

This guide walks through the full process of running Windows 11 on Linux using KVM/QEMU and Virt-Manager,  the most robust and future-proof setup available today. While tools like VirtualBox still exist, KVM/QEMU has quietly become the gold standard on Linux. It offers: Near-native CPU performance Excellent disk and network throughput Proper UEFI, Secure Boot, and TPM support Long-term compatibility with Windows 11 updates Before starting, make sure you have: A Linux system with virtualization enabled in BIOS Intel: VT-x / VT-d AMD: SVM / IOMMU At least 8 GB RAM (16 GB recommended) Around 80 GB of free disk space A Windows 11 ISO The VirtIO drivers ISO Step 1: Check Virtualization Support Open a terminal and run: egrep -c '(vmx|svm)' /proc/cpuinfo If the result is 1 or higher , virtualization is enabled. If it returns 0 , you’ll need to enable it in your BIOS before continuing. Step 2: Install KVM, QEMU, and Virt-Manager On Ubuntu / Debian-based systems: sudo apt update sudo...

Unlocking Hidden Windows Features with ViveTool

When Microsoft tests new features in Windows, they don’t always roll them out to everyone right away. Instead, many updates are tucked away inside the system, waiting for Microsoft to flip a switch through A/B testing or staged rollouts. That’s where ViveTool comes in—a command-line utility that lets you enable (or disable) these hidden features before they officially reach the general public.

What is ViveTool?

ViveTool is a free, open-source utility created by Rafael Rivera and Albacore, two well-known Windows enthusiasts. It allows you to interact with Feature IDs inside Windows. Each experimental or upcoming feature has an associated ID, and ViveTool gives you direct control over toggling them on or off.

This tool has become especially popular with Windows Insider users who want early access to things like redesigned Settings pages, new Start menu layouts, taskbar tweaks, or advanced features Microsoft is quietly testing.

How ViveTool Works

  • Features in Windows are controlled by Feature Flags.

  • Microsoft enables or disables them server-side, but the code is already on your PC.

  • ViveTool lets you manually enable these flags via PowerShell or Command Prompt.

Example workflow:

  1. Download ViveTool from its official GitHub page.

  2. Extract it into a folder (for example, C:\ViveTool).

  3. Open PowerShell or Command Prompt as Administrator.

  4. Use a command like:

    vivetool /enable /id:<feature_id>
    
  5. Restart your PC to apply the change.

To turn something back off, swap /enable for /disable.


Why Use ViveTool?

  • Access upcoming features early: See what Microsoft is working on before it’s public.

  • Experimentation: Try hidden UI elements, new animations, or backend improvements.

  • Control: Turn off features that Microsoft forces but you don’t like.


Risks and Considerations

  • Stability: Features are hidden for a reason—they may be incomplete or buggy.

  • Compatibility: Some changes can break apps or system processes.

  • Updates: Microsoft may overwrite your changes with new builds.

Always note the Feature ID you enable so you can easily disable it if problems arise.

Comments