| User review:
|
Try this in WinXP x64:
Make a .bat file in the same folder with this text
and run it:
%windir%SysWOW64rundll32 setupapi.dll,InstallHinfSection DefaultInstall 0 %cd%vp8.inf
or in command prompt change variable %cd% with vp8.inf path and run it.
I'm not sure if it works in another Windows x64 version such as Vista or Win7.
This .bat is pretty useful in both WinXp x32 and x64:
@echo off
IF %PROCESSOR_ARCHITECTURE%==x86 (
rundll32 setupapi.dll,InstallHinfSection DefaultInstall 0 %cd%vp8.inf
) ELSE (
%windir%SysWOW64rundll32 setupapi.dll,InstallHinfSection DefaultInstall 0 %cd%vp8.inf
)
echo.
echo INSTALLED CORRECTLY, NOW THIS WINDOW IS TO BE CLOSED.
pause
Then I suggest in order to have the correct uninstall values
(for WinXP x64) to merge in system a .reg file with the following text:
[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionUninstallVP8]
"DisplayIcon"="C:\WINDOWS\SysWOW64\vp8vfw.dll,0"
"UninstallString"="C:\WINDOWS\SysWOW64\rundll32.exe setupx.dll,InstallHinfSection Remove_VP8 132 C:\WINDOWS\INF\vp8.inf" |