Disabling...
Moderator: DosItHelp
-
- Posts: 21
- Joined: 11 Dec 2010 10:17
Disabling...
How can I disable the mouse and keyboard with a batch file?
Re: Disabling...
No way ...
(... thank god )
(... thank god )
-
- Posts: 21
- Joined: 11 Dec 2010 10:17
Re: Disabling...
ahahahaha....
I had found this:
but do not work.
another question: how can I write the input line in a text file?
I had found this:
Code: Select all
rundll32 mouse, disable
rundll32 keyboard, disable
but do not work.
another question: how can I write the input line in a text file?
Re: Disabling...
walter4991 wrote:I had found this:Code: Select all
rundll32 mouse, disable
rundll32 keyboard, disable
but do not work.
Relics of the last century
walter4991 wrote:another question: how can I write the input line in a text file?
Most common method is echo-redirecting. Basically:
Code: Select all
set /p "var="
>test.txt echo %var%
Regards
aGerman
-
- Posts: 21
- Joined: 11 Dec 2010 10:17
Re: Disabling...
thanks a lot... detailed and precise as ever...