<< < 6 7 8 9 10 11 12 13 > >>   ∑:312  Sort:Date

Screen saver or background slide show
Is there anyway I get the file location option that is used in windows XP screen saver or slide show back and install it in Win-Vista, Win-7 or Win-10??? I have over 39,000 pictures in my computer and when I see a good picture that screen saver or background slide show is playing and I don't recogni...
2015-09-29, ∼2794🔥, 0💬

Run Second Command If the First Successful
How to run two commands with a condition that the second one will run only if the first one is successful? You can run two commands with a condition that the second one will run only if the first one is successful with the syntax below: command-1 &amp;&amp; command-2 For example, if you want...
2022-12-03, ∼2793🔥, 0💬

What Is "for" Loop Parameter
What Is "for" Loop Parameter? A "for" loop parameter is a parameter defined in a "for" command to represent each item from a give list. A "for" loop parameter must be defined using the "%%name" format, where "name" can be any identifier string. Same parameter modifiers as batch parameters are also s...
2022-02-04, ∼2784🔥, 0💬

Delete Directory or File in Windows PowerShell
How to delete a directory or file to a new location in Windows PowerShell? Can I use the old "del" command? Yes, you can still use the old "del" command in Windows PowerShell. But "del" is defined as an alias of the "Remove-Item" cmdlet. The "Remove-Item" cmdlet deletes one or more items, like direc...
2016-10-22, ∼2782🔥, 0💬

Windows PowerShell Session with Remote Computers
What is a Windows PowerShell session? A session is an environment where you can run Windows PowerShell commands and scripts. Windows systems supports two types of sessions for Windows PowerShell: 1. Default Sessions - Sessions implicitly created by the local computer, when you start Windows PowerShe...
2016-10-17, ∼2782🔥, 0💬

"for" - Loop on List of Files
What is the "for" batch command for? The "for" command is for running a given command for each item in a list of files, path names, or any values. Below is the "for" command syntax: for %%parameter in (list) do command When the "for" command is executed, the given command will be executed once for e...
2022-04-13, ∼2780🔥, 0💬

File Name and File Path
Where to find introduction information on File Name and File Path? Here is a collection of tutorials compiled by FYIcenter.com team to provide introduction information on File Name and File Path. What Is File Name File Name with or without Drive Letter File Name with Relative Path or Absolute Path F...
2022-08-26, ∼2769🔥, 0💬

Basic Structure of Windows Command
What are basic structure of a Windows command? The structure of a Windows command has 3 parts: name options redirections where: name - The name of a built-in command or a program options - A list of options separated by spaces redirections - A list of I/O redirection operations For example, if you w...
2021-12-28, ∼2760🔥, 0💬

Execution Status and Errors in Windows PowerShell Scripts
How to check execution status and errors in Windows PowerShell scripts? PowerShell provides 2 automatic variables to help you checking execution status and errors: 1. $? variable - The $? variable contains the execution status of the last operation. It contains TRUE if the last operation succeeded a...
2016-10-27, ∼2760🔥, 0💬

Introduction of Windows PowerShell ISE
Where to find tutorials on using Windows PowerShell ISE to write and test scripts? Here is a collection of tutorials compiled by FYIcenter.com team on using Windows PowerShell ISE to write and test scripts. What Is Windows PowerShell ISE Start Windows PowerShell ISE Create a PowerShell Tab in Window...
2016-10-05, ∼2760🔥, 0💬

Run Script with Arguments in Windows PowerShell
How to write a script that take argument from the command line in Windows PowerShell? You can use the automatic variable $Args to take arguments from the command line where the script is launched. The $Args variable contains an array of all argument provided at the command line where this script was...
2016-10-27, ∼2759🔥, 0💬

"if" Command Help Reference
How to get "if" command help reference? You can run the "if /?" command to get "if" command help reference as shown below: C:\fyicenter&gt;if /? Performs conditional processing in batch programs. IF [NOT] ERRORLEVEL number command IF [NOT] string1==string2 command IF [NOT] EXIST filename command...
2021-08-01, ∼2755🔥, 0💬

