forked from nefarius/BthPS3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.cmd
31 lines (21 loc) · 870 Bytes
/
install.cmd
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
@echo off
@setlocal
set MYDIR=%~dp0
pushd "%MYDIR%"
type NUL > install.log
rem Install NULL device driver
BthPS3Util.exe --install-driver --inf-path ".\BthPS3_PDO_NULL_Device.inf" --force >> install.log 2>&1
rem Enable profile service (L2CAP server)
BthPS3Util.exe --enable-service >> install.log 2>&1
rem Create "BthPS3PSM" driver service
BthPS3Util.exe --create-filter-service --bin-path ".\BthPS3PSM.sys" >> install.log 2>&1
rem Enable lower filter for BTHUSB
BthPS3Util.exe --enable-filter >> install.log 2>&1
rem Restart host device (causes BthPS3PSM to load)
BthPS3Util.exe --restart-host-device >> install.log 2>&1
rem Install profile/bus driver
BthPS3Util.exe --install-driver --inf-path ".\BthPS3.inf" --force >> install.log 2>&1
rem Instruct filter to enable patch
BthPS3Util.exe --enable-psm-patch --device-index 0 >> install.log 2>&1
popd
endlocal