Categories:
Administration (10)
Adware Spyware (7)
Apache (10)
Bluetooth (125)
DOS Commands (1)
Edge (28)
General (2)
Internet Explorer (217)
Media Center (12)
Media Player (11)
Mozilla Firefox (18)
PHP (15)
Programming (8)
Security (4)
Silverlight (15)
Tips (17)
Tools (218)
Tutorials (5)
Windows 10 (166)
Windows 7 (636)
Windows 8 (1091)
Windows Phone (33)
Windows Server 2008 (165)
Windows Server 2012 (84)
Windows Server 2016 (23)
Windows Vista (52)
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, 1411👍, 0💬
Popular Posts:
What is Windows Live Toolbar for Internet Explorer (IE) browser? Windows Live Toolbar offers some ni...
What is wrong if you get an execution error: "The procedure entry point _zval_dtor could not be loca...
Can I disable Windows service "Google Updater Service" to speedup my computer? GoogleUpdaterService....
What is lsass.exe process - LSA Shell (Export Version)? Process lsass.exe is the Local Security Auth...
How to unblock a publisher? 1. Open Internet Explorer. 2. Click the Tools button, and then click Int...