I\'ve been able to slipstream DirectX 9 for win 2k, but it took quite a bit of work to find out what reg sections in the infs needed to be slipstreamed and to modify the inf files to work with the windows textmode setup program. The remaining problem I have is that the setup program does not know about the inf dir ids (like %11%) so all the REG_SZ keys that use the dir ids have to be changed, which is unfortunate. It can be made to work by changing them to REG_EXPAND_SZ types with environent variables or maybe just using relative paths. However, the only way that I can see to have all the reg entries be exactly correct would be to hardcode the drive letter into those paths,
For example,
HKCR,CLSID{636B9F10-0C7D-11D1-95B2-0020AFDC7421}InProcServer32,,,\"%11%DMUSIC.DLL\"
would become
HKCR,CLSID{636B9F10-0C7D-11D1-95B2-0020AFDC7421}InProcServer32,,,\"C:WIN2000system32DMUSIC.DLL\"
which would limit the use of that particular CD.
Maybe someone has a solution to this?