can I get rid of the popup window that appears at the end of the silent setup?
I'm using the MSFN Guide
Page 1 of 1
Divx Pro Question
#2
Posted 11 December 2003 - 09:18 PM
using PSKILL for killing explorer.exe won't make any sense to me!
#3
Posted 12 December 2003 - 09:36 AM
Have you tried Numinious's Divx & Xvid AX registering method? I've tested it and it works brilliantly without needing any bloated software
#4
Posted 26 December 2003 - 01:01 PM
thx Aaron, I will
But the problem is that I have programs that behaves similary, like Download Accelerator when it opens IE after installation..
But the problem is that I have programs that behaves similary, like Download Accelerator when it opens IE after installation..
#5
Posted 26 December 2003 - 08:38 PM
AaronXP, on Dec 12 2003, 10:36 AM, said:
Have you tried Numinious's Divx & Xvid AX registering method? I've tested it and it works brilliantly without needing any bloated software
How's this process work? What does it do?
#6
Posted 29 December 2003 - 01:18 PM
Here's how I did it, thanks to Great Numinious:
1. Make a folder called: CODECS in your c:\ drive
1. Install DivX & Xvid
2. Copy the two files: divxdec.ax & xvid.ax, found in windows\system32 folder to the CODECS folder
3. Create two files in the CODECS folder: COMMAND.BAT, & REGISTER.REG
4. In COMMAND.BAT, Insert these:
5. in REGISTER.REG, insert these:
you're done, all you have to do is to double click the batch file, or call it from another batch if you want to install unattendedly.
1. Make a folder called: CODECS in your c:\ drive
1. Install DivX & Xvid
2. Copy the two files: divxdec.ax & xvid.ax, found in windows\system32 folder to the CODECS folder
3. Create two files in the CODECS folder: COMMAND.BAT, & REGISTER.REG
4. In COMMAND.BAT, Insert these:
Quote
CLS
@echo off
ECHO.
ECHO Copying Codecs...
COPY "%systemdrive%\Codecs\divxdec.ax" "%systemroot%\system32\"
COPY "%systemdrive%\Codecs\xvid.ax" "%systemroot%\system32\"
ECHO.
ECHO Registering Codecs...
REGEDIT /S %systemdrive%\Codecs\register.reg
regsvr32.exe %systemroot%\system32\xvid.ax /s
regsvr32.exe %systemroot%\system32\divxdec.ax /s
ECHO.
ECHO You Are Done!
EXIT
@echo off
ECHO.
ECHO Copying Codecs...
COPY "%systemdrive%\Codecs\divxdec.ax" "%systemroot%\system32\"
COPY "%systemdrive%\Codecs\xvid.ax" "%systemroot%\system32\"
ECHO.
ECHO Registering Codecs...
REGEDIT /S %systemdrive%\Codecs\register.reg
regsvr32.exe %systemroot%\system32\xvid.ax /s
regsvr32.exe %systemroot%\system32\divxdec.ax /s
ECHO.
ECHO You Are Done!
EXIT
Quote
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\GNU\XviD]
"Brightness"=dword:00000019
"Deblock_H_Y"=dword:01010101
"Deblock_V_Y"=dword:01010101
"Deblock_H_C"=dword:01010101
"Deblock_V_C"=dword:00010101
"Dering_Y"=dword:00000101
"Dering_C"=dword:00000001
"Horiz_Threshold"=dword:00000014
"Vert_Threshold"=dword:00000028
"ForceColorspace"=dword:00000000
[HKEY_CURRENT_USER\Software\DivXNetworks\DivX4Windows]
"Auto PP"=dword:00000001
"Disable PP"=dword:00000000
"Dering PP Level"=dword:00000000
"Deblock PP Level"=dword:0000000f
"Warmth Strength"=dword:00000002
"Warmth Filter"=dword:00000001
"Brightness"=dword:00000000
"Contrast"=dword:00000000
"Saturation"=dword:00000000
"AspectRatio_X"=dword:00000000
"AspectRatio_Y"=dword:00000000
"Smooth Playback"=dword:00000001
"Extended Yuv Mode"=dword:00000001
"Double Buffering"=dword:00000000
"Extended Overlay Mode"=dword:00000000
"Disable Logo"=dword:00000001
"ATI Disable"=dword:00000000
[HKEY_CURRENT_USER\Software\GNU\XviD]
"Brightness"=dword:00000019
"Deblock_H_Y"=dword:01010101
"Deblock_V_Y"=dword:01010101
"Deblock_H_C"=dword:01010101
"Deblock_V_C"=dword:00010101
"Dering_Y"=dword:00000101
"Dering_C"=dword:00000001
"Horiz_Threshold"=dword:00000014
"Vert_Threshold"=dword:00000028
"ForceColorspace"=dword:00000000
[HKEY_CURRENT_USER\Software\DivXNetworks\DivX4Windows]
"Auto PP"=dword:00000001
"Disable PP"=dword:00000000
"Dering PP Level"=dword:00000000
"Deblock PP Level"=dword:0000000f
"Warmth Strength"=dword:00000002
"Warmth Filter"=dword:00000001
"Brightness"=dword:00000000
"Contrast"=dword:00000000
"Saturation"=dword:00000000
"AspectRatio_X"=dword:00000000
"AspectRatio_Y"=dword:00000000
"Smooth Playback"=dword:00000001
"Extended Yuv Mode"=dword:00000001
"Double Buffering"=dword:00000000
"Extended Overlay Mode"=dword:00000000
"Disable Logo"=dword:00000001
"ATI Disable"=dword:00000000
you're done, all you have to do is to double click the batch file, or call it from another batch if you want to install unattendedly.
#7
Posted 29 December 2003 - 06:05 PM
There's a better way of doing it.
Put all the ax files in $OEM$\$$\System32
Then just do:
REGEDIT /S %systemdrive%\Codecs\register.reg
regsvr32.exe xvid.ax /s
regsvr32.exe divxdec.ax /s
No path to system32 needed, because anything in system32 can be executed from anywhere.
Put all the ax files in $OEM$\$$\System32
Then just do:
REGEDIT /S %systemdrive%\Codecs\register.reg
regsvr32.exe xvid.ax /s
regsvr32.exe divxdec.ax /s
No path to system32 needed, because anything in system32 can be executed from anywhere.
Share this topic:
Page 1 of 1



Help

Back to top









