Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Hosting in a Windows Service is available from Tax Balance 23.x.x

  1. Obtain the installation resources of Tax Balance. Usually this is an archive with the file extension (.nupkg).

  2. Extract the archive to a desired location on the file system of the machine that will host Tax Balance. We will refer to that location as <tax-balance-install-directory>.

  3. Use PowerShell (Version 6 or later) to register a service. From an administrative PowerShell command shell execute the following command:

    New-Service
      -Name "Tax Balance"
      -BinaryPathName "<tax-balance-install-directory>\AMANA.SmartTaxBalance.Web.Api.exe"
      -Credential "<tax-balance-user>"
      -Description "Tax Balance Web Application"
      -Description "Tax Balance" 
      -StartupType Automatic

  • No labels