How to Set Google Chrome Browser to Ask For Location Before Downloading a File
By default, Google Chrome browser saves your files in the Download folder. If you want Google chrome browser to ask every time for location before downloading a file and saving it, follow this brief...
View ArticleHow To Rename NIC Adapters with PowerShell
If you want to rename NIC adapters with PowerShell, follow this tutorial: Step 1. Open PowerShell with admin privileges Step 2. Execute the following command, Rename-NetAdapter -Name "<Old NIC...
View ArticleHow to Create NIC Teaming With PowerShell
To create NIC teaming with PowerShell, follow this step-by-step tutorial: Step 1. Open PowerShell with elevated privileges Step 2. Execute the following command, new-NetLBFOTeam [TEAMNAME] “[NIC1]”,...
View Article“The hosted network couldn’t be started” after “netsh wlan start hostednetwork”
When you share Wi-Fi in Windows 7 with Internet Connection Sharing (ICS), and you run the following command, netsh wlan start hostednetwork You may get the following error: "The hosted network couldn’t...
View ArticleHow to Elevate Windows Batch Scripts to Run it with Admin Rights at Startup
1. Download the PowerToys and extract the contents of an EXE file in your desired folder. 2. Create a batch script with the following command, "C:\Program Files\Elevation\elevate.cmd" "C:\My batch...
View ArticleHow to Share Windows 8 WiFi using WEP Encryption?
Windows 8 doesn't support WPA and WPA2 but you can still use WiFi in ad-hoc mode without authentication. Go to WiFi adapter > Status > Wireless Properties > Security. Set security type to No...
View ArticleHow to Enable Users to Change their Password After Expiration Without...
If a password is expired, the user will be asked to change the password when he or she logins for next time. No admin is required to be contacted. The post How to Enable Users to Change their...
View ArticleHow to Disable the User Account Control (UAC) in Windows 10
User Account Control also known as UAC is an important component of the "Windows security system". This helps the applications running in the windows to prevent your system from making any undesired...
View ArticleHow to Stop Windows From Automatically Connecting to a Wi-Fi Network
Microsoft is vigilant when it comes to adding features to the Windows operating system for the convenience of their users. Their goal is to make Windows as user-friendly as possible. One such element...
View ArticleHow to Use Ping Command in Windows 10
The ping command is used to test the availability of a remote or destination machine on a network. In this tutorial, I'll show you it's various uses on Windows operating systems. All the commands can...
View ArticleHow to Append Data to a Text File Using PowerShell
You can use the PowerShell add-content cmdlet to append data to a text file. Here are an example and the command-line options that you can use. Powershell add-content example Step 1. Open PowerShell...
View ArticleHow to Create a PowerShell Session on a Remote Computer
To execute PowerShell commands or scripts on a remote computer, you need to create a session. This is also known as PowerShell remoting and it is just like an SSH session to an operating system. There...
View ArticleFix “The program can’t start because MSVCR100.dll is missing from your...
What hides behind this name is the Microsoft Visual C++ Redistributable which can easily be downloaded on the Microsoft website as x86 or x64 edition: 32 bit:...
View ArticleWindows Powershell –“Running scripts is disabled on this system”
Powershell scripts can be run on any Windows system as long as they are run from the ISE by pushing the green play button. As soon as you want to run it from the cmd or the desktop file you'll get this...
View ArticleHow to Exclude a User or Computer from Group Policy Object
When you apply a group policy on a container or OU, it applies to all users or computers in that container. However, you can exclude a single or multiple users or containers from the policy applied....
View ArticleHow to Comment Out Code in PowerShell Script
Just like any other programming language, you can comment out code in a PowerShell script for documentation purposes. To comment out a single line, put '#' in the beginning: To comment out multiple...
View ArticleFour Ways to Create a Directory with PowerShell
To create a directory with the help of PowerShell, open the PowerShell console with administrative privileges and use one of the following four ways. Creating a Directory by using PowerShell Method 1:...
View ArticleHow to Get a List of Windows PowerShell Modules that can be Imported
Modules are collections of cmdlets that are stored in the path %WINDIR%\System32\WindowsPowerShell\. Get a List of Windows PowerShell Modules Now execute the following command to display the location...
View ArticleHow to Check if a Disk Uses GPT or MBR on Windows
There are different ways to store the partition table on a drive. The most widely used methods are GPT (Guid Partition Table) and MBR (Master Boot Record). This article shows you how to check your disk...
View ArticleIncrease number of visible lines in cmd on Windows
The Windows command-line only shows a history of 300 lines by default - this can be a nuisance especially if you are working with long list outputs. However, you can easily increase the number of lines...
View Article