Search found 10 matches

by chocolade
25 Jul 2013 10:05
Forum: DOS Batch Forum
Topic: How to create systeminfo file through batch file ?
Replies: 3
Views: 4131

How to create systeminfo file through batch file ?

I tried this: @echo=off set today=%date:~7,2%-%date:~4,2%-%date:~-2% start "" /wait systeminfo > "%USERPROFILE%\AppData\Local\Diagnostic_Tool_Blue_Screen\Diagnostic Tool Blue Screen\SF_%today%\systeminfo.txt" pause But in the directory in the end i see the file systeminfo.txt but...
by chocolade
25 Jul 2013 00:47
Forum: DOS Batch Forum
Topic: Im trying to create msinfo32.nfo file but its not working
Replies: 2
Views: 3045

Im trying to create msinfo32.nfo file but its not working

This is what i tried in the first time which worked fine: I created in notepad a bat file containing this line: msinfo32.exe /nfo C:\TEMP\test.nfo After some minutes i saw the file test.nfo in te C:\TEMP This is working good. Now i wanted to do what i did in my older bat file to make that the nfo fi...
by chocolade
24 Jul 2013 05:38
Forum: DOS Batch Forum
Topic: Im trying to create a Bat(Batch) file but not working
Replies: 9
Views: 8668

Re: Im trying to create a Bat(Batch) file but not working

Ok found the problem i think . In the bat file in the new bat file i did: set today=%date:~7,2%-%date:~4,2%-%date:~10,4% %systemroot%\system32\dxdiag.exe /t %USERPROFILE%\AppData\Local\Diagnostic_Tool_Blue_Screen\Diagnostic Tool Blue Screen\SF_24-07-13\dxdiag.txt When i pause i see that the variable...
by chocolade
24 Jul 2013 05:29
Forum: DOS Batch Forum
Topic: Im trying to create a Bat(Batch) file but not working
Replies: 9
Views: 8668

Re: Im trying to create a Bat(Batch) file but not working

The problem is something with the TODAY variable i tried to create . I just created new empty bat file in notepad . Inside i added : echo off set today=%date:~7,2%-%date:~4,2%-%date:~10,4% echo %today% %systemroot%\system32\dxdiag.exe /t %USERPROFILE%\AppData\Local\Diagnostic_Tool_Blue_Screen\Diagno...
by chocolade
24 Jul 2013 03:28
Forum: DOS Batch Forum
Topic: Im trying to create a Bat(Batch) file but not working
Replies: 9
Views: 8668

Re: Im trying to create a Bat(Batch) file but not working

This is what i did now : pushd "%USERPROFILE%\AppData\Local\Diagnostic_Tool_Blue_Screen\Diagnostic Tool Blue Screen\SF_%today%" %systemroot%\system32\dxdiag.exe /t dxdiag.txt popd Once i added the popd in the end and next time i tried to add the popd in a new line: pushd "%USERPROFILE...
by chocolade
24 Jul 2013 02:20
Forum: DOS Batch Forum
Topic: Im trying to create a Bat(Batch) file but not working
Replies: 9
Views: 8668

Re: Im trying to create a Bat(Batch) file but not working

foxidrive i did this changed this lines : "%USERPROFILE%\AppData\Local\Diagnostic_Tool_Blue_Screen\Diagnostic Tool Blue Screen\SF_%today%" %systemroot%\system32\dxdiag.exe /t dxdiag.txt I also tried before to do it like this : pushd "%USERPROFILE%\AppData\Local\Diagnostic_Tool_Blue_Sc...
by chocolade
23 Jul 2013 23:47
Forum: DOS Batch Forum
Topic: Im trying to create a Bat(Batch) file but not working
Replies: 9
Views: 8668

Im trying to create a Bat(Batch) file but not working

This is my script code inside the batch file: :: 13.08.2011 :: Dxdiag Miner 1.1 by Morrolan, made for #Minecrafthelp at EsperNet. :: Feel free to redistribute and/or modify the file at will, but it'd be nice if you were to give the author credit. :: Turn off echoing commands to the console, set colo...