microsoft toolkit download

What Is NetBIOS?

What Is NetBIOS?

NetBIOS is a protocol used to provide communication services for the Windows operating systems. NetBIOS was developed early 1980’s for small networks for communication. NetBIOS standardized with the RFC 1001 and RFC 1002. NetBIOS Services NetBIOS provides 3 main services. These services are generally used by the Windows operating systems like Windows XP, Windows 7, … Read more

PowerShell SubString (Extract Substring) Tutorial

PowerShell provides different methods in order to work with String variables and string values. The substring operation is used to extract some part of the string from a complete string. The substring() method is generally used to extract some part of the string. In this tutorial, we examine how to extract substring with start index … Read more

PowerShell If Elseif Else Statement Tutorial

PowerShell provides the if..else statements in order to execute PowerShell code for the specified conditions. The if..else statement simply works with boolean expressions where if the specified condition is True the related statement and code block is executed. If the specified condition is False the related statement and code block are not executed. if..elseif..else Statement … Read more

How To Open Registry Editor (Regedit) In Windows?

The Registry Editor or Regedit is a tool used to change, add, delete registry values. Windows registry is used to configure different attributes of the Windows operating system. The registry editor can be opened in different ways like command-line interface, Start menu, etc. In this tutorial, we examine how to open registry editor for different … Read more

How To Open Command Prompt In Windows 10?

Windows operating systems like Windows XP, Windows 8, Windows 10, and Windows Server provides the Command Prompt or MS-DOS in order to execute commands in a user-friendly way. Even the PowerShell is also a command prompt generally the MS-DOS is used as the first choice for the term “Command Prompt”. Open Command Prompt via Windows+X … Read more

How To Split String In PowerShell?

Powershell provides the -split option and Split() method for splitting string variables and values. Both -split option and Split() method have valid usage. They provide the same options. The split operation can be executed to split with specified characters, split with multiple characters, split with multiple separators, split with space characters, split a CSV file, … Read more

PowerShell Not Equal (-ne) Comparison Operator Tutorial

PowerShell provides different comparison operators to compare different values, objects, variables, outputs, etc. The Not Equal operator is used to check if the specified two-parameters are equal or not. If two specified parameters are not the same the not equal operator returns True boolean value. If two specified parameters are the same the not equal … Read more

How To Check and Find PowerShell Version In Windows?

PowerShell is an advanced command-line interface provided with the modern Windows operating systems. PowerShell create in 2006 and updated regularly with new versions. There are multiple versions of PowerShell which adds some new features and removed some old features. So how can we decide which version of the PowerShell we are currently running. In this … Read more

How To Open Disk Management Tool In Windows 10?

Windows operating systems provide the Disk Management Tool to perform basic and advanced disk and file system operations. The Disk Management can be used to initialize a new drive, extend and shrink existing volumes, change drive letters, troubleshoot disk-related problems, etc. The Disk Management tool can be opened in different ways which are described below. … Read more