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:

1,197

Downloads of v 1.0.450:

167

Last Update:

12 Apr 2023

Package Maintainer(s):

Software Author(s):

  • Fanatec (Endor AG)

Tags:

fanatec

Fanatec Driver

  • 1
  • 2
  • 3

1.0.450 | Updated: 12 Apr 2023

Downloads:

1,197

Downloads of v 1.0.450:

167

Maintainer(s):

Software Author(s):

  • Fanatec (Endor AG)

Tags:

fanatec

Fanatec Driver 1.0.450

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged as a Note:

At least one file within this package has greater than 0 detections, but less than 5

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Fanatec Driver, run the following command from the command line or from PowerShell:

>

To upgrade Fanatec Driver, run the following command from the command line or from PowerShell:

>

To uninstall Fanatec Driver, 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 fanatec-driver -y --source="'INTERNAL REPO URL'" [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 fanatec-driver -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

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

Exit $exitCode

- name: Install fanatec-driver
  win_chocolatey:
    name: fanatec-driver
    version: '1.0.450'
    source: INTERNAL REPO URL
    state: present

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


chocolatey_package 'fanatec-driver' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.0.450'
end

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


cChocoPackageInstaller fanatec-driver
{
    Name     = "fanatec-driver"
    Version  = "1.0.450"
    Source   = "INTERNAL REPO URL"
}

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


package { 'fanatec-driver':
  ensure   => '1.0.450',
  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 as a trusted package on 12 Apr 2023.

Description

Driver:

After installing the Fanatec Driver, open the Fanatec Wheel Properties page to run firmware updates.
Open the Properties page again after each firmware update to check for further update prompts,
depending on which devices are connected. For example, you may need to update the wheel base,
motor, and steering wheel firmwares separately.

Release Notes

Fanalab Forum

Package Notes

This package will add Code Signing certificates to the machines Trusted Publisher store (Cert:\LocalMachine\TrustedPublisher\).

Certificates will be added for:

  • MEDIA ELECTRONICS INC.
  • Endor AG (Fanatec).

This is required to install the drivers.

Videos

Youtube
Youtube


tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop'

#Download and unzip
$toolsDir = "$(Split-Path -Parent $MyInvocation.MyCommand.Definition)"

$packageName = 'fanatec-driver'
$url = 'https://fanatec.com/media/archive/fc/8e/46/2023-02-10-Fanatec_driver_450.zip'
$checksum = '0c486e52c4151ab2de0376459d4d0fe1d8dd1ef2fae79a70669ccde91339739e'
$filePath = "$toolsDir\$packageName.zip"

$downloadArgs = @{
  packageName  = $env:ChocolateyPackageName
  fileFullPath = $filePath
  url          = $url
  checksum     = 'd4d4a9c1eb86ca9f7cc8af2adbd3c7918605a4387d2d63aff367b99d3755860d'
  checksumType = 'sha256'
  options      = @{
    Headers = @{             
      Accept = '*/*'
    }
  }
}

Get-ChocolateyWebFile @downloadArgs
Get-ChocolateyUnzip -FileFullPath $filePath -Destination $toolsDir

#Install certificates
$DatronicsoftCert = @"
-----BEGIN CERTIFICATE-----
MIIFDTCCA/WgAwIBAgIQC6ugKJImPkz/9khsCnmETTANBgkqhkiG9w0BAQUFADBz
MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
d3cuZGlnaWNlcnQuY29tMTIwMAYDVQQDEylEaWdpQ2VydCBIaWdoIEFzc3VyYW5j
ZSBDb2RlIFNpZ25pbmcgQ0EtMTAeFw0xOTA5MjUwMDAwMDBaFw0yMDA5MjgxMjAw
MDBaMFUxCzAJBgNVBAYTAlBIMQ4wDAYDVQQHEwVQYXNpZzEaMBgGA1UEChMRRGF0
cm9uaWNzb2Z0IEluYy4xGjAYBgNVBAMTEURhdHJvbmljc29mdCBJbmMuMIIBIjAN
BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqW0s0RYH62ro3JErtzfUgRqjXC1
SwFmuKprh2hhtqHpqic8yxeQUP2dEOckstMjhvnSnCso5hQH3ZeaCq7uir8S6TfX
jhEdMZnT5nsT1O4QgHnLvNEBLckgMN51dQRJdpMNSgNA2Okkz2TC42KXqJX4CFa/
wmfrFHsOr0yqmC3NL+4Yvm7jxkJDPRboVqUQKpi/pUsqBvlfS5VzOp4WDwEfX0Fp
316GXCHaUiPbAsAIVm5QMpnBirGr6lqIO2MeNChFoo02OZfAVg1Z35ie31C1HzCY
UoaoBaqNg9/59dMXQxdqzvyctOYOGIgm9mFozLiU6cS3xHWGYzxkTE5/gQIDAQAB
o4IBuTCCAbUwHwYDVR0jBBgwFoAUl0gD6xUIa7myWCPMlC7xxmXSZI4wHQYDVR0O
BBYEFIaLjgcjJbC1CxY/TFHHeV7Gxu2ZMA4GA1UdDwEB/wQEAwIHgDATBgNVHSUE
DDAKBggrBgEFBQcDAzBpBgNVHR8EYjBgMC6gLKAqhihodHRwOi8vY3JsMy5kaWdp
Y2VydC5jb20vaGEtY3MtMjAxMWEuY3JsMC6gLKAqhihodHRwOi8vY3JsNC5kaWdp
Y2VydC5jb20vaGEtY3MtMjAxMWEuY3JsMEwGA1UdIARFMEMwNwYJYIZIAYb9bAMB
MCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwCAYG
Z4EMAQQBMIGGBggrBgEFBQcBAQR6MHgwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3Nw
LmRpZ2ljZXJ0LmNvbTBQBggrBgEFBQcwAoZEaHR0cDovL2NhY2VydHMuZGlnaWNl
cnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUNvZGVTaWduaW5nQ0EtMS5jcnQw
DAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQUFAAOCAQEAtj5l2kMMpMJ2CZIzzF89
sE/qV3drFJ6jp+YI+8eXXl+pMOrfdsADntUpnXXU649lh7TkECjnfYCIKf5HI90v
euS1H87fjadWR3amDMXBrALFg3jCiaGIztrD8/lmnzy37ZO6VE2zD0wfH+2CQj81
+0FOYBHsE+/e5ds+2McVWWEyPthW+vNzcJHndwIBWubE1A4NNIN9PMllImXVVd57
7XVnKzVQ+ImrzaGZIgzjsuYrh/g15XUBkm5jWKS6gjNVGjhlZZKHczcz+uRYHZmF
0Arzx/bzzagK61Amdg3Zh7jP9FTfpP8xNES2U7CiO7Jv6bMKw144Y82IkRVr8GBp
YA==
-----END CERTIFICATE-----
"@

$DatronicsoftCert2 = @"
-----BEGIN CERTIFICATE-----
MIIFCTCCA/GgAwIBAgIQBWmMSDvXIfpo6c5Xp0K2gTANBgkqhkiG9w0BAQUFADBv
MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
d3cuZGlnaWNlcnQuY29tMS4wLAYDVQQDEyVEaWdpQ2VydCBBc3N1cmVkIElEIENv
ZGUgU2lnbmluZyBDQS0xMB4XDTIwMDkwMjAwMDAwMFoXDTIzMTEwMzEyMDAwMFow
VTELMAkGA1UEBhMCUEgxDjAMBgNVBAcTBVBhc2lnMRowGAYDVQQKExFEYXRyb25p
Y3NvZnQgSW5jLjEaMBgGA1UEAxMRRGF0cm9uaWNzb2Z0IEluYy4wggEiMA0GCSqG
SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDpsuvIpVKQDgEHvpaU7WD8vZIzzWLmzyUV
f9FVjK7F6Y7qrIvoC45mToJagPF5FQ6ejj9Cb6q+KK7RNviMKzhAJjE3ljgiY/mH
QnIEvEYQVzqRSJaNA7SmCVhvhxNtf23J7VxJ4/4fuY1b7HAGeLZDEJCIjQ+4rMyG
nHa7P+2vGonOBJ7XG/MO8YECgVS9f4uSHhRJUlv1ze50EFYA1cHoVawFIPgrcfvY
ssjQM0b/A2qIMwJ1hMPAWBoxWgvbSirBnPGIdsl+oPJA9HX1JSnlMP7DB9BLMNis
vS1oxsMnyk80Ejy48ZQeC8PklZwJGvfZ3Pj54wjDsBql0bFs0Wi9AgMBAAGjggG5
MIIBtTAfBgNVHSMEGDAWgBR7aM4pqsAXvkl64eU/1qf3RY81MjAdBgNVHQ4EFgQU
sHZEulMut12hY6FxiAkz+eJI+wIwDgYDVR0PAQH/BAQDAgeAMBMGA1UdJQQMMAoG
CCsGAQUFBwMDMG0GA1UdHwRmMGQwMKAuoCyGKmh0dHA6Ly9jcmwzLmRpZ2ljZXJ0
LmNvbS9hc3N1cmVkLWNzLWcxLmNybDAwoC6gLIYqaHR0cDovL2NybDQuZGlnaWNl
cnQuY29tL2Fzc3VyZWQtY3MtZzEuY3JsMEwGA1UdIARFMEMwNwYJYIZIAYb9bAMB
MCowKAYIKwYBBQUHAgEWHGh0dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwCAYG
Z4EMAQQBMIGCBggrBgEFBQcBAQR2MHQwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3Nw
LmRpZ2ljZXJ0LmNvbTBMBggrBgEFBQcwAoZAaHR0cDovL2NhY2VydHMuZGlnaWNl
cnQuY29tL0RpZ2lDZXJ0QXNzdXJlZElEQ29kZVNpZ25pbmdDQS0xLmNydDAMBgNV
HRMBAf8EAjAAMA0GCSqGSIb3DQEBBQUAA4IBAQBbZI62dNG4NzIdbPRituXMmreK
HD/JpvjbtYg5GEWSxYZ7qDIDSwhAD3NqkXO+O3qJmg8GsPW81/2tsZLyWutOECqE
n4V/I/DV0B8UR2wyFDJsHRm9rVFMJ9kU/rx+tFfE86Ofgx1ahHoXZpcy4tzptMFR
AUEwkBLDd/ogzZnj4gEbT89XhnKS+crx9A59CCLpLpT8Qn78nhBO1fqku6hJm+Mm
e647vpV8/5JhaXDOyDzX6f6sW1VMXcnIxBrDh6O4kVod9Sc7MeWzKAD5RnYyQCbn
gcrkJf05axUKepU5f9fIYkLJpWE6qSZolmLHUa0un1eJ5azfL2oAxMYk7RfY
-----END CERTIFICATE-----
"@

$EndorAgCert = @"
-----BEGIN CERTIFICATE-----
MIIFYzCCBEugAwIBAgIQNBbeX5vDM9RCHtPVWEJ1rDANBgkqhkiG9w0BAQsFADCB
kTELMAkGA1UEBhMCVVMxHTAbBgNVBAoTFFN5bWFudGVjIENvcnBvcmF0aW9uMR8w
HQYDVQQLExZTeW1hbnRlYyBUcnVzdCBOZXR3b3JrMUIwQAYDVQQDEzlTeW1hbnRl
YyBDbGFzcyAzIEV4dGVuZGVkIFZhbGlkYXRpb24gQ29kZSBTaWduaW5nIENBIC0g
RzIwHhcNMTYxMDEzMDAwMDAwWhcNMTkxMDEzMjM1OTU5WjCB5DETMBEGCysGAQQB
gjc8AgEDEwJERTEXMBUGCysGAQQBgjc8AgECDAZCYXllcm4xGTAXBgsrBgEEAYI3
PAIBAQwITGFuZHNodXQxHTAbBgNVBA8TFFByaXZhdGUgT3JnYW5pemF0aW9uMREw
DwYDVQQFEwhIUkIgNTQ4NzELMAkGA1UEBhMCREUxDzANBgNVBAgMBkJheWVybjER
MA8GA1UEBwwITGFuZHNodXQxETAPBgNVBAoMCEVuZG9yIEFHMRAwDgYDVQQLDAdG
YW5hdGVjMREwDwYDVQQDDAhFbmRvciBBRzCCASIwDQYJKoZIhvcNAQEBBQADggEP
ADCCAQoCggEBAMXxcUJ5NWjYytJyzL9hnAwiMR+mD27dQJ/zKQQ6e5k9L37uT9Jh
C74hem3UomnYbvlnDB81YlSk51zroqNhawdg27ZKoqbbwYRPS9haf83BJqycTnyz
qH8JSnlhM9dfqac2dStn46GO3TXzlXxMk3DOblMb8he8uwWZilpSdIf/rdVJEcF8
auLsSQauUsK92Gk0bdIfX3IZw46dKFYrFMuah/bDG4L5Z1w8tr51xAmgFW25yJfj
bk11NYlgeSo+f3WEXLZYdThnouXgMRLXjc49CorGqQCnIvRvcw2dKf6i1212PuTt
TfUJ+XlrqnAXx7F8EMgSmACvrv9rkonjWT8CAwEAAaOCAWAwggFcMAkGA1UdEwQC
MAAwDgYDVR0PAQH/BAQDAgeAMCsGA1UdHwQkMCIwIKAeoByGGmh0dHA6Ly9zdy5z
eW1jYi5jb20vc3cuY3JsMGAGA1UdIARZMFcwVQYFZ4EMAQMwTDAjBggrBgEFBQcC
ARYXaHR0cHM6Ly9kLnN5bWNiLmNvbS9jcHMwJQYIKwYBBQUHAgIwGQwXaHR0cHM6
Ly9kLnN5bWNiLmNvbS9ycGEwFgYDVR0lAQH/BAwwCgYIKwYBBQUHAwMwHwYDVR0j
BBgwFoAUFmbeSjTjUKcRhgOxbKnGrM1ZbpswHQYDVR0OBBYEFNOKbVzFpqsVihZ/
v61mGQAiRnelMFgGCCsGAQUFBwEBBEwwSjAfBggrBgEFBQcwAYYTaHR0cDovL3N3
LnN5bWNkLmNvbTAnBggrBgEFBQcwAoYbaHR0cDovL3N3MS5zeW1jYi5jb20vc3cu
Y3J0MA0GCSqGSIb3DQEBCwUAA4IBAQAB3K+ajkmSr6v6+6uwVS2tu0yxn/G/i3zL
0vXZWO+zJXoGyWGHubsgotIijBcj/ZrXPF6Z+tH6TqDZxN/HkqxB2hvI3Fwg5HpB
gUoJty66iVZBJXS9AcxwSxQ0pkRi1NGOnj4EPy4xlHyzhAPGKRrwwxoS/MtyBUEB
UXW6gAe542zhM9r2C9C+DGnNSTIzq2Y1KITYEN5Vap4D44UtWBpOOArAQ65S5eT2
pOFnS5v2cOfRBCYHnkYk71/oKYsFwiaL90rS5FpdVFtOg3qbodH9VII4GlKKhBtU
6UKDMoPXuLBKOfF0DJVpjziYTZLA6y9zahqP93N+ZZ+TLfzItao9
-----END CERTIFICATE-----
"@

# Windows 7 doesn't have import-certificate, hence using wrapper func
if (!(Test-Path Function:\Import-Certificate)) {
  function Import-Certificate([string]$FilePath, [string]$CertStoreLocation) {
    $certSplits = $CertStoreLocation -replace '^cert\:\\' -split '\\'
    if (!($certSplits.Length -eq 2)) { throw "Unexpected certificate storage location" }

    $certutil = Get-Command "certutil" | Select-Object -ExpandProperty Path

    if (!$certutil) { throw "Path to certutil was not found" }

    $arguments = @(
      '-addstore'
      $certSplits[1]
      "$(Resolve-Path $FilePath)"
    )

    Start-ChocolateyProcessAsAdmin -ExeToRun $certutil -Statements $arguments
  }
}

$DatronicsoftCert, $DatronicsoftCert2, $EndorAgCert | ForEach-Object {
  $tmpFile = [system.io.path]::GetTempFileName()
  $_ | Out-File $tmpFile -Encoding utf8
  Import-Certificate -filepath $tmpFile -CertStoreLocation 'Cert:\localmachine\TrustedPublisher'
}

# AHK won't interact with Windows Security window for some reason.
# Hence installing the certs manually to prevent popup
# $ahkFile = Join-Path $toolsDir "driver.ahk"
# Start-Process -FilePath 'AutoHotKey' -ArgumentList $ahkFile

#Install MSI
$FilePath32 = Get-ChildItem $toolsDir -Recurse *32*driver*.msi | sort name | Select-Object -Last 1
$FilePath64 = Get-ChildItem $toolsDir -Recurse *64*driver*.msi | sort name | Select-Object -Last 1

Write-Verbose "Found ${$FilePath64.FullName}"

$packageArgs = @{
  packageName    = $env:ChocolateyPackageName
  FileType       = 'msi'
  SilentArgs     = '/qn /norestart /l*v c:\fanatec-driver_msi_install.log'
  File           = $FilePath32.FullName
  File64         = $FilePath64.FullName
  validExitCodes = @(0, 3010, 1641)
}

Install-ChocolateyPackage  @packageArgs
tools\driver.ahk
#NoEnv
#NoTrayIcon
SendMode Input
DetectHiddenText, off ;toggle search hidden window text
DetectHiddenWindows, off ;toggle detect hidden windows
SetTitleMatchMode, 2 ;contains

winTitle = Windows Security ahk_class #32770

; Driver install windows
Loop, 5 {
    WinWait, %winTitle%, ,300
    WinActivate
    ControlClick, &Install, %winTitle%

    Sleep, 100
}
ExitApp

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
Fanatec Driver 1.0.447 75 Tuesday, September 20, 2022 Approved
Fanatec Driver 1.0.439 94 Tuesday, February 22, 2022 Exempted
Fanatec Driver 1.0.436 92 Saturday, February 12, 2022 Exempted
Fanatec Driver 1.0.434 64 Thursday, January 13, 2022 Approved
Fanatec Driver 1.0.429 70 Friday, November 12, 2021 Approved
Fanatec Driver 1.0.415 75 Saturday, September 25, 2021 Approved
Fanatec Driver 1.0.411 89 Sunday, September 12, 2021 Approved
Fanatec Driver 1.0.402 114 Tuesday, April 27, 2021 Approved
Fanatec Driver 1.0.400 94 Monday, April 5, 2021 Approved
Fanatec Driver 1.0.381 117 Friday, January 8, 2021 Approved
Fanatec Driver 1.0.346 124 Friday, November 20, 2020 Approved
Discussion for the Fanatec Driver Package

Ground Rules:

  • This discussion is only about Fanatec Driver and the Fanatec Driver 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 Fanatec Driver, 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