Versions Compared

Key

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

...

  1. Right-click on the installer and select Properties.

  2. You need to verify the settings below.

    1. Read-only should not be selected.

    2. Hidden should not be selected.

    3. Unblock should be selected.

      Image RemovedImage Added

  3. Click Apply to apply the changes.

  4. Click OK.  

...

Info

If connectivity to the database cannot be made with default database configuration options, you may need to utilize the connection string to specify the correct parameters. For example, it is a common enterprise practice to change the default SQL Server port from 1433 to another port, requiring the use of a connection string.

...

SQL Server Connection Strings

SQL Server | Integrated Authentication (Windows Authentication)

Server=SqlServerMachineName;Database=SkySyncV4;Integrated Security=true

...

Azure SQL DB Standard Connection

Server=tcp:[ServerName].database.windows.net;Database=SkySyncV4;User ID=[LoginForDb]@[ServerName];Password=MyPassword;Trusted_Connection=False;Encrypt=True

PostgreSQL Connection Strings

PostgreSQL Standard Connection

dbProvider=npgsql,dbConnectionString=User ID=PostgreSqlUserName;Password=MyPassword;Host=ServerName;Port=5432;Database=SkySyncV4

...