Jump to content

BDA (Tv tuner support) on Server 2008/R2


shahed26

Recommended Posts

hello

i'm on win2k8 ent 64bit

downloaded last version.

still getting ksxbar.ax errors

and still can't see tv :(

please help

Did you follow the instructions properly?

what language version of server your using? (it must be en-US)

Did you grab all the files from vista by running "get bda files.bat"?

Link to comment
Share on other sites


hello

i'm on win2k8 ent 64bit

downloaded last version.

still getting ksxbar.ax errors

and still can't see tv :(

please help

Did you follow the instructions properly?

what language version of server your using? (it must be en-US)

Did you grab all the files from vista by running "get bda files.bat"?

yes

yes

yes

all went good, but the "regsvr32 ksxbar.ax"

can't do this even manually

can you tell me exactly names of files needed to register ksxbar.ax and kswdmcap.ax? (excluding theirselves of course and ksxbar.ax.mui and kswdmcap.ax.mui)

Link to comment
Share on other sites

hello

i'm on win2k8 ent 64bit

downloaded last version.

still getting ksxbar.ax errors

and still can't see tv :(

please help

Did you follow the instructions properly?

what language version of server your using? (it must be en-US)

Did you grab all the files from vista by running "get bda files.bat"?

yes

yes

yes

all went good, but the "regsvr32 ksxbar.ax"

can't do this even manually

can you tell me exactly names of files needed to register ksxbar.ax and kswdmcap.ax? (excluding theirselves of course and ksxbar.ax.mui and kswdmcap.ax.mui)

Hi, after doing a clean install of server 2008 ent x64, i realized that "kstvtune.ax and ksxbar.ax" are not required to register, and it cant be registered as well. The whole point is that them 2 ax files needs to be present in syswow64 and system32 directory, so when you launch any tv applications it uses these 2 files for its purpose. They cant be registered even on vista, i tried registering, but it will not register as the whole point is your tv application to access these 2 files only for your tv app to work.

Just run the "BDA.inf" from bda folder the directX 9 version, and restart to see if your tv card works, if it don't then the only solution i would recommend is do a clean install and run my setup pack.

Hope this helps

Link to comment
Share on other sites

Hi!

Just a little tweack for your bat files If you want them to run no matter the location of bdaforserver folder !

-> So NO NEED FOR

and it will extract as "bdaforserver" to your windows

installation drive,thats were the setup MUST be runned from, otherwise it wont work

IMPORTANT:IN ORDER FOR EVERYTHING TO WORK, RUN THE SETUP FROM WERE YOUR WINDOWS

IS INSTALLED (C:) OTHERWISE IT WONT WORK (THATS WERE IT EXTRACTED)

add

