Posts by Usuário • 83 points
5 posts
-
3
votes1
answer52
viewsQ: Set Space for text
Good afternoon, I would like to know if there is a cmd command to set a fixed space for the text so that it does not change the position of the rest of the sentence. In the example below this space…
-
1
votes1
answer53
viewsQ: Insert variable in script
I have the following script working normally @echo off if %time:~0,8% LEQ 11:59:59 goto manha if %time:~0,8% LEQ 17:59:59 goto tarde if %time:~0,8% LEQ 23:59:59 goto noite :manha echo "BOM DIA"…
-
1
votes1
answer94
viewsQ: Script with IF (time) less than
Good afternoon, I am behind a command (cmd/batch) to execute a command with a condition. Ex: Checking the user name SET var=%username% IF "%var%"=="Carlos" (msg Carlos 'usuario confirmado') pause I…
-
-2
votes1
answer771
viewsQ: Changing Command Prompt Source
Is there a command line to change the font that is displayed in a cmd window? Just in this window? By changing properties menu it changes in general.
-
2
votes1
answer50
viewsQ: View Log with TYPE command
I am using the type command to display a point log in the company, but it shows the contents of the entire log, only the last lines. type C:\PASTA\LOG-TESTE.log @echo off pause The | MORE parameter…