PowerShell $_ Pipeline Variable Tutorial

PowerShell provides variables in order to store data which can be text, number, etc. PowerShell also provides some special variables which are used with PowerShell structures. The $_ dollar sign and underscore is used to define a special variable called Pipeline Variable . In PowerShell, the $ sign is used to define variables where a … Read more

PowerShell Where-Object Command Tutorial

PowerShell Where-Object Command Tutorial

PowerShell is an object-oriented scripting language and command line. Every command in PowerShell returns an object which contains properties. Even if The return value is a string or integer it is actually a string object or integer object. The Where-Object command can be used to filter different objects according to their properties with different conditions. … Read more