realy need your help.
I have a $combobox that gives me all the FileName that contain "wrong source".
<$ComboBox.Items.AddRange(@(Get-ChildItem $filepath -Recurse -Include ".xml", ".txt"| Select-String "wrong source" -List | select-Object FileName))>
I need to get the line number on the file where that match occurred.
I have been looking and nothing works. Can you help?
To search for the string "wrong source" in XML and TXT files and populate a ComboBox with the filenames and line numbers where matches are found, this should do:
• Populate the ComboBox with filename and line number directly within the ForEach-Object block: