Your cart is currently empty!
Category: Windows Powershell/Command Prompt
Common Microsoft Store and App Issues in Windows (With Fixes)
Having issues with the Microsoft Store or its apps not downloading? Follow these troubleshooting steps to fix any problems. Chapters:0:00 Intro0:23 Reset the microsoft store1:03 Clear the store cache1:31 Reset windows update components2:40 Edit the registry for connection errors3:54 Re-register the microsoft store4:35 End screen What you will learn: 1. Reset the Microsoft Store a.… Read more
How to Fix Encrypt Contents to Secure Data Greyed Out in Windows 10
Windows 10 comes with the Encrypted File System (EFS) that allows users to encrypt their data in a single folder or drive. In this feature, I will show 4 different methods to fix encrypt contents to secure data greyed out in Windows 10. Without further ado, let’s begin Chapters:0:00 Intro0:23 Enable EFS using windows registry1:30… Read more
How to Disable Print Spooler Service on Windows 10
If you’re witnessing error messages such as “Print Spooler Error” or “Printer Connection Failed”, you may want to disable the Print Spooler service and re-enable it to see if that fixes the issue. Commands:Stop-Service -Name Spooler -ForceSet-Service -Name Spooler -StartupType Disabled Chapters:0:00 Intro0:23 Disable print spooler using group policy editor1:04 Disable print spooler from the… Read more
How to Create Multiple Folders at Once in Windows 10
Manually creating new folders and subfolders is time-consuming if you want to organize and manage files on your Windows 10 PC. Instead, you can create multiple folders at once using the Command Prompt, PowerShell, or a batch file. Commands:“sunday”, “monday”, “tuesday”, “wednesday”, “thursday”, “friday”, “saturday” | %{New-Item -Name “$_” -ItemType “Directory”} Chapters:0:00 Intro0:23 How to… Read more
4 Ways To Forget Saved Wifi Networks In Windows 10
This video discusses four ways through which you can forget a single or all Wi-Fi connections saved on a device. Commands:netsh wlan show profilesnetsh wlan delete profile name=”ProfileName”netsh wlan delete profile name=* i=* Chapters:0:00 Intro0:23 Forget wi-fi network in windows 10 using system tray0:48 Forget wi-fi network in windows 10 using settings app1:22 Forget wi-fi… Read more
3 Ways To Bypass Upgrade Blocks (Safeguard Holds) In Windows 10)
If your PC has not been receiving an update lately, it is likely that the upgrades have been blocked. However, Microsoft has incorporated an option for you to bypass this blockade and optionally keep updating your OS as they are released. Chapters:0:00 Intro0:23 Disable safeguard holds using group policy editor1:31 Disable safeguard holds using registry… Read more
How to Replace Quick Access With Favorites in Windows 10
Windows 10 offers a Quick Access menu in File Explorer’s sidebar. However, the folks using the File Explorer since Windows 7 prefer the Favorites menu in the sidebar. Thankfully, you can replace Quick Access menu with Favorites in Windows 10. Commands:{323CA680-C24D-4099-B94D-446DD2D7249E}cd %userprofile%/linksmklink /d SomeName %USERPROFILE%\SourceFolder Chapters:0:00 Intro0:23 Use registry editor3:17 Command prompt to create links4:06… Read more
100% Disk Usage in Windows 10? 6Tips and Tricks to Fix This Issue
Got 100% disk usage in Windows 10? Here are several tips and potential fixes! One is bound to help you fix this annoying Windows issue. Chapters:0:00 Intro0:23 Slow performance? run disk check1:23 Disable windows search for improved disk performance2:28 Disable sysmain to fix 100% disk usage in windows 102:47 Is skype eating disk resources?3:25 Windows… Read more
How to Create Administrator Account in Windows 10
This video will teach you how to create administrator account in Windows 10 whether you are using a local user account or a Microsoft account. Commands:net user UserName /addnet localgroup Administrators UserName /add Chapters:0:00 An intro0:23 Create a local administrator account using the settings app1:09 Create a local administrator account through local users and groups… Read more
How to Uninstall a Program on Windows 10 from Command Prompt
If you’re using Windows 10 and need to free up some disk space, you can uninstall apps you no longer use straight from the Command Prompt. Here’s how it’s done. Commands:wmicproduct get nameproduct where name=”program name” call uninstall What you’ll learn: 1. How to run Command Prompt as an administrator to uninstall a program 2.… Read more