<< < 16 17 18 19 20 21 22 23 24 25 26 > >>   Sort: Rank

Full Scan with Windows Defender
How to perform a full scan with Windows Defender? You can follow this tutorial to perform a full scan of your Windows 8 computer with Windows Defender. 1. Search "Windows Defender" and run it. 2. Click on "Home" tab. 3. Select "Full" and click "Scan now" on the right panel. 4. Wait for the scan to f...
2021-05-28, 1636🔥, 0💬

Install Windows 7 Service Pack 1 (SP1)
How to install Windows 7 Service Pack 1 (SP1)? I have the SP1 file downloaded. If you have the Windows 7 SP1 file downloaded, you can follow this tutorial to install Windows 7 Service Pack 1 (SP1). 1. Run the downloaded file, windows6.1-KB976932-X86.exe or windows6.1-KB976932-X64.exe. You see the in...
2021-05-23, 42849🔥, 7💬

💬 2021-05-07 saurabh: great service

💬 2020-12-27 pradeep: hi

💬 2020-12-13 AZIZBEK: Thank you for the info!!!!

(More comments ...)

Run Two Commands Sequentially
How to run two commands sequentially in a single command line? You can run two commands sequentially in a single command line with the syntax below: command-1 &amp; command-2 For example, the following command line run the "echo" command twice sequentially: C:\fyicenter&gt;echo Hello &am...
2021-05-15, 3507🔥, 0💬

Combine Output Streams with &gt;&amp;
How to use the duplication redirection to combine one output stream into another output stream? I want to combine STDERR and STDIN together and send them to a file. To combine one output stream into another output stream, you can use the duplication redirection operator as described below: command o...
2021-05-15, 2305🔥, 0💬

