Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Personal Call Manager Defaults

    Does anyone know if there is a way to set default settings for Personal Call Manager before installation? Via a INI file or some kind of config file?

    IE: I would prefer to not have the "Import Configurator" inport contacts from Public Folders by default.

    -Chris

  • #2
    You can do it through the registry. But you can also screw it up if you dont do it right. I have set ours up this way and works great on our terminal servers.

    You would want to make a batch file with reg add commands.

    Comment


    • #3
      Originally posted by Tenny321
      You can do it through the registry. But you can also screw it up if you dont do it right. I have set ours up this way and works great on our terminal servers.

      You would want to make a batch file with reg add commands.
      Thank you, I will check there and see what I can find.

      Comment


      • #4
        here is a start:

        REG ADD "HKEY_CURRENT_USER\Software\Shoreline Teleworks\ShoreWare Client" /v UserName /t REG_SZ /d "%username%" /f

        REG ADD "HKEY_CURRENT_USER\Software\Shoreline Teleworks\ShoreWare Client" /v Server /t REG_SZ /d "10.10.1.2" /f

        REG ADD "HKEY_CURRENT_USER\Software\Shoreline Teleworks\ShoreWare Client" /v Password /t REG_SZ /d "4cb9c8a8048fd02294477fcb1a41191a" /f


        This last one is if there password is still changeme.

        Comment


        • #5
          of course 10.10.1.2 would be your vm server's IP

          Comment

          Working...
          X