Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

2,208

Downloads of v 1.01:

352

Last Update:

10 Nov 2017

Package Maintainer(s):

Software Author(s):

  • DMGAudio

Tags:

trackcomp vst aax audio mixing admin trial

TrackComp (Install)

This is not the latest version of TrackComp (Install) available.

  • 1
  • 2
  • 3

1.01 | Updated: 10 Nov 2017

Downloads:

2,208

Downloads of v 1.01:

352

Maintainer(s):

Software Author(s):

  • DMGAudio

TrackComp (Install) 1.01

This is not the latest version of TrackComp (Install) available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install TrackComp (Install), run the following command from the command line or from PowerShell:

>

To upgrade TrackComp (Install), run the following command from the command line or from PowerShell:

>

To uninstall TrackComp (Install), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade trackcomp -y --source="'INTERNAL REPO URL'" --version="'1.01'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade trackcomp -y --source="'INTERNAL REPO URL'" --version="'1.01'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install trackcomp
  win_chocolatey:
    name: trackcomp
    version: '1.01'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'trackcomp' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.01'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller trackcomp
{
    Name     = "trackcomp"
    Version  = "1.01"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'trackcomp':
  ensure   => '1.01',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved by moderator mwallner on 23 Nov 2017.

Description

trackcomp

Description

Five Compressors spanning the history of pro-audio.
Filthy and distorted to invisible and clean; tubes, optos, FETs, transistors and VCAs.
The tool you need for every session.

Package Specific

Package Parameters

The following package parameters can be set:

  • /Vst2Path: - Installation path of the VST2 version
  • /Vst2x86Path: - Installation path of the x86 VST2 version on x64 CPU architecture
  • /InstallerPath: - Do not download the installer from the official website and use the one passed with this argument instead. Use it, if you don't have an internet connection at your studio computer.
  • /CompanyPath: - Path of the company to put all program files in. Override if you want to have all the program files at a custom location.

You must pass the package parameters like this:

choco install trackcomp -packageParameters "/Vst2x86Path:""`"${env:CommonProgramFiles(x86)}\VST2\DMGAudio`""" "

Note: The original DMGAudio installer supports custom VST3 paths. This is not a good idea however as with VST3 there is finally a standardized path for DAWs to search for plugins meaning less trouble for everybody. If you really need to have these plugins somewhere else, just place a symbolic link to %commonfiles%\VST3\DMGAudio.


tools\chocolateyinstall.ps1
$packageName = 'TrackComp'
$softwareName = "${packageName}*"
$company = 'DMGAudio'
$url32        = 'https://dmgaudio.com/dl/TrackComp_v1.01/TrackCompWin_v1.01.zip'
$releases = 'https://dmgaudio.com/products_trackcomp.php'
$checksum32 = '7C7C2FDDD6AC839157DE3576691EBA9034B9800DAEED3AE938D47E8BB24E27C6'
$companyPath = "${env:PROGRAMFILES}\$company"
$dataPathRegKey = "$packageName"
$vst2Path = "${env:PROGRAMFILES}\Steinberg\VSTPlugins\$company"
$vst2x86_64Path = "${env:ProgramFiles(x86)}\Steinberg\VSTPlugins\$company"
$vst3Path = "${env:COMMONPROGRAMFILES}\VST3\$company"
$vst3x86_64Path = "${env:COMMONPROGRAMFILES(x86)}\VST3\$company"
$userFolderPath = "" ## implement empty user folder check
$presetProducts = "" ## implement empty check
$unzipInstVersion = '1.01'
$unzInstPath = "${packageName}Win_v${unzipInstVersion}.exe"
$zipSuffix = "Win_v*.*.zip"
# This needs to be wrapped into a function so this object also has the data from the package parameters
function CreateRegistryObjects () {
  # The installer does not have an option for custom paths so we need to create the registry entry before
  $global:regKeyVST2Path       = New-Object -TypeName PSObject -Prop (@{ 'path'="HKCU:\SOFTWARE\DMGAudio\InstallPaths"; 'key'="VST_64";   'value'="$vst2Path";                 'x64'='true';  'x86'='false'})
  $global:regKeyVST2x86_64Path = New-Object -TypeName PSObject -Prop (@{ 'path'="HKCU:\SOFTWARE\DMGAudio\InstallPaths"; 'key'="VST_32";   'value'="$vst2x86_64Path";           'x64'='true';  'x86'='false'})
  $global:regKeyVST2Pathx86    = New-Object -TypeName PSObject -Prop (@{ 'path'="HKCU:\SOFTWARE\DMGAudio\InstallPaths"; 'key'="VST_32";   'value'="$vst2Path";                 'x64'='false'; 'x86'='true'})
  $global:regKeyVST3Path       = New-Object -TypeName PSObject -Prop (@{ 'path'="HKCU:\SOFTWARE\DMGAudio\InstallPaths"; 'key'="VST3_64";  'value'="$vst3Path";                 'x64'='true';  'x86'='false'})
  $global:regKeyVST3x86_64Path = New-Object -TypeName PSObject -Prop (@{ 'path'="HKCU:\SOFTWARE\DMGAudio\InstallPaths"; 'key'="VST3_32";  'value'="$vst3x86_64Path";           'x64'='true';  'x86'='false'})
  $global:regKeyVST3Pathx86    = New-Object -TypeName PSObject -Prop (@{ 'path'="HKCU:\SOFTWARE\DMGAudio\InstallPaths"; 'key'="VST3_32";  'value'="$vst3Path";                 'x64'='false'; 'x86'='true'})
  $global:regKeyDataPath       = New-Object -TypeName PSObject -Prop (@{ 'path'="HKCU:\SOFTWARE\DMGAudio\$packageName"; 'key'="Path";     'value'="$companyPath\$packageName"; 'x64'='true';  'x86'='true'})
  $global:regKeys = $regKeyVST2Path, $regKeyVST2x86_64Path, $regKeyVST2Pathx86, $regKeyVST3Path, $regKeyVST3x86_64Path, $regKeyVST3Pathx86, $regKeyDataPath
}
function CreateShortcutObjects () {
  $global:shortcuts
}
function CreateSymlinkObjects () {
  $global:symlinks
}
function CreateInstallerObjects () {
  $global:presets      = New-Object -TypeName PSObject -Prop (@{ 'key'="NoPresets";   'value'="presets";   'x64'='true'; 'x86'='true'})
  $global:vst2x86      = New-Object -TypeName PSObject -Prop (@{ 'key'="NoVst2";      'value'="vst2_32";   'x64'='true'; 'x86'='true'})
  $global:vst2x64      = New-Object -TypeName PSObject -Prop (@{ 'key'="NoVst2";      'value'="vst2_64";   'x64'='true'; 'x86'='false'})
  $global:vst3x86      = New-Object -TypeName PSObject -Prop (@{ 'key'="NoVst3";      'value'="vst3_32";   'x64'='true'; 'x86'='true'})
  $global:vst3x64      = New-Object -TypeName PSObject -Prop (@{ 'key'="NoVst3";      'value'="vst3_64";   'x64'='true'; 'x86'='false'})
  $global:aaxx86       = New-Object -TypeName PSObject -Prop (@{ 'key'="NoAax";       'value'="aax_32";    'x64'='true'; 'x86'='true'})
  $global:aaxx64       = New-Object -TypeName PSObject -Prop (@{ 'key'="NoAax";       'value'="aax_64";    'x64'='true'; 'x86'='false'})
  $global:installerComponentsList = $presets, $vst2x86, $vst2x64, $vst3x86, $vst3x64, $aaxx86, $aaxx64
}
$ErrorActionPreference = 'Stop';
$toolsDir    = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$osBitness = Get-ProcessorBits
$unzPath = "${env:TEMP}"

$pp = Get-PackageParameters
if ($pp["NoVst2"] -eq $null -or $pp["NoVst2"] -eq '')               { $pp["NoVst2"] = 'false' }
if ($pp["NoVst3"] -eq $null -or $pp["NoVst3"] -eq '')               { $pp["NoVst3"] = 'false' }
if ($pp["NoAax"] -eq $null -or $pp["NoAax"] -eq '')                 { $pp["NoAax"] = 'false' }
if ($pp["No32Bit"] -eq $null -or $pp["No32Bit"] -eq '')             { $pp["No32Bit"] = 'false' }
if ($pp["No64Bit"] -eq $null -or $pp["No64Bit"] -eq '')             { if($osBitness -eq 64) {$pp["No64Bit"] = 'false'} }
if ($pp["NoPresets"] -eq $null -or $pp["NoPresets"] -eq '')         { $pp["NoPresets"] = 'false' }
if ($pp["NoUserFolder"] -eq $null -or $pp["NoUserFolder"] -eq '')   { $pp["NoUserFolder"] = 'false' }
if ($pp["NoShortcuts"] -eq $null -or $pp["NoShortcuts"] -eq '')     { $pp["NoShortcuts"] = 'false' }
if ($pp["InstallerPath"] -eq $null -or $pp["InstallerPath"] -eq '') { $fileLocation = "$unzPath\$unzInstPath"; $pp["InstallerPath"]='false' }     else { $fileLocation = $pp["InstallerPath"] }
if ($pp["CompanyPath"] -eq $null -or $pp["CompanyPath"] -eq '')     { $pp["CompanyPath"] = 'false' }                                              else { $standardCompanyPath=$companyPath; $companyPath = $pp["CompanyPath"] }
if ($pp["UserFolderPath"] -eq $null -or $pp["UserFolderPath"] -eq '')   { }                                                                       else { $userFolderPath = $pp["UserFolderPath"]}
if ($pp["Vst2Path"] -eq $null -or $pp["Vst2Path"] -eq '')           { }                                                                           else { $vst2Path = $pp["Vst2Path"] }
if ($pp["Vst2x86Path"] -eq $null -or $pp["Vst2x86Path"] -eq '')     { }                                                                           else { $vst2x86_64Path = $pp["Vst2x86Path"] }

# Some Functions
function OverwriteShortcut ($shortcutObject) {
  if(($osBitness -eq 32 -and $shortcutObject.x86 -eq 'true') -or ($osBitness -eq 64 -and $shortcutObject.x64 -eq 'true')) {
    $tempShortcutPathAndName = "" + $shortcutObject.linkPath + "\" + $shortcutObject.linkName
    Write-Debug "This is the Shortcut Full Path:"; Write-Debug $tempShortcutPathAndName
    Install-ChocolateyShortcut -ShortcutFilePath $tempShortcutPathAndName -TargetPath $shortcutObject.destPath
  }
}

function OverwriteSymlink ($symlinkObject) {
  if(($osBitness -eq 32 -and $symlinkObject.x86 -eq 'true') -or ($osBitness -eq 64 -and $symlinkObject.x64 -eq 'true')) {
    $tempSymlinkPathAndName = $symlinkObject.linkPath + "\" + $symlinkObject.linkName
    if (Test-Path -Path $symlinkObject.destPath) {
      Write-Debug "Destination Path"; Write-Debug $symlinkObject.destPath; Write-Debug "already exists." } else { Write-Debug "Creating" ; Write-Debug $symlinkObject.destPath
      New-Item $symlinkObject.destPath -ItemType Directory -Force
    }
    if (Test-Path -Path $symlinkObject.linkPath) {
      if((Get-Item $symlinkObject.linkPath).Attributes.ToString() -Match "ReparsePoint") {
        Write-Debug "Link Path"; Write-Debug $symlinkObject.linkPath; Write-Debug "already exists as SymbolicLink. Will overwrite."
      } else {
        Write-Debug "Link Path"; Write-Debug $symlinkObject.linkPath; Write-Debug "already exists as SymbolicLink. Will move to destination path.";
        Move-Item -Path $symlinkObject.linkPath -Destination $symlinkObject.destPath -Force
      }
    } else {
      Write-Debug "Creating"; Write-Debug $symlinkObject.linkPath
      New-Item $symlinkObject.linkPath -ItemType Directory -Force
    }
    Write-Debug "Linking"; Write-Debug $tempSymlinkPathAndName; Write-Debug "to"; Write-Debug $symlinkObject.destPath
    New-Item -Type SymbolicLink -Path "$tempSymlinkPathAndName" -Value $symlinkObject.destPath -Force
  }
}

function CreateRegKey ($regKeyObject) {
  if(($osBitness -eq 32 -and $regKeyObject.x86 -eq 'true') -or ($osBitness -eq 64 -and ${regKeyObject}.x64 -eq 'true')) {
    if (Test-Path ${regKeyObject}.path) { } else { New-Item ${regKeyObject}.path -force }
    New-ItemProperty -Type String -Path ${regKeyObject}.path -Name ${regKeyObject}.key -Value ${regKeyObject}.value -force
  }
}

function CreateInstallerParameters ($instParamObject) {
  if(($osBitness -eq 32 -and $instParamObject.x86 -eq 'true') -or ($osBitness -eq 64 -and $instParamObject.x64 -eq 'true')) {
    $global:installerComponents += $instParamObject.value
    $global:installerComponents += ","
    Write-Debug "This are the current installerComponents: "; Write-Debug $installerComponents; Write-Debug " "
  }
}

#Create objects after package parameters changed standard values
CreateRegistryObjects
CreateShortcutObjects
CreateSymlinkObjects
CreateInstallerObjects

# If user doesn't want to install a certain bit version we also drop the reg key
if($pp["No32Bit"] -ne 'false') {
  Foreach ($item in $regKeys)  {
    $item.x86 = 'false'
  }
}
if($pp["No64Bit"] -ne 'false') {
  Foreach ($item in $regKeys)  {
    $item.x64 = 'false'
  }
}
if($pp["NoUserFolder"] -ne 'false') {
  Foreach ($item in $shortcuts)  {
    $item.userDataHack = 'false'
  }
}
# create registry keys and shortcuts needed before the installer starts, can be skipped if no VST2 is installed as other formats have specific paths
Write-Debug "This is the x86 installation path:"; Write-Debug $vst2x86_64Path
Write-Debug "Company Path:"; Write-Debug $companyPath
if ($pp["NoVst2"] -eq 'false') {
  Foreach ($item in $regKeys) { CreateRegKey($item) }
  Foreach ($item in $shortcuts) { OverwriteShortcut($item) }
}
if($pp["NoUserFolder"] -eq 'false') {
  Foreach ($item in $symlinks) {
    if($item.userDataHack -eq 'true') { OverwriteSymlink ($item) }
  }
}
if($pp["CompanyPath"] -ne 'false') {
  Foreach ($item in $symlinks) {
    if($item.moveCompanyFolder -eq 'true') { OverwriteSymlink ($item) }
  }
}
Foreach ($item in $installerComponentsList)  { # Modify installerObjects if PackageParameters exclude InstallerComponents (like "/NoVst2")
  if($pp.ContainsKey($item.key)) { # Only enter if the PackageParameters have a switch named like the current installer object
    if($pp[$item.key] -eq 'true') { # If the PackageParameters have a NoSwitch on the current installer object, we modify it to be ignored by "CreateInstallerParameters"
      $item.x64='false'
      $item.x86='false'
    }
  }
}

$packageArgs = @{
  packageName   = $packageName
  unzipLocation = $unzPath
  fileType      = 'exe'
  url           = $url32
  url64bit      = $url64
  softwareName  = "$company $packageName*" #part or all of the Display Name as you see it in Programs and Features. It should be enough to be unique
  checksum      = $checksum32
  checksumType  = 'sha256' #default is md5, can also be sha1, sha256 or sha512
  silentArgs   = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' # Inno Setup
}
if(($pp["InstallerPath"] -eq 'false') -and $url32.EndsWith(".exe") ) { # If no installerpath has been directly parsed and the installer url is an exe, we can directly use Install-ChocolateyPackage without $fileLocation
} else { $packageArgs["file"] = $fileLocation } # Otherwise if we have a zip file or have been passed an installerpath PackageParameter we need to parse that path into packageArgs

# Here we create the list of installation components that we parse to the installer
Foreach ($item in $installerComponentsList)  {
  Write-Debug "Checking Installer Components for: "; Write-Debug $item.value
  CreateInstallerParameters($item)
 }
$packageArgs["silentArgs"] += " /Components='$installerComponents'"
Write-Debug "This are the silentArgs"; Write-Debug $packageArgs["silentArgs"]


Write-Debug "This is the fileLocation Variable:"; Write-Debug $fileLocation
if($pp["InstallerPath"] -eq 'false') {
  if (($url32).EndsWith(".exe")) { Write-Debug "Installer is exe"
    Install-ChocolateyPackage @packageArgs # https://chocolatey.org/docs/helpers-install-chocolatey-package
  } else { Write-Debug "Installer inside zip"
    Install-ChocolateyZipPackage @packageArgs
    Install-ChocolateyInstallPackage @packageArgs
  }
} else {
  Install-ChocolateyInstallPackage @packageArgs # https://chocolatey.org/docs/helpers-install-chocolatey-install-package
}
tools\chocolateyuninstall.ps1
$packageName = 'TrackComp'
$softwareName = "${packageName}*"
$company = 'DMGAudio'
$url32        = 'https://dmgaudio.com/dl/TrackComp_v1.01/TrackCompWin_v1.01.zip'
$releases = 'https://dmgaudio.com/products_trackcomp.php'
$checksum32 = '7C7C2FDDD6AC839157DE3576691EBA9034B9800DAEED3AE938D47E8BB24E27C6'
$companyPath = "${env:PROGRAMFILES}\$company"
$dataPathRegKey = "$packageName"
$vst2Path = "${env:PROGRAMFILES}\Steinberg\VSTPlugins\$company"
$vst2x86_64Path = "${env:ProgramFiles(x86)}\Steinberg\VSTPlugins\$company"
$vst3Path = "${env:COMMONPROGRAMFILES}\VST3\$company"
$vst3x86_64Path = "${env:COMMONPROGRAMFILES(x86)}\VST3\$company"
$userFolderPath = "" ## implement empty user folder check
$presetProducts = "" ## implement empty check
$unzipInstVersion = '1.01'
$unzInstPath = "${packageName}Win_v${unzipInstVersion}.exe"
$zipSuffix = "Win_v*.*.zip"
# This needs to be wrapped into a function so this object also has the data from the package parameters
function CreateRegistryObjects () {
  # The installer does not have an option for custom paths so we need to create the registry entry before
  $global:regKeyVST2Path       = New-Object -TypeName PSObject -Prop (@{ 'path'="HKCU:\SOFTWARE\DMGAudio\InstallPaths"; 'key'="VST_64";   'value'="$vst2Path";                 'x64'='true';  'x86'='false'})
  $global:regKeyVST2x86_64Path = New-Object -TypeName PSObject -Prop (@{ 'path'="HKCU:\SOFTWARE\DMGAudio\InstallPaths"; 'key'="VST_32";   'value'="$vst2x86_64Path";           'x64'='true';  'x86'='false'})
  $global:regKeyVST2Pathx86    = New-Object -TypeName PSObject -Prop (@{ 'path'="HKCU:\SOFTWARE\DMGAudio\InstallPaths"; 'key'="VST_32";   'value'="$vst2Path";                 'x64'='false'; 'x86'='true'})
  $global:regKeyVST3Path       = New-Object -TypeName PSObject -Prop (@{ 'path'="HKCU:\SOFTWARE\DMGAudio\InstallPaths"; 'key'="VST3_64";  'value'="$vst3Path";                 'x64'='true';  'x86'='false'})
  $global:regKeyVST3x86_64Path = New-Object -TypeName PSObject -Prop (@{ 'path'="HKCU:\SOFTWARE\DMGAudio\InstallPaths"; 'key'="VST3_32";  'value'="$vst3x86_64Path";           'x64'='true';  'x86'='false'})
  $global:regKeyVST3Pathx86    = New-Object -TypeName PSObject -Prop (@{ 'path'="HKCU:\SOFTWARE\DMGAudio\InstallPaths"; 'key'="VST3_32";  'value'="$vst3Path";                 'x64'='false'; 'x86'='true'})
  $global:regKeyDataPath       = New-Object -TypeName PSObject -Prop (@{ 'path'="HKCU:\SOFTWARE\DMGAudio\$packageName"; 'key'="Path";     'value'="$companyPath\$packageName"; 'x64'='true';  'x86'='true'})
  $global:regKeys = $regKeyVST2Path, $regKeyVST2x86_64Path, $regKeyVST2Pathx86, $regKeyVST3Path, $regKeyVST3x86_64Path, $regKeyVST3Pathx86, $regKeyDataPath
}
function CreateShortcutObjects () {
  $global:shortcuts
}
function CreateSymlinkObjects () {
  $global:symlinks
}
function CreateInstallerObjects () {
  $global:presets      = New-Object -TypeName PSObject -Prop (@{ 'key'="NoPresets";   'value'="presets";   'x64'='true'; 'x86'='true'})
  $global:vst2x86      = New-Object -TypeName PSObject -Prop (@{ 'key'="NoVst2";      'value'="vst2_32";   'x64'='true'; 'x86'='true'})
  $global:vst2x64      = New-Object -TypeName PSObject -Prop (@{ 'key'="NoVst2";      'value'="vst2_64";   'x64'='true'; 'x86'='false'})
  $global:vst3x86      = New-Object -TypeName PSObject -Prop (@{ 'key'="NoVst3";      'value'="vst3_32";   'x64'='true'; 'x86'='true'})
  $global:vst3x64      = New-Object -TypeName PSObject -Prop (@{ 'key'="NoVst3";      'value'="vst3_64";   'x64'='true'; 'x86'='false'})
  $global:aaxx86       = New-Object -TypeName PSObject -Prop (@{ 'key'="NoAax";       'value'="aax_32";    'x64'='true'; 'x86'='true'})
  $global:aaxx64       = New-Object -TypeName PSObject -Prop (@{ 'key'="NoAax";       'value'="aax_64";    'x64'='true'; 'x86'='false'})
  $global:installerComponentsList = $presets, $vst2x86, $vst2x64, $vst3x86, $vst3x64, $aaxx86, $aaxx64
}
$ErrorActionPreference = 'Stop';

$installerType = 'EXE'

$silentArgs = '/qn /norestart'
$validExitCodes = @(0, 3010, 1605, 1614, 1641)
if ($installerType -ne 'MSI') {
  $silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' # Inno Setup
  $validExitCodes = @(0)
}

$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $softwareName

if ($key.Count -eq 1) {
  $key | % {
    $file = "$($_.UninstallString)"

    if ($installerType -eq 'MSI') {
      $silentArgs = "$($_.PSChildName) $silentArgs"
      $file = ''
    }

    Uninstall-ChocolateyPackage -PackageName $packageName `
                                -FileType $installerType `
                                -SilentArgs "$silentArgs" `
                                -ValidExitCodes $validExitCodes `
                                -File "$file"
  }
} elseif ($key.Count -eq 0) {
  Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
  Write-Warning "$key.Count matches found!"
  Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
  Write-Warning "Please alert package maintainer the following keys were matched:"
  $key | % {Write-Warning "- $_.DisplayName"}
}

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
TrackComp (Install) 2.08 107 Wednesday, April 5, 2023 Exempted
TrackComp (Install) 2.06.20221112 55 Saturday, November 12, 2022 Approved
TrackComp (Install) 2.06 36 Monday, November 7, 2022 Approved
TrackComp (Install) 2.05 75 Sunday, April 3, 2022 Approved
TrackComp (Install) 2.04 110 Thursday, June 24, 2021 Approved
TrackComp (Install) 2.03 105 Wednesday, March 17, 2021 Approved
TrackComp (Install) 2.02 228 Saturday, March 28, 2020 Approved
TrackComp (Install) 2.01 211 Friday, February 28, 2020 Approved
TrackComp (Install) 2.00 213 Tuesday, November 26, 2019 Approved
TrackComp (Install) 1.04 164 Tuesday, June 25, 2019 Approved
TrackComp (Install) 1.03 167 Friday, May 24, 2019 Approved
TrackComp (Install) 1.02 348 Friday, January 5, 2018 Approved
TrackComp (Install) 1.01 352 Friday, November 10, 2017 Approved
Discussion for the TrackComp (Install) Package

Ground Rules:

  • This discussion is only about TrackComp (Install) and the TrackComp (Install) package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or TrackComp (Install), or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus