PowerShell Set-Variable Tutorial

PowerShell is complete programming or scripting language which provides different types of variables. The Set-Variable is used to set variable values or create a variable if it does not exist. Set Variable The Set-Variable can be used to set or create a variable easily. The -Name attribute is used to specify the variable name and … Read more

PowerShell Write-Output Command

PowerShell provides the Write-Output command in order to print objects, variables, and values to the console. It is very similar to the Linux echo command. To make things easier the echo an alias can be used instead of the Write-Output command to make Linux users comfortable. The Write-Output command can be used with the other … Read more

PowerShell Wait (Start-Sleep) Tutorial

PowerShell provides the Start-Sleep command in order to wait for the command line interface for the specified time. The wait time can be milliseconds, seconds, minutes, hours, etc. The Start-Sleep command simply accepts seconds or milliseconds as parameters but they can be used to express minutes and hours. In this tutorial, we examine how to … Read more

How To Run chkdsk In Windows?

How To Run chkdsk In Windows?

Windows operating systems provide the chkdsk command in order to scan hard disks to fine file system errors and fix them accordingly. The file system is used by the operating systems in order to store data like files and folders in storage like a hard disk drive. The chkdsk command is generally used via the … Read more

How To Find IP Address On Windows?

IP Address is used to identify and address Windows systems in a network like LAN or the internet. Most Windows computers connected to a network have an IP address for communication and accessing each other’s services. In order to access different Windows systems, the IP address should be used and provided. There are different ways … Read more

How To Set or Change Java Environment Variables In Windows 10?

How To Set or Change Java Environment Variables In Windows 10?

Java is a popular programming language where a lot of applications are developed and used in Windows 10. Java requires binaries like java and javac in order to complete and run Java applications in Windows 10. In order to run these java and javac command and run related applications, the required Java environment variables should … Read more

Windows BCDEDIT Command Tutorial

Windows BCDEDIT Command Tutorial

Windows operating systems store the boot-related data and configuration in the Boot Configuration Data or BCD . The provided data and configuration replace the Boot.ini configuration file. The BCDEdit command line tool is used to manage the Boot Configuration Data easily via a command-line interface with different parameters. The BCDEdit can be used to create … Read more

How To Scan Disk In Windows?

How To Scan Disk In Windows?

Hard disk is an important part of the computers where all files are stored inside them. The hard disk is used and managed by operating systems file systems and over time the disk may become slow as single file data is stored in different locations of the disk as multipart. Windows operating systems provide the … Read more

Get Serial Number via CMD (Command Line Interface) In Windows

Get Serial Number via CMD (Command Line Interface) In Windows

Serial Numbers are used to identify the computers, hardware, or similar devices uniquely. Every computer has a unique serial number which is used to identify computers. Serial numbers can be learned in different ways like reading the label under the computer or looking at the BIOS serial number screen. There is also an alternative way … Read more

Windows “rmdir” Recursively

Windows "rmdir" Recursively

Windows operating systems provide the rmdir command in order to delete directories or folders. By default, the rmdir command deletes empty directories or folders. The rmdir command can also delete files and directories recursively. In this tutorial, we examine different ways to delete or remove directories recursively. rmdir Recusrively The rmdir command has the /s … Read more