Difference between revisions of "DFMirage hook display driver"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
 
m
Line 8: Line 8:
  
  
[Unattended]
+
[Unattended]
 
     DriverSigningPolicy = Ignore
 
     DriverSigningPolicy = Ignore
  
Line 15: Line 15:
  
 
The installer won't work from the other path than the current, so you have to do the following "tricks" - save it as <code>dfmirage.bat</code>, and put an entry to it in packages.xml:
 
The installer won't work from the other path than the current, so you have to do the following "tricks" - save it as <code>dfmirage.bat</code>, and put an entry to it in packages.xml:
 
  
 
  copy \\server\packages\tightvnc\dfmirage\* .
 
  copy \\server\packages\tightvnc\dfmirage\* .
Line 22: Line 21:
 
  echo
 
  echo
  
echo is just to make sure the exit code will be 0.
+
<code>echo</code> is just to make sure the exit code will be 0.
  
Inst.exe will complain and throw an error for some reason, but the driver will be installed correctly.
+
<code>Inst.exe</code> will complain and throw an error for some reason, but the driver will be installed correctly.
  
  
 
[[Category: Silent Installers]]
 
[[Category: Silent Installers]]

Revision as of 20:51, 28 November 2005

DFMirage hook display driver for TightVNC greatly improves performance of the Win32 TightVNC Server, so it's a recommended update if you run the latest development version of TightVNC. Once installed, the driver will be detected and used by the Win32 TightVNC Server automatically.

You have to use it with a development version of TightVNC.

This driver is not digitally signed, so you will get a pop-up warning, unless you disable it either during Windows Unattended install, or in a registry.

To disable it during the Unattended install, the following entries have to be present in unattend.txt file:


[Unattended]
   DriverSigningPolicy = Ignore


After you download dfmirage.zip archive, uncompress it and put it somewhere on your server.

The installer won't work from the other path than the current, so you have to do the following "tricks" - save it as dfmirage.bat, and put an entry to it in packages.xml:

copy \\server\packages\tightvnc\dfmirage\* .
Inst.exe
del Inst.exe LICENSE.txt README.txt Uninst.exe dfmirage.sys dfmirage.dll dfmirage.inf
echo

echo is just to make sure the exit code will be 0.

Inst.exe will complain and throw an error for some reason, but the driver will be installed correctly.