Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I need a batch file that creates a text file and writes in it.
You can use echo, and redirect the output to a text file
rem Saved in D:\Temp\batch.bat
#echo off
echo This is a text> file.txt
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 months ago.
Improve this question
Actually, I need a video tutorial link for it.
I want to transfer files from any device to my server using browser.
Finally, I got the link that works in my case.
https://www.youtube.com/watch?v=fWx_eWWA1lw
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I am trying to automate my life with batch files, and I am wondering if it is possible to plop in the date EX: 11/14/2020 in google forms using send keys .
Set WshShell = WScript.CreateObject("WScript.Shell")
WScript.Sleep(1000)
WshShell.SendKeys Date
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I'm pretty new to .vbs and .bat, but is there a way to start multiple .vbs and .bat files at once with a few lines of script/code? The reason I'm asking this is because I'm trying to make a prank for a sibling/friend, and I want it to launch a .vbs file and .bat file for the prank.
Yes you can just use start:
#echo off
start "" bat1.bat
start "" vbs1.vbs
And so on, this batch script will start them without waiting for each to complete.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I have a drive called "E". How do I check if it is removable from my c program?
Here is the code for achieving what you want:
#include <FileAPI.h>
//
//
if(GetDriveType("E:\\") == DRIVE_REMOVABLE)
{
// Above mentioned drive is a removable drive
}
Refer: https://msdn.microsoft.com/en-us/library/windows/desktop/aa364939(v=vs.85).aspx
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I have 3 files of C language code and their 2 header files. I would like to see the dependency graph of all functions getting called in these 3 files. Is there a tool on Windows to simplify this work?
Have you already tried doxygen in combination with the graphviz package?