Search Results for

    Show / Hide Table of Contents

    License Package

    When deploying POS’s on-premise an flf file is needed to be uploaded when installing LS Central.

    Learn more about the Dual Usage Right License (DUR)

    New License Package

    1. Open a PowerShell console.
    2. Add your license to the Files\License directory

      • Use the retailer's license.
    3. In the PowerShell console, run:

      PS C:\LS Retail\My Project> .\NewLicensePackage.ps1 -Import 
      
      • This will create a new license package, with the license from Files\License directory and import it into your server. The package will be named yourprefix-license. You can view it on the server: http://localhost:8030 under Packages.

    Update License Package

    When you have a new license, create a new license package, with a higher version number than the previous version.

    1. Open the script NewLicensePackage.ps1 for editing, find the package version definition and increment it, for example, to 1.1.0:

      ...
      $Arguments = @{
          Id = "$($Config.PackageIdPrefix)-license"
          Name = "$($Config.Name) License"
          Version = '1.1.0'
          LicensePath = $Path
          OutputDir = $Config.OutputDir
      }
      ...
      
    2. Delete the old license from the Files\License directory.
    3. Perform the steps in the section above.
    4. Update the POS bundle with the new version.
    In This Article
    Back to top Generated by DocFX