PowerShell : Finding number of lines in a File
Requirement: In Automation using PowerShell Scripting its very often a requirement to read input from a file. Usually the input is separated by new line in the file. Your PowerShell should read all lines from the file and process the input line by line. Say, you have list of servers in file and you want to check service status for each of the server in the file. Solution: In PowerShell Get-Content is used for most cases to read a file and process it line by line. It just works fine in most of the cases. But if you need to […]
Read more