Search found 560 matches

by miskox
17 May 2024 10:51
Forum: DOS Batch Forum
Topic: dir ????????.txt does not show only files with length of 8 characters
Replies: 4
Views: 143

Re: dir ????????.txt does not show only files with length of 8 characters

Thanks. But it doesn't work for me. This is what I get. But your idea is good - to check length of the filename.

Code: Select all

c:\
12345678.txt
123456789.txt
87654321.txt
test.txt

c:\
by miskox
17 May 2024 04:22
Forum: DOS Batch Forum
Topic: dir ????????.txt does not show only files with length of 8 characters
Replies: 4
Views: 143

dir ????????.txt does not show only files with length of 8 characters

How to list only files with filenames of 8-characters in length? @echo off break>12345678.txt break>87654321.txt break>test.txt break>123456789.txt echo dir ????????.txt dir ????????.txt echo -------------- echo dir "????????.>txt" dir "????????.>txt" echo -------------- Output: dir ????????.txt 17....
by miskox
17 May 2024 03:59
Forum: DOS Batch Forum
Topic: Difficulty running powershell in a for loop due to unquoting and closing of parenthesis
Replies: 3
Views: 251

Re: Difficulty running powershell in a for loop due to unquoting and closing of parenthesis

Wouldn't it be easier for you to use a temporary file and process this temporary file with FOR loop?

Saso
by miskox
16 May 2024 09:58
Forum: DOS Batch Forum
Topic: netsh Interface name store as variable
Replies: 8
Views: 12067

Re: netsh Interface name store as variable

Try this: @echo off set "AdapterName=Wi-Fi" :: set currently connected ethernet as variable FOR /f "tokens=3*" %%a IN ('netsh interface show interface ^| findstr /v "VMware" ^| sort /r /+48 ^| findstr "Connected" ^| findstr "Ethernet"') DO (SET "AdapterName=%%b") :: disconnect LAN if connected IF "%...
by miskox
15 May 2024 11:38
Forum: DOS Batch Forum
Topic: netsh Interface name store as variable
Replies: 8
Views: 12067

Re: netsh Interface name store as variable

As Squashman wrote you don't have a match so variable AdapterName remains undefined. Looks like it does not work if variable AdapterName is not defined at all. Looks like IF fails if variable is not defined. Add set AdapterName=doesnotexist to the beginning of the code. set AdapterName=doesnotexist ...
by miskox
02 May 2024 02:07
Forum: DOS Batch Forum
Topic: time sync errorlevel check
Replies: 5
Views: 3439

Re: time sync errorlevel check

Try this:

Code: Select all

@echo off
:loop
echo Attempting Time Sync...
w32tm /resync | find /i "The command completed successfully." >nul || (echo Sync Not Working, Retrying...&goto loop)
echo Success!!!!!
pause
exit
You should treat the 'echo' and 'goto' as one command. You need parentheses ().

Saso
by miskox
25 Apr 2024 03:08
Forum: DOS Batch Forum
Topic: Need help copying a line of text from a file to another (without mangling it) :AppendFileLineToFile
Replies: 8
Views: 2493

Re: Need help copying a line of text from a file to another (without mangling it) :AppendFileLineToFile

Very good. Tried and works. But there is a typo:

Code: Select all

:AppendFileLineToFile-args
Missing 'S' at the end:

Code: Select all

if "[%~4]" NEQ "[]" ( shift & GoTo :AppendFileLineToFile-arg )
Saso
by miskox
06 Mar 2024 10:18
Forum: DOS Batch Forum
Topic: How to debug this bat file
Replies: 6
Views: 3083

Re: How to debug this bat file

So, did you try it? Does it work? Start here: https://ss64.com/nt/syntax-esc.html Escape Character ^ Escape character. Adding the escape character before a command symbol allows it to be treated as ordinary text. These characters which normally have a special meaning can be escaped and then treated ...
by miskox
05 Mar 2024 12:08
Forum: DOS Batch Forum
Topic: Macro for Dummies
Replies: 16
Views: 11229

Re: Macro for Dummies

Thank you all for all the info! I really appreciate it. I will go thru these posts in the following hours/days and post back.

Saso

(as mentioned I've been offline for some time)
by miskox
05 Mar 2024 10:48
Forum: DOS Batch Forum
Topic: How to debug this bat file
Replies: 6
Views: 3083

Re: How to debug this bat file

Been offline for a while.

Maybe you should remove this line

Code: Select all

Rem (if command errors) || (exec this command)
or add ^ infront of the problematic characters (, ), |.

Maybe there are more.

Try this and let us know.

Saso
by miskox
10 Feb 2024 14:13
Forum: DOS Batch Forum
Topic: Macro for Dummies
Replies: 16
Views: 11229

Re: Macro for Dummies

Thanks a lot T3rry. But I think you should go back some more steps and start with the basics. I tried to understand this batch/macro you posted - too complicated. No luck. We would need something like 'hello world' and then go from there. Something like this: @echo off set helloworld=echo Hello Worl...
by miskox
19 Jan 2024 06:25
Forum: DOS Batch Forum
Topic: How to copy a txt file into multiple txt files in a destination folder
Replies: 3
Views: 4529

Re: How to copy a txt file into multiple txt files in a destination folder

Code: Select all

copy file.txt folder\file1.txt
copy file.txt folder\file2.txt
copy file.txt folder\file3.txt
copy file.txt folder\file4.txt
I wanted to use FOR but you take a look: viewtopic.php?p=38525#p38525

Saso
by miskox
11 Jan 2024 10:18
Forum: DOS Batch Forum
Topic: Faster batch macros
Replies: 17
Views: 12006

Re: Faster batch macros

I didn't understand a thing Jeb wrote.

I tried to learn how to make/use macros. No luck. A 'macro for dummies' should be posted by someone who can do it.

Saso
by miskox
06 Jan 2024 13:26
Forum: DOS Batch Forum
Topic: to dir or not to dir
Replies: 1
Views: 4447

Re: to dir or not to dir

2B OR NOT 2B=FF

Saso
by miskox
21 Dec 2023 11:17
Forum: DOS Batch Forum
Topic: Why for loop wmic get processid return an extra invalid value?
Replies: 3
Views: 5197

Re: Why for loop wmic get processid return an extra invalid value?

Looks like wmic returns an extra empty line and this is what you get.

Saso