Featured

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 ID s 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 contr...

Reboot your PC on a schedule with Task Scheduler

1. Open Task Scheduler


Press the Windows key, type Task Scheduler, then hit Enter.

  1. Create a New Basic Task

    • In Task Scheduler, select Create Basic Task on the right side.
    • Give it a name, like “Daily Reboot,” and click Next.
  2. Choose Trigger

    • Set the task to run Daily.
    • Pick the time you want your computer to reboot every day, then click Next.
  3. Choose Action

    • Select Start a program and click Next.
  4. Program/Script Details

    • In the “Program/Script” field, type:
      shutdown.exe
      
    • In the “Add arguments” field, type:
      /r /f /t 0
      
      The /r option reboots, /f forces programs to close, and /t 0 sets it to happen immediately.
  5. Finish

    • Click Next to review the settings, and finally click Finish.

Comments