forked from GearheadRed/COMRedirSVC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInstall.txt
More file actions
39 lines (23 loc) · 1.4 KB
/
Install.txt
File metadata and controls
39 lines (23 loc) · 1.4 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
COMRedirSVC installation instructions.
=============================
To install the service follow the instructions specific to the bit version of Windows you are currently running.
x86:
--------------------------------------------------------------------
Copy the COMRedirSVC.exe to C:\Windows\System32\
Run the command below (note you may need to use an elevated privilege command prompt)
sc create COMRedirSVC binPath= "C:\Windows\System32\COMRedirSVC.exe" start= auto
Command result should be: [SC] CreateService SUCCESS
x64:
----------------------------------------------------------------------
Copy the COMRedirSVC.exe to C:\Windows\SysWow64\
Run the command below (note you may need to use an elevated privilege command prompt)
sc create COMRedirSVC binPath= "C:\Windows\SysWOW64\COMRedirSVC.exe" start= auto
Command result should be: [SC] CreateService SUCCESS
============================================
To remove the service follow the instructions below:
Stop the service using either the SC command below or from the Services MMC
sc stop COMRedirSVC
Run the command below (note you may need to use an elevated privilege command prompt)
sc delete COMRedirSVC
Command result should be: [SC] DeleteService SUCCESS
Delete the COMRedirSVC.exe from the directory it was copied into (depending on bitness of Windows see installation instructions above for specific paths).