How do I get a batch to be docked in a folder for a backup operation on a thumb drive where the drive letter always changes example:
@echo off
mkdir ..\subs
move /y .\*.srt ..\subs
pause
exit
To issue nf-e within my system I need some Internet Explorer parameters properly configured as follows:
• Check SSL options
• Uncheck the TLS options
• Uncheck Verify server certificate revocation *
• Check Check for signatures on...
Hello, I'm trying to make a batch that prints all the files in a folder, but in the print queue "local level document" appears and the status appears "Error - printing"
What could it be? Here's my code:
@echo OFF
net use LPT2: /delete /yes
ne...
I would like to make a batch that does the following count:
Source file:
7895537000011
7895537000028
7895537000035
7895537000042
7895537000059
7895537000066
7895537000011
7895537000011
7895537000028
7895537000028
7895537000028
789...
My question is:
How do I add "drawings" in my .bat code like the ones that appear in the Linux Terminal?
Itriedtoinsertthe"drawing" using the FIGlet Generator tool.
But when I run the file (source code) to open in Windows Command Prompt i...
C:\Windows\system32>wmic /node:"BR1102013" /user:"vedadmin" /password:"i@M}r43/3g%s,L;" product get name
, - Alias not found.
Can someone tell me why I can not use the comma and how to solve it?
A PHP script generates a .bat file and then executes it, the problem is that I do not want my PHP script to wait until .bat finishes running. I just want it to run, create and run the bat and then shut down without waiting for the...
I have a .bat file that does some iterations via cmd across multiple directories.
My problem is this:
I need to be able to get the directory of the .bat file itself to keep coming back to it for other iterations.
An example would be:
:e...