Tagged Questions
0
votes
1answer
166 views
Why is my batch file doing nothing for 46 seconds before a forced quitting?
I have figured out what part of the code is doing this but dont know how to fix it...
Here's the code:
Set _Path=Private
For /F "Delims=" %%I In ('Attrib "%_Path%"') Do Set _Attribs=%%I
If ...
0
votes
0answers
93 views
Is is possible to call /min name.bat?
I know it is possible to start /min name.bat, bt is it possible to call /min name.bat?
0
votes
4answers
2k views
Trying to hide a folder and unhide it in the same batch file with the attrib command
I am trying to hide a folder with a batch file, using the attrib command and I also want to unhide the file with the same batch file. can i do this as a single batch file? or do i have to call another ...
1
vote
2answers
1k views
Why doesn't “call” work in a Windows 7 batch file?
I have a .bat file which contains
call "c:\my path\myprog.exe"
but the command prompt says that call isn't a command.