"goto" - Change the Execution Flow
What is the "goto" batch command for? The "goto" command is for changing the execution flow in a batch file. Below is the "if" command syntax: goto label When the "goto" command is executed, the execution will jump to the line where "label" is defined and continue to execution the line after the "la...
2022-08-26, ∼2747🔥, 0💬

Rename Directory or File in Windows PowerShell
How to rename a directory or file in Windows PowerShell? Can I use the old "ren" command? Yes, you can still use the old "ren" command in Windows PowerShell. But "ren" is defined as an alias of the "Rename-Item" cmdlet. The "Rename-Item" cmdlet changes the name of a specified item, for example a dir...
2016-10-24, ∼2742🔥, 0💬

Copy Directory or File in Windows PowerShell
How to copy a directory or file to a new location in Windows PowerShell? Can I use the old "copy" command? Yes, you can still use the old "copy" command in Windows PowerShell. But "copy" is defined as an alias of the "Copy-Item" cmdlet. The Copy-Item cmdlet copies an item from one location to anothe...
2016-10-24, ∼2738🔥, 0💬

Use Cmdlet Pipeline in Windows PowerShell
How to use cmdlet pipeline in Windows PowerShell? You can use the pipeline operator "|" to combine multiple cmdlets into a sequence of executions. The pipeline operator will send the output from the previous cmdlet to the next cmdlet as the input. Here is the syntax of cmdlet pipeline: cmdlet-1 | cm...
2016-11-05, ∼2734🔥, 0💬

"copy" Command Help Reference
How to get "copy" command help reference? You can run the "copy /?" command to get "copy" command help reference as shown below: C:\fyicenter&gt;copy /? Copies one or more files to another location. COPY [/D] [/V] [/N] [/Y | /-Y] [/Z] [/L] [/A | /B ] source [/A | /B] [+ source [/A | /B] [+ ...]]...
2022-02-04, ∼2721🔥, 0💬

Opening an old Outlook 2010 Data File
How to open an Outlook 2010 Data File that was closed previously? I need to read an old email stored in that data file. Opening an old Outlook Data File (.pst) in Outlook 2010 is very easy: 1. Run Outlook and click "File > Open > Outlook Data Files..." in the menu. The "Open Outlook Data File" dialo...
2017-02-09, ∼2709🔥, 0💬

Redirect STDOUT Stream to the End of File
How to redirect STDOUT stream from the screen to the end of a file? I want to append output from STDOUT stream to an existing file. When using the "&gt;" redirection to an existing file, old content of the file will be replaced. You can keep the old content of the file by using the append redire...
2022-12-03, ∼2704🔥, 0💬

What Are Batch Variables
What What Are Batch Variables? Batch variables are variables that create, store value to and retrieve value from in a batch file. There are 3 ways a batch variable is defined: 1. Defined in the batch file using the "set" command. For example, "set java_home=\fyicenter\java" will define a new variabl...
2022-02-04, ∼2702🔥, 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, ∼2698🔥, 0💬

Redirect STDOUT Stream for Command to File
How to redirect STDOUT stream from the screen to a file? I want the command to send output data to a file. By default, the STDOUT stream for a command is mapped the screen. If the command is writing data to the STDIN stream, you will see it on the screen. But, you can use the "&gt;" redirect ope...
2022-12-03, ∼2696🔥, 0💬

Displaying Outlook 2010 Calendar Items in Tabular View
How to display Outlook 2010 calendar items in a tabular view? I want to see my meeting invites like a list of emails. By default, Outlook displays your calend items in a calendar view, which is nice for you to know how many meetings you have to today. But it is hard to sort or filter meetings by org...
2014-04-29, ∼2681🔥, 0💬

Cmdlet Pipeline Patterns in Windows PowerShell
Are there any usage patterns for cmdlet pipelines in Windows PowerShell? Yes, there are some usage patterns for cmdlet pipelines in Windows PowerShell. 1. Use cmdlets of the same noun in a single pipeline - This is to ensure that we are working on the same object type in the entire pipeline. For exa...
2016-11-04, ∼2675🔥, 0💬

<< < 6 7 8 9 10 11 12 13 > >>   ∑:312  Sort:Date