Your cart is currently empty!
Category: Windows Powershell/Command Prompt
How to remove OneDrive from Windows via DISM
In this video, we will see two method to remove OneDrive from Windows via DISM. I will be using a Windows 11 ISO image file in this example, but the technique is the same whether you use a Windows 10 ISO image. Commands:Dism /Get-WimInfo /WimFile:C:\Win11_ISO\Sources\install.wimDism /Mount-Wim /WimFile:C:\Win11_ISO\Sources\install.wim /index:6 /MountDir:C:\MountDism /Unmount-Image /MountDir:C:\mount /Commitreg unload HKLM\Offline Chapters:0:00… Read more
How to Erase and Format a Drive in Windows
Did you get a new external drive? Or are you looking to troubleshoot or sell an older drive? Then, it’s a good idea to erase and format it. Watch on how to do that in Microsoft Windows 10 and 11. Link:Disk Wipe – https://www.diskwipe.org/ What you will learn:0:00 Intro0:23 Erase and Format a Drive in… Read more
How to forcefully Remove Language Pack on Windows 10 and Windows 11
Here, I’m going to show you this in Windows 11. The steps in Windows 10 are the same thing. Commands:Get-WinUserLanguageList$LangList = Get-WinUserLanguageList$MarkedLang = $LangList | where LanguageTag -eq “LANGUAGETAG”$LangList.Remove($MarkedLang)Set-WinUserLanguageList $LangList -Force What you will learn: 1. How to remove a language that is greyed out 2. How to quickly remove the unwanted pack with a… Read more
How to fix “An Attempt Was Made to Reference a Token That Does Not Exist” in Windows 10/11
This error occurs when you open Windows File Explorer. One other major cause of this error is a corrupt system registry, files, or the installation of unknown and incompatible software on your PC. Commands:cd %WINDIR%\System32for /f %s in (‘dir /b *.dll’) do regsvr32 /s %ssfc /scannow Chapters:0:00 Intro0:23 1st Solution – Repair Corrupted Files4:26 2nd… Read more
How to Enable and Find Your Windows Boot Log
Want to see what your Windows PC is doing when it boots up? Here’s how to enable the boot log, and how to find it. Commands:bcdeditbcdedit /set {identifier} bootlog Yesbcdedit /set {identifier} bootlog No Chapters:0:00 Intro0:23 How to Enable the Boot Log With MSConfig0:53 How to Enable the Boot Log With Command Prompt1:35 Where Is… Read more
How to Scan Removable Drives With Microsoft Defender
Did you know that you can also use Microsoft Defender to scan your removable and external drives? Here’s how. Commands:Set-MpPreference -DisableRemovableDriveScanning 0Set-MpPreference -DisableRemovableDriveScanning 1 Chapters:0:00 Intro0:23 How to Scan Removable Drives With a Microsoft Defender Custom Scan1:18 How to Add Removable Drives to Full Scans in PowerShell1:52 How to Include Removable Drives in a Full… Read more
How to Fix Error Code 0x80004005 on Windows 11/10
Here are some things you can try to fix it on either Windows 10 or Windows 11. Commands:sc.exe qc lanmanworkstationsc.exe config lanmanworkstation depend= bowser/mrxsmb10/mrxsmb20/nsisc.exe config mrxsmb20 start= auto What you will learn:0:00 Intro0:23 Check Server Message Block (SMB) Settings1:05 Network Discovery and Sharing Settings1:36 Essential Services2:13 NetBIOS3:06 Disable IPV63:32 End screen What you’ll learn: 1.… Read more
How to Share Wi-Fi Network Connections in Windows 11
If you don’t remember the network’s security key, I’ll show you how to find saved Wi-Fi passwords in Windows. This video also covers steps to set up and use mobile hotspot to share your computer’s internet. Commands:netsh wlan show profilenetsh wlan show profile “Wi-Fi name” key=clearnetsh wlan show profile name=profilename key=clear Link:WirelessKeyView – https://www.nirsoft.net/utils/wireless_key.html#DownloadLinks Chapters:0:00… Read more
How to Check Your Motherboard Model Number on Your Windows PC
Here’s how to check your motherboard model number from the comfort of your keyboard. Links:Speccy – https://www.piriform.com/speccyHWiNFO64 – https://www.fosshub.com/HWiNFO.html Chapters:0:00 Intro0:23 Check Your Model Number from the Command Prompt0:54 Check Your Model Number in System Information1:11 Check Your Model Number with Speccy2:14 Check Your Motherboard Model with HWiNFO643:10 End screen What you will learn: 1.… Read more