Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Stop SMS Client Services on your workstation
    1. Click Start and type "powershell"
    2. Right click on the top result (it should be "powershell.exe") and click Run as administrator


    3. Type the following

      Code Block
      languagepowershell
      Get-Service -Name "MultimaxClientService"


    4. You should see SMS Client Services with the status of Running.

    5. Type the following

      Code Block
      languagepowershell
      Stop-Service -Name "MultimaxClientService"
      Get-Service -Name "MultimaxClientService"


    6. SMS Client Services should show the status of Stopped now.

  2. Click Start → Run


  3. Type "multimax.ini" and press Enter.


  4. Multimax.ini will open in Notepad. There are two (2) lines that the server name must be modified.
  5. The first line is "ServerName=" and the second line is "DatabaseInstance=".


  6. Change the server name after the "=" sign to the name that was provided by FASS IT. Currently it is "uopd-amagserv", but it will change to "uopd-amagserv2" after 9am on Monday, December 17th, 2018.
  7. Change the server name on both lines and save the file.
  8. Go back to your powershell window and type the following

    Code Block
    languagepowershell
    Start-Service -Name "MultimaxClientService"
    Get-Service -Name "MultimaxClientService"




  9. You should show the status of the service as Running and you can begin using your client (if the server is available).

...