Announcement

Collapse
No announcement yet.

SN220 driver

Collapse
This is a sticky topic.
X
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • SN220 driver

    http://www.ftdichip.com/Drivers/VCP.htm

  • #2
    Thanks Greg. I was building an installer with NSIS and needed to install the snapstick driver during the install on a Windows 7 machine. Ultimately, I was able to do it with dpinst.exe. This exe can only be found in the Windows Driver Kit 8.1. Microsoft took it out of the latest WDK. Also, note that there are two different versions of dpinst (32 bit and 64 bit).

    Code:
    Exec '$INSTDIR\Drivers\dpinst64.exe /a /sa /sw'
    will install the drivers silently.
    Last edited by cce1911; 02-07-2017, 08:56 AM. Reason: Corrected the code. There must be spaces between the switches /a /sa /sw

    Comment

    X