Hi Copilot, is it possible to have a virtual keyboard with a QWERTY format . Currently my virtual keyboard which is inside my 2-In-ONE Laptop running Windows 10 Operating System do not have a QWERTY keyboard format ......... Copilot , is it possible to download a QWERTY keyboard software for my 2-in-ONE Laptop which is running the Wndows 10 Operating System....... THANKS Copilot for your answer.
MICROSOFT Copilot Answer
Yes, it’s absolutely possible to have a QWERTY virtual keyboard on your 2‑in‑1 laptop running Windows 10. By default, Windows 10 includes a built‑in On‑Screen Keyboard (OSK) and a Touch Keyboard, both of which support QWERTY layouts. If yours is showing a different format (like AZERTY or another regional layout), it usually means the input language or keyboard layout is set differently.
Here’s how you can switch it to QWERTY:
🔧 Steps to enable QWERTY layout
Open Settings → Go to Time & Language → Language.
Under Preferred languages, select your language (e.g., English (United States)).
Click Options → Under Keyboards, make sure US QWERTY is added.
If not, click Add a keyboard and choose US QWERTY.
To switch layouts quickly, press Windows key + Spacebar and select QWERTY.
For the Touch Keyboard (the one that pops up when you tap the screen), right‑click the taskbar → enable Show touch keyboard button. When you open it, it should now display QWERTY.
✅ Alternative software
If you prefer a different virtual keyboard app, there are third‑party options you can download (like Free Virtual Keyboard or Comfort On‑Screen Keyboard) that allow customization of layouts, themes, and sizes. But in most cases, the built‑in Windows keyboard already supports QWERTY once the language settings are corrected.
So you don’t really need to download extra software unless you want more customization — switching the layout in Windows settings should solve your issue.
Would you like me to walk you through setting up a shortcut so you can toggle between QWERTY and other layouts instantly, without going back into Settings each time?
Yadullah
Abidi is a Computer Science graduate from the University of Delhi and
holds a postgraduate degree in Journalism from the Asian College of
Journalism, Chennai. With over a decade of experience in Windows and
Linux systems, programming, PC hardware, cybersecurity, malware
analysis, and gaming, he combines deep technical knowledge with strong
editorial instincts.
Yadullah currently writes for MakeUseOf as a Staff Writer, covering
cybersecurity, gaming, and consumer tech. He formerly worked as
Associate Editor at Candid.Technology and as News Editor at The Mac Observer, where he reported on everything from raging cyberattacks to the latest in Apple tech.
In addition to his journalism work, Yadullah is a full-stack developer
with experience in JavaScript/TypeScript, Next.js, the MERN stack,
Python, C/C++, and AI/ML. Whether he's analyzing malware, reviewing
hardware, or building tools on GitHub, he brings a hands-on, developer’s
perspective to tech journalism.
The
Windows Terminal doesn't get a lot of use by the average person using
Windows. After all, it's a graphical interface OS where everything you
need to do can be done via menus and clicks. No need for long,
complicated terminal commands.
Open a terminal, navigate to any folder of your choice, and type tree.
What you'll see as the result isn't a dry list of files, it's a
branching, visual diagram of your entire directory structure, drawn in
ASCII characters right inside the terminal. Every subfolder branches off
like a real tree, and if you add the /F flag, files inside the folder
appear too.
Try running tree /F /A inside any
directory, and you'll see years of chaotic file organization suddenly
become evident. The /A flag switches from graphical box drawing
characters to plain text symbols, which is handy if you want to copy the
output to a document or email without it falling apart.
Netstat
Watch your internet traffic
If you type netstat -a
in the terminal, you'll get a live feed of every active network
connection on your machine. This includes open ports, which ports are
listening, and which remote addresses your computer is talking to right
now.
Another version you should know is netstat -b. This
also shows you the actual executable behind every connection. So if
you've been noticing a suspicious background process that might be
phoning home, this is the perfect command to start digging deep. Once
you run the command a few times, you'll start to get an intuitive feel
for what normal processes look like on your own machine.
cipher /w
Destroy your deleted files
When you delete a file in Windows, it doesn't instantly get
permanently wiped off your storage drive. Windows just removes the
pointer to where the file lives on disk and marks that space as
available. So if you thought emptying the Recycle Bin deleted your files, you're wrong.
The cipher /w
command fixes this. It's a built-in Windows tool that overwrites all
the unallocated space on a drive three times, making any previously
deleted files impossible to recover. The syntax is also straightforward;
just type in cipher /w: followed by the drive letter. For example, to run the command on the C:\ drive, run this command:
cipher /w:C:
Keep
in mind that it's not instantaneous, and can take a while to finish if
run on a large drive. Some privacy apps can charge for this feature, but
Windows has had it built in since XP.
tracert
Map the entire Internet, one hop at a time
Type tracert makeuseof.com and hit Enter. You'll see
a live trace of every single router your data hops through on its way
to our servers—each one listed with its IP address and response time.
The command works by sending packets with progressively increasing TTL
(Time to Live), each one timing out one hop further along the route and
reporting back. It's essentially a GPS breadcrumb trail for your
internet connection.
One of the most practical uses for this
is to figure out where your internet might be facing problems. When your
internet feels slow, tracert tells you exactly where the slowdown is
happening, whether it's your router, your ISP, or something further down
the line.
The philosophical side is wild, too. Run the
command and watch dozens of routers in different cities and countries
respond to your little packet, one by one. It really gives the Internet a
sense of actual physical infrastructure, something we rarely see.
Icanhazdadjoke
Fetch a Dad joke on command
Since Windows 11 includes curl natively, you can use the icanhazdadjoke.com public API to fetch random dad jokes as plain text. Simply put, run this command:
The
command will get you fresh, terrible dad jokes every single time you
run it. This one's mostly for fun, but it also serves as a genuinely
useful sanity check for your internet connection. It's a lot more fun
than pinging 8.8.8.8 and will sometimes make you chuckle.
More
importantly, it's a low-stakes introduction to curl. It's one of the
most powerful tools in the terminal for interacting with web APIs,
downloading files, and testing network endpoints. The dad jokes will
eventually stop being funny, but the curl muscle memory will stay with
you.
PowerShell speech synthesizer
Make your computer talk
This is a PowerShell command rather than a Windows Terminal one, but
it's equal parts ridiculous and interesting. Open PowerShell and run the
following commands one at a time:
Add-Type -AssemblyName System.Speech $speak = New-Object System.Speech.Synthesis.SpeechSynthesizer $speak.Speak("You can now hear your PC speak.")
Your computer will say it out loud, using Windows' built-in text-to-speech engine. The System.Speech
assembly is a full-featured .NET library that is accessible with just
three lines of PowerShell code. You can even set the speaking rate,
change the voice, and pipe in text from other commands.
You
can use it for anything from a script that tells you the weather
forecast when you log in to accessibility tooling, automation scripts,
or just testing whether your speakers are working without needing an
audio file.
Windows Terminal isn't as boring as you think
A handful of commands that start as fun experiments can quickly turn
into tools you rely on. The next time Windows feels like a bloated GUI
you have to wrestle with, fire up the terminal, and try a few of these
commands.
You'll learn more about how your system and network really work,
probably solve a couple of nagging problems, and even have some fun
along the way. Once that happens, that black window with the blinking
cursor stops being as intimidating.
cipher /w is especially useful if you think the projected lifetime of your SSD is too long and want to reduce it.
You
will then have a great justification (to someone who has a degree of
control over your budget, e.g., spouse, parent, boss, etc.) to purchase
one of higher capacity.
cipher /w is especially useful if you think the projected lifetime of your SSD is too long and want to reduce it.
You will then have a great justification (to someone who has a degree of control over your budget, e.g., spouse, parent, boss, etc.) to purchase one of higher capacity.