How 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 ArticleFour ways to transfer your Data from One Windows PC to Another
When you move to a new Windows 10 PC with shiny hardware, you may need to transfer your personal files from an old PC. Here are four commonly used ways to transfer the data from one PC to another PC....
View ArticleCopy files faster in Windows with robocopy
Windows 7 and newer versions come with a new version of the robocopy command that is able to copy files much faster then the normal copy command or copy function of the file explorer by using several...
View ArticleHow to Check the PowerShell Version on Windows
If you want to check which PowerShell version you are using, then execute either the command get-host or the command echo $PSVersionTable on PowerShell with elevated privileges. Get PowerShell Version...
View ArticleHow to Delete a Folder Using Command Prompt of Windows
To delete a folder using the command prompt of Windows, follow this procedure. Open a command prompt (Press the Windows icon key and R to open the run window). Type cmd and hit enter from the keyboard....
View ArticleHow to Read a File using PowerShell
If you are working as an admin on Windows Core Server and want to check the contents of a file, you can execute the following command: get-content C:\testfile.txt This command will display the contents...
View ArticleHow to Create Multiple Hyper-V Virtual Machines Using PowerShell
Creating multiple Hyper-V virtual machines using Hyper-V manager is not a quick method. The quickest and time-saving method is to create them via Windows PowerShell. This tutorial has been written to...
View ArticleHow to Set Google Chrome Browser to Ask For Location Before Downloading a File
Your files are saved in the Download folder by default in the Google Chrome browser. If you want your Google Chrome browser to always ask for your location before downloading and storing a file, follow...
View Article