I have a batch file will execute some task and it will open the text file.
Now, i want the cursor to set at end of the File (Opened Text file)
_KSK
Search found 4 matches
- 09 Sep 2022 00:33
- Forum: DOS Batch Forum
- Topic: The command line to open a txt file and point the cursor to End of file (EOF)
- Replies: 3
- Views: 2832
- 06 Sep 2022 09:10
- Forum: DOS Batch Forum
- Topic: call commands using in a single line
- Replies: 3
- Views: 2697
Re: call commands using in a single line
HI,
Single & works well. Thanks for your help.
Single & works well. Thanks for your help.
- 06 Sep 2022 00:35
- Forum: DOS Batch Forum
- Topic: call commands using in a single line
- Replies: 3
- Views: 2697
call commands using in a single line
how to call 2 subroutine in a same command line in an batch file
eg
call :subroutine1 && :subroutine2
eg
call :subroutine1 && :subroutine2
- 04 Sep 2022 19:05
- Forum: DOS Batch Forum
- Topic: How to self elevate the bat file with auto select the UAC prompt with [ok] option.
- Replies: 1
- Views: 2041
How to self elevate the bat file with auto select the UAC prompt with [ok] option.
I have a below batch file as conf.bat Rem Batch file starts ipconfig /release ipconfig /renew ipconfig /flushdns ipconfig /registerdns Rem Batch file ends. Here, the command prompt display with “The requested operation requires elevation” for (ipconfig/registerdns). I want to self elevate bat file a...