How to Perform an Emergency Restart (Win 10/11)
To perform an emergency restart of a Windows computer, you can use these steps. This type of restart bypasses the standard shutdown process and forces the system to reboot immediately, which can be useful if the computer is unresponsive or in an unusual state. Method 1: Using Ctrl + Alt + Delete This forces an…
Read MorePowerShell Script to Restart Computer into Bios Screen
Here’s a PowerShell script to restart a Windows computer and boot directly into the BIOS or UEFI settings. This script leverages the Restart-Computer cmdlet with the appropriate parameter to reboot into the firmware: Explanation: Important Notes: To run this script: This should reboot your system and take you directly to the BIOS or UEFI setup…
Read MoreRestart to Bios Screen
Here’s a batch file that can help restart a Windows computer and automatically boot it into the BIOS screen. This script uses the shutdown command to restart the computer, along with a command to prompt it to boot into the BIOS (if the system and BIOS support it). Create a .bat file with the following…
Read MoreSteps to Switch Out of S Mode
The process to get out of S Mode must be done manually through the Microsoft Store because it involves licensing and security restrictions that Microsoft has set in place. Here’s how you can manually switch out of S Mode: Steps to Switch Out of S Mode
Read MoreWhat Could Cause a Computer to Lock Up?
A computer can lock up (or freeze) for several reasons, and these can typically be categorized into hardware or software issues. Here are some common causes: Hardware Causes Software Causes If you’re diagnosing a PC, you might want to check these areas systematically to identify the root cause.
Read MoreThe Importance of Using VPN Software
The Importance of Using VPN Software: Safeguarding Your Digital Privacy In today’s digital age, where the internet plays a central role in our personal and professional lives, online privacy and security have become critical concerns. The increasing frequency of cyber threats, data breaches, and invasive surveillance has made it imperative for individuals and businesses alike…
Read MorePowerShell Script to Remove ALL Chrome and Edge Browser Extentions
To remove all browser extensions from Google Chrome and Microsoft Edge using PowerShell, we can target the directories where extensions are stored for each browser. Here’s a script that removes the extension folders for both browsers: How it works: Notes:
Read MoreHow to Prevent Viruses and Malware
How to Prevent Viruses and Malware: Tips from CBC Computer Services At CBC Computer Services, we understand that protecting your digital environment is crucial in today’s technology-driven world. Viruses and malware can wreak havoc on your devices, steal personal information, and disrupt your daily activities. Fortunately, there are effective strategies to safeguard your systems from…
Read MorePowerShell script to create a new user profile and copy all data from the current profile to the new profile
Here’s a PowerShell script to create a new user profile and copy all data from the current profile to the new profile. This process involves the creation of the new user account, setting permissions, and copying files from the old profile folder to the new one. How the script works: Steps to run: Let me…
Read MorePowerShell Script to Reset Host Files
Here’s a PowerShell script to reset the Windows hosts file to its default state. The hosts file is located at C:\Windows\System32\drivers\etc\hosts and typically contains a default entry for localhost. Steps to run the script: This restores the default hosts file configuration, which typically includes only the localhost entries.
Read More