The DivX register app is hardcoded to use the System32 folder as path for Rundll32, which of course doesn't exist on a 64bit system. So when running Vista 64, you'll have to use a command similiar to this:
C:\Windows\Syswow64\rundll32.exe C:\Windows\System32\dtu100.dll,dtuSerialRunDll 7B63B2922B174135AFC0E1377DD81EC2
To start the DivX-regApp
// Lazze
The life of a computer/sci-fy/teccie-nerd :-) Interested in lots of stuff like: Net, C#, Software Architecture, IoT, building stuff (like sensors based on RPI Pico W), Cars, Books, meeting people, learning new stuff, Cyber Security
Thursday, June 05, 2008
Friday, April 18, 2008
Vista network slowdown when using media apps
Vista throttles networkspeed to keep multimedia viewing glitch free - but they have missed that we'rent using 286's no more...
To disable the "feature"
Regedit:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\AudioSrv
Key "DependOnServices" - edit the list, remove "MMCSS"
Quit regedit, start MSCONFIG -> Services -> Disable "Multimedia Scheduler"
Reboot and Njoy networkspeed even when listening to a MP3
// Lazze
To disable the "feature"
Regedit:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\AudioSrv
Key "DependOnServices" - edit the list, remove "MMCSS"
Quit regedit, start MSCONFIG -> Services -> Disable "Multimedia Scheduler"
Reboot and Njoy networkspeed even when listening to a MP3
// Lazze
Tuesday, February 26, 2008
Resolved networking issues in Vista
Start, Run, CMD to open a command prompt(need to be admin):
Reset TCP/IP stack to installation defaults.
netsh int ip reset reset.log
Reset WINSOCK entries to installation defaults:
netsh winsock reset catalog
Reboot! Finished!
Reset TCP/IP stack to installation defaults.
netsh int ip reset reset.log
Reset WINSOCK entries to installation defaults:
netsh winsock reset catalog
Reboot! Finished!
Subscribe to:
Posts (Atom)
Lazzes Smart Home - 2023
Here is an overview of the components in the Smart Home as of now. More stuff than I tought :-)
-
If you, like me - use VLC mediaplayer to view all your media, you may have run into the same problem as I. That is, when we watch multiple m...
-
1) Define constants const int WM_KEYDOWN = 0x100; const int WM_KEYUP = 0x101; 2) Add interface, IMessageFilter public partial class Form1 : ...
-
The DivX register app is hardcoded to use the System32 folder as path for Rundll32, which of course doesn't exist on a 64bit system. So ...