Since Select-String is such a useful cmdlet, the PowerShell decided to add an alias to it in PowerShell v3. The alias is called sls.
Try this:
ipconfig | sls IP
In PowerShell v2, you can still use the power of Select-String, you just don't have the alias:
ipconfig | Select-String IP