Collections:
Other Resources:
Use NUL to Sink Program Output
How to use the NUL file name to sink program output?
✍: FYIcenter.com
If a program is writing too much out on your screen, you sink all output to the NUL file name.
For example, if you run JMeter program, it will write some output on your screen:
C:\>\fyicenter\jmeter\bin\jmeter > nul ================================================================================ Don't use GUI mode for load testing, only for Test creation and Test debugging ! For load testing, use NON GUI Mode: jmeter -n -t [jmx file] -l [results file] -e -o [Path to output folder] & adapt Java Heap to your test requirements: Modify HEAP="-Xms512m -Xmx512m" in the JMeter batch file ================================================================================ 12:38:58 AM java.util.prefs.WindowsPreferences <init> WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0 x80000002. Windows RegCreateKeyEx(...) returned error code 5.
You can redirect STDOUT to NUL by adding "> nul" to the command:
C:\>\fyicenter\jmeter\bin\jmeter > nul 12:40:58 AM java.util.prefs.WindowsPreferences <init> WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0 x80000002. Windows RegCreateKeyEx(...) returned error code 5.
To remove the error message, you can redirect STDERR to NUL by adding "2> nul" to the command. Now nothing displayed on the screen:
C:\>\fyicenter\jmeter\bin\jmeter > nul 2> nul
⇒ Use CON to Enter Data to File
2021-04-15, 1783🔥, 0💬
Popular Posts:
Can I remove startup application "DSAgnt.exe - Dell Support Agent" to speedup my computer and reduce...
Where to find tutorials on using Windows 8 Security? Here is a collection of tutorials on Windows 8 ...
What is the "CmRcService.exe" process on windows 7? Is the "CmRcService.exe" process a virus? Can I ...
What is WindowsLiveLogin.dll - DLL file - Windows Live Login module? DLL WindowsLiveLogin.dll is ins...
How to remove DLG.exe from the startup application list to gain performance and reduce security risk...