Use Handler Numbers with &lt;, &gt;, &gt;&gt;
How to use input and output stream handler numbers with &lt;, &gt;, and &gt;&gt; redirections? When &lt;, &gt;, and &gt;&gt; redirections are used without handler numbers, a default input or output stream is used as described below: &lt; Redirects handler 0 (STDIN...
2021-05-15, 2096🔥, 0💬

Input and Output Stream Handler Numbers
What are input and output stream handler numbers? Input and output stream handler numbers are integers assigned to represent input and output streams. The list below shows you how handler numbers are assigned to different input and output streams: Handler Number Stream 0 STDIN 1 STDOUT 2 STDERR 3 To...
2021-05-15, 1490🔥, 0💬

Pipe STDOUT of Previous Command as STDIN of Next
How to redirect (or pipe) STDOUT stream from the first command as STDIN stream of the next command? If you want to pipe two commands together by redirecting the STDOUT stream of the first command as the STDIN stream of the second command, you can use the pipe redirection operator "|" as shown below:...
2021-05-15, 1394🔥, 0💬

Windows 7 Update - Check for Updates
How to check for updates on Windows 7? You can follow this tutorial to check for updates on Windows 7: 1. Make sure your computer is connected to the Internet. 2. Go to "Control Panel &gt; System and Security &gt; Windows Update". You see the current update status of your Windows system. 3. ...
2021-05-07, 2405🔥, 1💬

TCD*.tmp Temporary Folders
What are TCD*.tmp Temporary Folders on my Windows 7 computer? Can I remove them? TCD*.tmp Temporary Folders are created by Microsoft Office programs. They are located in the \Users\&lt;userid&gt;\ AppData\Local\Tempfolder. TCD*.tmp Temporary Folders contain one of the following files: 1. *.x...
2021-04-30, 35310🔥, 1💬

💬 2019-10-22 dac1949: Very good post. Thanks!

CVR*.tmp.cvr Temporary Files
What are CVR*.tmp.cvr temporary files on my Windows 7 computer? Can I remove them? CVR*.tmp.cvr Temporary Files are created by Microsoft Office programs including Outlook, Word, Excel, PowerPoint, etc. They are located in the \Users\&lt;userid&gt;\ AppData\Local\Tempfolder. Each time when yo...
2021-04-30, 9439🔥, 0💬

Files in %TEMP% and %TMP% Folders
Where to find tutorials on understanding files in %TEMP% and %TMP% Folders on Windows 7? Here is a collection of tutorials on understanding files in %TEMP% and %TMP% Folders on Windows 7: What Are %TEMP% and %TMP% Folders CVR*.tmp.cvr Temporary Files TCD*.tmp Temporary Folders "crl-set" and "manifes...
2021-04-30, 2130🔥, 0💬

What Are %TEMP% and %TMP% Folders
What are %TEMP% and %TMP% Folders on my Windows 7 computer? %TEMP% and %TMP% Folders are folders specified in two environment variables called TEMP and TMP. By default, Windows 7 sets both TEMP and TMP environment variables to the same folder: TEMP=C:\Users\&lt;userid&a mp;gt;\AppData\Local\Temp...
2021-04-30, 1438🔥, 0💬

Jooble Partnership
Hi! My name is Alexander. I represent Jooble in United States - one of the biggest job sites in the world. We have more than 3 million visitors worldwide daily. Our visitors looking for different information on our website. We would be happy to promote your website for our users. This is a non-comme...
2021-04-30, 791🔥, 0💬

Use NUL to Sink Program Output
How to use the NUL file name to sink program output? 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:\&gt;\fyicenter\jmeter\b in\jmeter&gt; nul =================...
2021-04-15, 1636🔥, 0💬

Special File Names Used by Windows
What are special file names used by Windows? Windows used a number of special file names referring to special resources in the system: CON - Referring to the console: keyboard and screen. Reading from CON is reading from the keyboard. Writing to CON is writing to the screen. PRN - Referring to the p...
2021-04-15, 1525🔥, 0💬

File Name with or without File Extension
Should I provide file name with or without File Extension? To provide file name with or without file extension is really depending on the program that you are providing the file to. Here are some examples on different programs behaving differently on file names with and without file extension. 1. Wi...
2021-04-15, 1514🔥, 0💬

Wildcard Character In File Names
What are wildcard characters in file names? wildcard characters in file names are special characters that Windows will them as match patterns to search for files. If any matches found, the given file name will be replaced with matched file names. Many Windows commands support two wildcard characters...
2021-04-15, 1461🔥, 0💬

Use CON to Enter Data to File
How to use CON file name to enter data to a file quickly? I don't want to use any editors. Since CON is a special file name referring to the console including keyboard, you can use it with the "copy" command to enter data to a file. For example, if you want to create small batch file called "random....
2021-04-02, 2284🔥, 0💬

"call command" vs. "command"
What is the difference between "call command" and "command" in a batch file? There are two formats to run another batch file (or any command) in a batch file: 1. "command" - Run the batch file (or any command) directly. The given command will be invoked in the current batch execution context. 2. "ca...
2021-04-02, 1841🔥, 0💬

Use CON to Display Data on Screen
How to use CON file name to display data on the screen? Since CON is a special file name referring to the console including screen, you can use it display data on the screen. You can use the "copy * con" to act like the "type *" command: C:\fyicenter&gt;copy random.bat con @echo %random% 1 file(...
2021-04-02, 1741🔥, 0💬

"call" - Run Another Batch File
What is the "call" batch command for? The "call" command is for running another batch file, command or program. Below is the "call" command syntax: call command parameters When the "call" command is executed, a child batch execution context will be created to run the given command with given paramet...
2021-04-02, 1706🔥, 0💬

"if" - Run Command Conditionally
What is the "if" batch command for? The "if" command is for running a command conditionally. Below is the "if" command syntax: if condition command1 [else command2] When the "if" command is executed, the specified condition will be evaluated first. If the condition is true, "command1" will be execut...
2021-04-02, 1550🔥, 0💬

Using Batch Commands
Where to find introduction information on Using Commands Designed for Batch Files? Here is a collection of tutorials compiled by FYIcenter.com team to provide introduction information on Using Commands Designed for Batch Files. List Batch Commands "call" - Run Another Batch File "call command" vs. "...
2021-03-21, 2032🔥, 0💬

List Batch Commands
What are build-in commands designed to be used in batch files? Here is a list of built-in commands designed to be used in batch files: Call - Calls and runs another batch file or program. When the other batch file or program ends, continue to run this this batch file. Echo - Displays messages, or tu...
2021-03-21, 1590🔥, 0💬

<< < 16 17 18 19 20 21 22 23 24 25 26 > >>   Sort: Rank