forked from ao-org/argentum-online-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregcom.bat
26 lines (18 loc) · 742 Bytes
/
regcom.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
@echo off
setlocal enabledelayedexpansion
REM Set mypath to the directory of the batch script
set "mypath=%~dp0"
echo mypath: !mypath!
echo sysPath: %SystemRoot%
copy "!mypath!MSWINSCK.OCX" %SystemRoot%\SysWOW64
REGSVR32 /s %SystemRoot%\SysWOW64\MSWINSCK.OCX
copy "!mypath!comctl32.ocx" %SystemRoot%\SysWOW64
REGSVR32 /s %SystemRoot%\SysWOW64\comctl32.ocx
copy "!mypath!MCI32.OCX" %SystemRoot%\SysWOW64
REGSVR32 /s %SystemRoot%\SysWOW64\MCI32.OCX
copy "!mypath!MSCOMCTL.OCX" %SystemRoot%\SysWOW64
REGSVR32 /s %SystemRoot%\SysWOW64\MSCOMCTL.OCX
copy "!mypath!MSINET.OCX" %SystemRoot%\SysWOW64
REGSVR32 /s %SystemRoot%\SysWOW64\MSINET.OCX
copy "!mypath!RICHTX32.OCX" %SystemRoot%\SysWOW64
REGSVR32 /s %SystemRoot%\SysWOW64\RICHTX32.OCX