Search found 10 matches
- 25 Jul 2013 11:54
- Forum: DOS Batch Forum
- Topic: How to create systeminfo file through batch file ?
- Replies: 3
- Views: 4131
Re: How to create systeminfo file through batch file ?
Thanks its working.
- 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...
- 25 Jul 2013 03:18
- Forum: DOS Batch Forum
- Topic: Im trying to create msinfo32.nfo file but its not working
- Replies: 2
- Views: 3045
Re: Im trying to create msinfo32.nfo file but its not workin
Thanks working.
- 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...
- 24 Jul 2013 06:27
- 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
Working .
Thank you all.
Thank you all.
- 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...
- 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...
- 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...
- 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...
- 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...