Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
KovaaK committed Jun 30, 2019
1 parent 7e1c355 commit d160f0c
Show file tree
Hide file tree
Showing 34 changed files with 6,881 additions and 0 deletions.
29 changes: 29 additions & 0 deletions 1. driver/driver_install.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
@echo off

:: BatchGotAdmin
:-------------------------------------
REM --> Check for permissions
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"

REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
echo Requesting administrative privileges...
goto UACPrompt
) else ( goto gotAdmin )

:UACPrompt
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
set params = %*:"=""
echo UAC.ShellExecute "cmd.exe", "/c %~s0 %params%", "", "runas", 1 >> "%temp%\getadmin.vbs"

"%temp%\getadmin.vbs"
del "%temp%\getadmin.vbs"
exit /B

:gotAdmin
pushd "%CD%"
CD /D "%~dp0"
:--------------------------------------

install-interception.exe /install
pause
29 changes: 29 additions & 0 deletions 1. driver/driver_uninstall.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
@echo off

:: BatchGotAdmin
:-------------------------------------
REM --> Check for permissions
>nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"

REM --> If error flag set, we do not have admin.
if '%errorlevel%' NEQ '0' (
echo Requesting administrative privileges...
goto UACPrompt
) else ( goto gotAdmin )

:UACPrompt
echo Set UAC = CreateObject^("Shell.Application"^) > "%temp%\getadmin.vbs"
set params = %*:"=""
echo UAC.ShellExecute "cmd.exe", "/c %~s0 %params%", "", "runas", 1 >> "%temp%\getadmin.vbs"

"%temp%\getadmin.vbs"
del "%temp%\getadmin.vbs"
exit /B

:gotAdmin
pushd "%CD%"
CD /D "%~dp0"
:--------------------------------------

install-interception.exe /uninstall
pause
Binary file added 1. driver/install-interception.exe
Binary file not shown.
Binary file added 2. application (64 bit)/interGUI.exe
Binary file not shown.
Binary file added 2. application (64 bit)/interaccel.exe
Binary file not shown.
Binary file added 2. application (64 bit)/interception.dll
Binary file not shown.
13 changes: 13 additions & 0 deletions 2. application (64 bit)/settings.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Sensitivity = 1
Acceleration = 0
SensitivityCap = 0
Offset = 0
Power = 2
Pre-ScaleX = 1
Pre-ScaleY = 1
Post-ScaleX = 1
Post-ScaleY = 1
AngleAdjustment = 0
AngleSnapping = 0
SpeedCap = 0
FancyOutput = 0
Binary file added 3. application (32 bit)/interGUI.exe
Binary file not shown.
Binary file added 3. application (32 bit)/interaccel.exe
Binary file not shown.
Binary file added 3. application (32 bit)/interception.dll
Binary file not shown.
13 changes: 13 additions & 0 deletions 3. application (32 bit)/settings.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Sensitivity = 1
Acceleration = 0
SensitivityCap = 0
Offset = 0
Power = 2
Pre-ScaleX = 1
Pre-ScaleY = 1
Post-ScaleX = 1
Post-ScaleY = 1
AngleAdjustment = 0
AngleSnapping = 0
SpeedCap = 0
FancyOutput = 0
Loading

0 comments on commit d160f0c

Please sign in to comment.