Bodenstrich

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
Dion-Apak
Posts: 1
Joined: 21 Sep 2018 20:07

Bodenstrich

#1 Post by Dion-Apak » 21 Sep 2018 20:13

Hallo,

Ich habe eine Batch datei und wenn ich diese öffne, läuft die ja bei mir im Windows 10 ( cmd ) Terminal.

Normalerweise wird ja nach dem befehl
pause
Drücken Sie iergend eine Taste... angezeigt
Mit diesem Bidenstrich der blinkt _

Auch bei einem set /p befehl
Wird bei der eingabe, zuerst so ein Bodenstrich angezeigt _ wo man dann sein Name oder was auch immer eingeben kann

Ich möchte aber das es kein Bodenstrich zeigt und blinkt!!
Es soll nicht verraten wie lange der localhost ange pingt wird oder ein cls eingebaut wurde, das nervt mich!!

Es gab mal ein VBScript das in der batch mit einem call befehl aufgerufen werden kann und diesen fehler behebt aber finde ihn nicht mehr ://

Bitte um eure Hilfe und googelt nicht zu doll!!

aGerman
Expert
Posts: 4654
Joined: 22 Jan 2010 18:01
Location: Germany

Re: Bodenstrich

#2 Post by aGerman » 22 Sep 2018 03:06

The common language in this forum is English. Most of the people here come from all over the world and don't even understand your question.

The blinking underscore you want to remove is the cursor. You can't do that using Batch but you can use tools that are able to do that for you. E.g. CursorSize.exe.
viewtopic.php?f=3&t=3428
Pass 0 for the size and you're done.

Steffen

carlos
Expert
Posts: 503
Joined: 20 Aug 2010 13:57
Location: Chile
Contact:

Re: Bodenstrich

#3 Post by carlos » 23 Sep 2018 16:22

Hello. You can also use the command:

Code: Select all

Bg cursor 0
from my bg utlity: bg39.zip available here: https://github.com/carlos-montiers/cons ... r/releases

Post Reply