Finding the IP Address With Windows PowerShell

This section describes how to find the IP address of the server computer, using Windows PowerShell.
To find the IP address with Windows PowerShell:
  1. In the Windows search box on the taskbar, type windows powershell, then select Windows PowerShell from the menu.
  2. In the Windows PowerShell dialog, enter this command:
    Get-NetIPAddress -AddressFamily IPv4 |`
      Where-Object {`
        $_.IPAddress -notlike '169.*'`
        -and `
        $_.IPAddress -notlike '127.*'`
      } |`
      Select-Object IPAddress
  3. Press Enter.
    The IP address is displayed.
  4. Use the IP address during the installation process. You can also change the IP address after installing the application, from the desktop application settings. For details, see Server Settings.
For more information, contact your system administrator.