Need a little help

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
Sounak@9434
Posts: 100
Joined: 16 Dec 2016 22:31

Need a little help

#1 Post by Sounak@9434 » 29 Jul 2017 23:53

Can anyone please give me the link to
1) How to use xcopy to get the pressed key
2) How to use echo to move the cursor anywhere on screen - by Aacini

ShadowThief
Expert
Posts: 1160
Joined: 06 Sep 2013 21:28
Location: Virginia, United States

Re: Need a little help

#2 Post by ShadowThief » 30 Jul 2017 00:19

1)

Code: Select all

set "key="
for /f "delims=" %%a in ('xcopy /l /w "%~f0" "%~f0" 2^>nul') do if not defined key set "key=%%a"
set "key=%key:~-1%"


2) viewtopic.php?f=3&t=7898

PaperTronics
Posts: 118
Joined: 02 Apr 2017 06:11

Re: Need a little help

#3 Post by PaperTronics » 30 Jul 2017 02:33

Sounak bro please check your mail. I have messaged you about some things in your article.


PaperTronics

Sounak@9434
Posts: 100
Joined: 16 Dec 2016 22:31

Re: Need a little help

#4 Post by Sounak@9434 » 04 Aug 2017 01:01

PaperTronics wrote:Sounak bro please check your mail. I have messaged you about some things in your article.


PaperTronics

Sorry man, very busy with my busy life and study schedule. Recently started some android works too som I'm even more busy. I shall try to some up my things and try to return to TheBATeam as soon as possible

PaperTronics
Posts: 118
Joined: 02 Apr 2017 06:11

Re: Need a little help

#5 Post by PaperTronics » 04 Aug 2017 03:38

No problem bro.

Post Reply