diff --git a/giveio.sys b/giveio.sys
deleted file mode 100755
index 62a0cb66..00000000
Binary files a/giveio.sys and /dev/null differ
diff --git a/install_giveio.bat b/install_giveio.bat
deleted file mode 100755
index 4a02b093..00000000
--- a/install_giveio.bat
+++ /dev/null
@@ -1,34 +0,0 @@
-@set DIRVERNAME=giveio
-@set DIRVERFILE=%DIRVERNAME%.sys
-
-@echo Copying the driver to the windows directory
-@echo target file: %WINDIR%\%DIRVERFILE%
-@copy %DIRVERFILE% %WINDIR%\%DIRVERFILE%
-
-@echo Remove a running service if needed...
-@loaddrv stop %DIRVERNAME% >NUL
-@if errorlevel 2 goto install
-
-@loaddrv remove %DIRVERNAME% >NUL
-@if errorlevel 1 goto install
-
-:install
-@echo Installing Windows NT/2k/XP driver: %DIRVERNAME%
-
-@loaddrv install %DIRVERNAME% %WINDIR%\%DIRVERFILE%
-@if errorlevel 3 goto error
-
-@loaddrv start %DIRVERNAME%
-@if errorlevel 1 goto error
-
-@loaddrv starttype %DIRVERNAME% auto
-@if errorlevel 1 goto error
-
-@echo Success
-@goto exit
-
-:error
-@echo ERROR: Installation of %DIRVERNAME% failed
-
-:exit
-
diff --git a/remove_giveio.bat b/remove_giveio.bat
deleted file mode 100755
index 024427db..00000000
--- a/remove_giveio.bat
+++ /dev/null
@@ -1,14 +0,0 @@
-@set DIRVERNAME=giveio
-
-@loaddrv stop %DIRVERNAME%
-@if errorlevel 2 goto error
-
-@loaddrv remove %DIRVERNAME%
-@if errorlevel 1 goto error
-
-@goto exit
-
-:error
-@echo ERROR: Deinstallation of %DIRVERNAME% failed
-
-:exit
diff --git a/status_giveio.bat b/status_giveio.bat
deleted file mode 100755
index bc821474..00000000
--- a/status_giveio.bat
+++ /dev/null
@@ -1,12 +0,0 @@
-@set DIRVERNAME=giveio
-
-@loaddrv status %DIRVERNAME%
-@if errorlevel 1 goto error
-
-@goto exit
-
-:error
-@echo ERROR: Status querry for %DIRVERNAME% failed
-
-:exit
-