Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Summary : Use Windows PowerShell to find case-specific strings.
How can I find a particular, case-sensitive word in a string?
Use Select-String and specify the –CaseSensitive switch:
"Hey Scripting Guy","hey scripting guy" | Select-String -Pattern 'hey' -CaseSensitive...(read more)