Basic of PowerShell-Part2 PowerShell has amazing capability to extract the data into excel sheet, read the txt file, filter the data and convert the data into the table. By using these capabilities, "How can read the content and apply the filter on it" and "convert the data into table" these are the basic queries which today we will discuss in the blog in layman language by taken examples. this is part two of the Basic Of PowerShell series. "How can read the content and apply the filter on it"- Here, Let us take an example “.t xt file has five company names which are like Infosys, Wipro, HCL, TCS and MPG. Apply the filter that is only fetch the record that is ‘Wipro’ ”. Before Writing the script, We must think about the basic commands which we will use. 1- Get-Content – This command is used to read the data for a txt file . 2- Pipeline Operator ‘|’ - it will be used to run the multiple command in t...