You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
306 B
17 lines
306 B
1 year ago
|
@cd /d "%~dp0"
|
||
|
|
||
|
@goto %PROCESSOR_ARCHITECTURE%
|
||
|
@exit
|
||
|
|
||
|
:AMD64
|
||
|
@cmd /c deviceinstaller64.exe install usbmmidd.inf usbmmidd
|
||
|
@cmd /c deviceinstaller64.exe enableidd 1
|
||
|
@goto end
|
||
|
|
||
|
:x86
|
||
|
@cmd /c deviceinstaller.exe install usbmmidd.inf usbmmidd
|
||
|
@cmd /c deviceinstaller.exe enableidd 1
|
||
|
|
||
|
:end
|
||
|
@pause
|