cd /d %0\..
after
@echo off
and replace
%systemdrive%\bdaforserver\
with
"../
(also add quotes " at the end of the line)

For example

@echo off

cd /d %0\..

copy %systemroot%\system32\bdaplgin.ax "../source\x64\System32"

copy %systemroot%\system32\kstvtune.ax "../source\x64\System32"

copy %systemroot%\system32\ksxbar.ax "../source\x64\System32"

copy %systemroot%\system32\Mpeg2Data.ax "../source\x64\System32"

copy %systemroot%\system32\mpg2splt.ax "../source\x64\System32"

copy %systemroot%\system32\MSDvbNP.ax "../source\x64\System32"

copy %systemroot%\system32\MSNP.ax "../source\x64\System32"

copy %systemroot%\system32\MSVidCtl.dll "../source\x64\System32"

copy %systemroot%\system32\en-US\MSVidCtl.dll.mui "../source\x64\System32"

copy %systemroot%\system32\en-US\kstvtune.ax.mui "../source\x64\System32"

copy %systemroot%\system32\en-US\kswdmcap.ax.mui "../source\x64\System32"

copy %systemroot%\system32\en-US\ksxbar.ax.mui "../source\x64\System32"

copy %systemroot%\system32\psisdecd.dll "../source\x64\System32"

copy %systemroot%\system32\psisrndr.ax "../source\x64\System32"

copy %systemroot%\system32\VBICodec.ax "../source\x64\System32"

copy %systemroot%\system32\vbisurf.ax "../source\x64\System32"

copy %systemroot%\system32\WSTPager.ax "../source\x64\System32"

copy %systemroot%\SysWOW64\bdaplgin.ax "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\kstvtune.ax "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\ksxbar.ax "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\Mpeg2Data.ax "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\mpg2splt.ax "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\MSDvbNP.ax "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\MSNP.ax "../source\x64\SysWOW64'

copy %systemroot%\SysWOW64\MSVidCtl.dll "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\en-US\MSVidCtl.dll.mui "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\en-US\kstvtune.ax.mui "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\en-US\kswdmcap.ax.mui "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\en-US\ksxbar.ax.mui "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\psisdecd.dll "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\psisrndr.ax "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\VBICodec.ax "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\vbisurf.ax "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\WSTPager.ax "../source\x64\SysWOW64"

exit

Good luck with your work !

Link to comment
Share on other sites

Hi!

Just a little tweack for your bat files If you want them to run no matter the location of bdaforserver folder !

-> So NO NEED FOR

and it will extract as "bdaforserver" to your windows

installation drive,thats were the setup MUST be runned from, otherwise it wont work

IMPORTANT:IN ORDER FOR EVERYTHING TO WORK, RUN THE SETUP FROM WERE YOUR WINDOWS

IS INSTALLED (C:) OTHERWISE IT WONT WORK (THATS WERE IT EXTRACTED)

add

cd /d %0\..
after
@echo off
and replace
%systemdrive%\bdaforserver\
with
"../
(also add quotes " at the end of the line)

For example

@echo off

cd /d %0\..

copy %systemroot%\system32\bdaplgin.ax "../source\x64\System32"

copy %systemroot%\system32\kstvtune.ax "../source\x64\System32"

copy %systemroot%\system32\ksxbar.ax "../source\x64\System32"

copy %systemroot%\system32\Mpeg2Data.ax "../source\x64\System32"

copy %systemroot%\system32\mpg2splt.ax "../source\x64\System32"

copy %systemroot%\system32\MSDvbNP.ax "../source\x64\System32"

copy %systemroot%\system32\MSNP.ax "../source\x64\System32"

copy %systemroot%\system32\MSVidCtl.dll "../source\x64\System32"

copy %systemroot%\system32\en-US\MSVidCtl.dll.mui "../source\x64\System32"

copy %systemroot%\system32\en-US\kstvtune.ax.mui "../source\x64\System32"

copy %systemroot%\system32\en-US\kswdmcap.ax.mui "../source\x64\System32"

copy %systemroot%\system32\en-US\ksxbar.ax.mui "../source\x64\System32"

copy %systemroot%\system32\psisdecd.dll "../source\x64\System32"

copy %systemroot%\system32\psisrndr.ax "../source\x64\System32"

copy %systemroot%\system32\VBICodec.ax "../source\x64\System32"

copy %systemroot%\system32\vbisurf.ax "../source\x64\System32"

copy %systemroot%\system32\WSTPager.ax "../source\x64\System32"

copy %systemroot%\SysWOW64\bdaplgin.ax "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\kstvtune.ax "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\ksxbar.ax "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\Mpeg2Data.ax "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\mpg2splt.ax "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\MSDvbNP.ax "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\MSNP.ax "../source\x64\SysWOW64'

copy %systemroot%\SysWOW64\MSVidCtl.dll "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\en-US\MSVidCtl.dll.mui "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\en-US\kstvtune.ax.mui "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\en-US\kswdmcap.ax.mui "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\en-US\ksxbar.ax.mui "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\psisdecd.dll "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\psisrndr.ax "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\VBICodec.ax "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\vbisurf.ax "../source\x64\SysWOW64"

copy %systemroot%\SysWOW64\WSTPager.ax "../source\x64\SysWOW64"

exit

Good luck with your work !

Mercury_22, Thank you very much for this tweak. I will update my installer pack, and will have a quick test.

Thank you for this tip :)

Link to comment
Share on other sites

  • 2 weeks later...

helo shahed,

where is the installer pack? i download badforserver.exe when i double click it. it creates a folder called bda in c:\, it does not have a setup in there?

am i dong it right.

thanks bro.

Link to comment
Share on other sites

helo shahed,

where is the installer pack? i download badforserver.exe when i double click it. it creates a folder called bda in c:\, it does not have a setup in there?

am i dong it right.

thanks bro.

Instructions on how to install are inside the "bdaforserver" folder

Link to comment
Share on other sites

  • 3 weeks later...

Hi,

I have an analog WinTV-PVR USB2 Model 24019.

I used your Setup, got the files from Vista UlimateSP1, and copied the sources on Windows Server 2008.

Then I ran the setup. The setup said that is all ok, restarts, then after starting there was the massege with the new drivers, I canceled it all and restarts my PC.

Than I tried Wintv V.6 and Winamp with TV Plugin but no one works. The driver of my Wintv are installed.

The message in WinTV V6 is the same how before I installed the files: "Cannot access TV Tuner, please check the unit is connected and the drivers are correctly instakked.(0)"

I checked the drivers in device manager there is all ok.

I use Windows Server 2008 X64 Englisch with German location and German keyboard. The same with Vista. Desktop enhancement were installed.

Does this only works with DVB?

Have somebody the same WinTV and get it to work?

Do you have any idea were the problem and how I can get it to work?

Is the problem the German location Or/And keyboard??

Thanks for any help.

Greetings

Jan

Edited by haja0011
Link to comment
Share on other sites

Hi,

I have an analog WinTV-PVR USB2 Model 24019.

I used your Setup, got the files from Vista UlimateSP1, and copied the sources on Windows Server 2008.

Then I ran the setup. The setup said that is all ok, restarts, then after starting there was the massege with the new drivers, I canceled it all and restarts my PC.

Than I tried Wintv V.6 and Winamp with TV Plugin but no one works. The driver of my Wintv are installed.

The message in WinTV V6 is the same how before I installed the files: "Cannot access TV Tuner, please check the unit is connected and the drivers are correctly instakked.(0)"

I checked the drivers in device manager there is all ok.

I use Windows Server 2008 X64 Englisch with German location and German keyboard. The same with Vista. Desktop enhancement were installed.

Does this only works with DVB?

Have somebody the same WinTV and get it to work?

Do you have any idea were the problem and how I can get it to work?

Is the problem the German location Or/And keyboard??

Thanks for any help.

Greetings

Jan

Unfortunately it does not work with analogue tv, (as far as i know). Many people who have tried this setup pack had analogue and reported not working. It only works with digital DVB.

Btw there are some know problems with apps like wintv and winamp tv plugins, my advice is to use a better 3rd party tv software.

The best one is dvbviewer (not free) http://www.dvbviewer.com/en/index.php

or you can try dvbdream (the best free tv app) http://www.dvbdream.org/

alternative progdvb http://www.progdvb.com/

These are the ones that works best with tv cards under server x86/x64

analogue might work these tv app mentioned above, but never tested before

Edited by shahed26
Link to comment
Share on other sites

Hi,

thanks for your answer. I tried DVB Dream with BDA but it hasn't worked.

Then I must hope that Microsoft support it in future, but the chances are not so good :(.

TV Tuner on a server OS arent rampant :(

Greetings

Jan

Link to comment
Share on other sites

Hi shahed26,

do you know any DVB-T card/stick which will work with Windows Server 2008 X64? in our town we can reveive DVB-T with indoor aerial.

Thank for your help.

Greetings

Jan

QUOTE (grsc3p0 @ May 3 2008, 08:53 PM) *

I would like to say a big thanks to shahed26 for the BDA guide. thumbup.gif

My Terratec DT USB XS Diversity Digital Tuner is now working fine in Windows 2008 server!

Dual tuners working OK, everything looks stable and normal, no errors in the OS logs.

Software : TerraTec Home Cinema 5.73.00 beta

Driver : Cinergy DT USB XS Diversity - BDA Driver 3.12.0.0 (for XP and Vista)

Filters : Vista Codec Package 4.6.4

Hardware (PC) : Lenovo T60 Laptop !

Windows 2008 is now FULLY configured to look and behave like Vista. I'm impressed.

OR YOU CAN VISIT THIS SITE, FOR MORE INFO ON WHICH CARDS WORKED

http://www.hauppauge.co.uk/board/showthrea...4850&page=5

Am currently using hauppauge hvr4000 dvb-s2 card, and i have no problems

Edited by shahed26
Link to comment
Share on other sites

Hi shahed26,

Hi, after doing a clean install of server 2008 ent x64, i realized that "kstvtune.ax and ksxbar.ax" are not required to register, and it cant be registered as well.

Lines of "\Setup For x64\Get BDA Vista Files.bat":

move %systemdrive%\bdaforserver\source\x64\System32\kstvtune.ax %systemroot%\system32

move %systemdrive%\bdaforserver\source\x64\System32\ksxbar.ax %systemroot%\system32

move %systemdrive%\bdaforserver\source\x64\SysWOW64\kstvtune.ax %systemroot%\SysWOW64

move %systemdrive%\bdaforserver\source\x64\SysWOW64\ksxbar.ax %systemroot%\SysWOW64

Needed and right?

But Lines:

%systemroot%\SysWOW64\regsvr32 /s %systemroot%\SysWOW64\kstvtune.ax

%systemroot%\SysWOW64\regsvr32 /s %systemroot%\SysWOW64\ksxbar.ax

%systemroot%\system32\regsvr32 /s %systemroot%\system32\kstvtune.ax

%systemroot%\system32\regsvr32 /s %systemroot%\system32\ksxbar.ax

Not needed and bugged. Because this DLL don't have DllRegisterServer() entry.

Any register error of kstvtune.ax&ksxbar.ax must ignored. That right?

--

Sorry for my best English

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...