Your cart is currently empty!
Category: Windows Powershell/Command Prompt
Top 5 Ways to Create a Local User Account in Windows 11
To create a local account, you’ll need to sign in with an administrative account. After that, you can use any of the following methods in the video to create a local account on your Windows 11 computer. Commands:net user Username Password /add$Password = Read-Host -AsSecureStringNew-LocalUser “AccountName” -Password $Password -FullName “Username” -Description “AccountDescription”Add-LocalGroupMember -Group “Users” -Member… Read more
4 Best Ways To View Windows Update History In Windows 11
You can check the Windows Update History of your PC using any of the methods in the video. Chapters:0:00 Intro0:23 HOW TO VIEW YOUR WINDOWS UPDATE HISTORY USING THE SETTINGS APP1:04 HOW TO VIEW YOUR WINDOWS UPDATE HISTORY USING CONTROL PANEL1:39 HOW TO VIEW YOUR WINDOWS UPDATE HISTORY USING WINDOWS TERMINAL2:12 HOW TO VIEW YOUR… Read more
9 Ways to Shut Down and Restart a Windows 11 PC
If you use a Windows 11 PC, you have multiple ways to perform a system reboot. Although you probably won’t need them all, it’s always better to know about alternative methods should the situation arise. Chapters:0:00 Intro0:23 Restart Windows 11 via Start Menu0:39 Restart Windows 11 via Power User Menu1:00 Restart Windows 11 via Keyboard… Read more
How to Fix “DNS_probe_finished_no_internet” in Google Chrome
Do you keep running into a “DNS_probe_finished_no_internet” error while loading web pages in the Google Chrome browser on your Windows desktop? I’ll show you how to fix that. What you will learn: 1. Refresh the DNS Client Service a. quick fix for DNS-related issues b. How to refresh “DNS Client” 2. Switch to Google DNS… Read more
How to Fix “There Is a System Repair Pending” Error in Windows
In most cases, the error is easy to fix and doesn’t require any major troubleshooting. A reboot can resolve the issue, but if it doesn’t, there are other fixes you can try. In this video, I will show you the most common ways to address this error. Chapters:0:00 Intro0:23 Use DISM1:16 Tweak registry settings2:18 End… Read more
How to Fix Service Host (SysMain) High Disk Usage in Windows 11/10
In this video, I will show you a few ways to disable Superfetch and fix Service Host: SysMain high CPU usage problem. Commands:sc stop “SysMain” & sc config “SysMain” start=disabledsfc /scannow Chapters:0:00 Intro0:23 Disable SysMain from Services1:07 Disable SysMain Using Command Prompt1:32 Disable SysMain from the Registry2:27 Run SFC Scan3:10 End screen What you’ll learn:… Read more
Windows Spotlight Not Working in Windows? 4 Ways to Fix
A buggy Windows Update may cause your PC to stop displaying Spotlight images. Corrupt system files can also trigger the problem. I’ll show you how to fix the problem. Commands:C:\Users\%username%\AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\Settings Get-AppxPackage -allusers ContentDeliveryManager | foreach {Add-AppxPackage “$($_.InstallLocation)\appxmanifest.xml” -DisableDevelopmentMode -register } %USERPROFILE%/AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets Chapters:0:00 Intro0:23 Reset Windows Spotlight Settings1:27 Re-register Windows Spotlight2:45 Run the System File Checker3:21… Read more
How to Fix a “No Internet Secured” Error in Windows 10 & 11
Web pages won’t open, and you can’t download a thing! What’s going on? It’s much simpler than you think to fix the issue on a Windows 10 or 11 PC. Chapters:0:00 Intro0:23 Reset Your Computer’s Network Settings0:53 Run the Windows Network Troubleshooter1:25 Change Networking Settings2:15 Refresh Your PC’s IP Configuration and Flush DNS Cache2:41 End… Read more
Bluetooth Not Working in Windows 11? 7 Best Fixes to Try
Do you have trouble pairing or reconnecting Bluetooth devices in Windows 11? Or do you encounter other Bluetooth issues on your PC? I will show you how to fix that. Commands:sfc /scannowDISM.exe /Online /Cleanup-Image /Restorehealth Chapters:0:00 Intro0:23 Run the Automatic Bluetooth Troubleshooter0:51 Remove & Re-add Bluetooth Device1:17 Check Bluetooth Support Service1:58 Update Your PC’s Bluetooth… Read more
The Complete Guide to Creating Symbolic Links (aka Symlinks) on Windows
Windows 11, 10, 8, 7, and Vista all support symbolic links — also known as symlinks — that point to a file or folder on your system. You can create them using the Command Prompt or a third-party tool called Link Shell Extension. LinkLink Shell Extension – http://schinagl.priv.at/nt/hardlinkshellext/linkshellextension.html Chapters:0:00 Intro0:23 How to Create Symbolic Links… Read more