home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 May
/
W2KPRK.iso
/
apps
/
smartsketch_le
/
data1.cab
/
program_bin
/
regocx.bat
< prev
next >
Wrap
DOS Batch File
|
1999-11-02
|
858b
|
27 lines
REM Other Application specific registration - should be changed for other apps
REM Bat file for registering OCX/DLL ... for Windows95 or NT
REM the startup dll registration (required for all applications)
if "%OS%"=="Windows_NT" goto WINNT
REM register command dlls
REM regsvr32 /s TBarCmds.dll
REM register ocx's Windows95...
call %windir%\system\regsvr32 /s pvdt50.ocx
call %windir%\system\regsvr32 /s jcontrols.ocx
call %windir%\system\regsvr32 /s I2DCmCtl.ocx
call %windir%\system\regsvr32 /s I2DMsCtl.ocx
REM call %windir%\system\regsvr32 /s I2MnuCtl.ocx
goto done
:WINNT
call %windir%\system32\regsvr32 /s pvdt50.ocx
call %windir%\system32\regsvr32 /s jcontrols.ocx
call %windir%\system32\regsvr32 /s I2DCmCtl.ocx
call %windir%\system32\regsvr32 /s I2DMsCtl.ocx
REM call %windir%\system32\regsvr32 /s I2MnuCtl.ocx
:done