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

Object Type Match in Pipeline in Windows PowerShell
What will happen if the output object type does not match the input object type in a cmdlet pipeline in Windows PowerShell? When you build a cmdlet pipeline, you have to make sure that object types are compatible in the pipeline operation. In other words, the output object type from the previous cmd...
2016-11-04, ∼2487🔥, 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, ∼2465🔥, 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, ∼2463🔥, 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, ∼2458🔥, 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, ∼2456🔥, 0💬

Expression Expansion in Strings in Windows PowerShell
What is expression expansion in strings in Windows PowerShell? Expression expansion in strings is a short-hand of string concatenation operations using the following syntax rule: When an expression enclosed in parentheses following a $ sign is included in a double-quoted string literal like "... $(e...
2016-10-19, ∼2452🔥, 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, ∼2438🔥, 0💬

Batch Command Help Reference Documents
Where to find introduction information on Batch Command Help Reference Documents? Here is a collection of tutorials compiled by FYIcenter.com team to provide introduction information on Batch Command Help Reference Documents. "call" Command Help Reference "copy" Command Help Reference "del" Command ...
2021-10-10, ∼2433🔥, 0💬

Introduction of Windows PowerShell Script
Where to find introduction information of Windows PowerShell script? Here is a collection of tutorials compiled by FYIcenter.com team to provide introduction information about Windows PowerShell script. Write Script File in Windows PowerShell Running Scripts Disabled in Windows PowerShell Add Commen...
2016-11-03, ∼2428🔥, 0💬

Identifying Version Information on Outlook 2010
How to identify version information Outlook 2010? To see details of the version information of Outlook 2010, follow these steps: 1. Start Outlook. 2. Click "File" in the menu and select "Help". You will see something like: Microsoft Office Professional Plus 2010 This product contains Microsoft Acces...
2014-04-25, ∼2426🔥, 0💬

Adding Password to an Outlook 2010 Data File
How to add a password to an Outlook 2010 Data File to protect my emails? Adding a password to an Outlook Data File (.pst) can be done in 5 steps: 1. Right-mouse click the data file, for example: "Invoices". 2. Select the "Data File Properties..." in the context menu. The data file properties are dis...
2014-04-28, ∼2416🔥, 0💬

String Variable Match and Replace
How to perform sub-string match and replacement in a string batch variable? You can perform a sub-string match and replacement in a string batch variable using the following variable modifier: %variable:pattern=str% Wildcard character "*" can be used in "pattern" to match any number of any character...
2021-10-10, ∼2403🔥, 0💬

Get Sub-String from Variable
How to get a sub-string from a string batch variable? You can get a sub-string from a string batch variable using the following variable modifier: %variable~i,l% In the above expression, "i" is the offset position of the sub-string to be extracted, and "l" is the length of the sub-string to be extra...
2021-10-10, ∼2390🔥, 0💬

Comparison Operations in Windows PowerShell Scripts
How to use comparison operations in Windows PowerShell scripts? Can I write "$a &gt; 0"? No, you can not use "$a&gt;0" as a comparison operation in Windows PowerShell scripts. You must use PowerShell comparisonoperators given below: -eq Equal -ne Not equal -ge Greater than or equal -gt Great...
2016-10-30, ∼2387🔥, 0💬

Moving Emails from Inbox an Outlook 2010 Data File
How can I move emails from the Inbox to an Outlook Data File in Outlook 2010? My Inbox is full. Moving emails from the Inbox to an Outlook Data File (.pst) in Outlook 2010 can be done in 4 steps: 1. Run Outlook and open the Outlook Data File. 2. Create a new folder in the data file through the conte...
2014-04-27, ∼2366🔥, 0💬

What Is an Outlook Data File (.pst)
What is an Outlook Data File? Why does it have an extension of .pst? An Outlook Data File, also called Personal Folders File, is a data file that can be used to store email messages, contact entries, appointments, tasks, notes, and journal entries from Microsoft Exchange Client, Windows Messaging, a...
2014-04-25, ∼2358🔥, 0💬

Run Second Command If the First Fails
How to run two commands with a condition that the second one will run only if the first one fails? You can run two commands with a condition that the second one will run only if the first one fails with the syntax below: command-1 || command-2 For example, if you want to write a message to the scree...
2022-08-26, ∼2354🔥, 0💬

Managing Windows PowerShell Background Jobs
Where to find tutorials on managing Windows PowerShell background jobs? Here is a collection of tutorials compiled by FYIcenter.com team on managing Windows PowerShell background jobs. What Is Windows PowerShell Background Job "Start-Job" Cmdlet in Windows PowerShell "Get-Job" Cmdlet in Windows Powe...
2016-10-13, ∼2328🔥, 0💬

Creating an Outlook Data File (.pst) in Outlook 2010
How can I create a Personal Folders File (.pst) to store messages, contacts and other types of Outlook data items in Microsoft Office Outlook 2007? Creating a Personal Folders File (.pst) Outlook 2010 can be done in 3 steps: 1. Run Outlook and click "Home > New Items > More Items > Outlook Data File...
2014-04-25, ∼2289🔥, 0💬

Reducing Outlook 2010 Data File Size with Compact Tool
How to reduce the size of Outlook 2010 Data File with the compact tool? I think my Outlook data file has empty spaces in it. You can reduce the file size of an Outlook Data File (.pst) with the compact tool if there are empty spaces in the data file. Empty spaces are resulted from deleted emails or ...
2014-04-28, ∼2260🔥, 0💬

Closing and Disconnecting an Outlook 2010 Data File
How to close and disconnect an Outlook 2010 Data File from Outlook 2010? The data file contains old emails no longer needed for now. Closing and disconnecting an Outlook Data File (.pst) from Outlook 2010 is very easy: 1. Right-mouse click the data file, for example: "Invoices". 2. Select the "Close...
2014-04-29, ∼2126🔥, 0💬

Finding the File Fize of an Outlook 2010 Data File
How to find out the size of Outlook 2010 Data File? I think it is getting too big. Find the file size of an Outlook Data File (.pst) on the hard disk is easy: 1. Right-mouse click the data file, for example: "Invoices". 2. Select the "Data File Properties..." in the context menu. The data file prope...
2014-04-28, ∼2100🔥, 0💬

Finding the Disk Location of an Outlook 2010 Data File
How to find out the location of my Outlook 2010 Data File in the hard disk? I created it long time ago and forget where I stored it. Find the localtion of an Outlook Data File (.pst) on the hard disk is easy: 1. Right-mouse click the data file, for example: "Invoices". 2. Select the "Open File Locat...
2014-04-27, ∼2071🔥, 0💬

Creating an Email Folder in an Outlook 2010 Data File
How can I create an email folder in an Outlook Data File (.pst) to store email messages in Microsoft Office Outlook 2010? Creating an email folder in an Outlook Data File (.pst) in Outlook 2010 can be done in 4 steps: 1. Run Outlook and open the Outlook Data File. A new entry shows up in the navigat...
2014-04-27, ∼2062🔥, 0💬

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