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

"tree" Command Help Reference
How to get "tree" command help reference? You can run the "tree /?" command to get "tree" command help reference as shown below: C:\fyicenter&gt;tree /? Graphically displays the folder structure of a drive or path. TREE [drive:][path] [/F] [/A] /F Display the names of the files in each folder. /...
2017-12-04, 1948🔥, 0💬

What Is Windows PowerShell Background Job
What are Windows PowerShell background jobs? A Windows PowerShell background job is an execution of a Windows PowerShell command detached from the console running in the background. Windows PowerShell offers the following cmdlets to help you managing background jobs: Start-Job - Starts a background ...
2016-10-13, 1939🔥, 0💬

Introduction of Windows PowerShell
Where to find introduction information of Windows PowerShell? I want to have a basic understanding of Windows PowerShell. Here is a collection of tutorials compiled by FYIcenter.com team to provide introduction information about Windows PowerShell. What Is Windows PowerShell Main Features of Windows...
2016-11-11, 1931🔥, 0💬

"del" Command Help Reference
How to get "del" command help reference? You can run the "del /?" command to get "del" command help reference as shown below: C:\fyicenter&gt;del /? Deletes one or more files. DEL [/P] [/F] [/S] [/Q] [/A[[:]attributes]] names ERASE [/P] [/F] [/S] [/Q] [/A[[:]attributes]] names names Specifies a ...
2022-02-04, 1928🔥, 0💬

"@" - Stop Echoing the Command
How to stop echoing the command when running in a batch file? By default, when a command is executed in a batch file, the command will be echoed on the screen before the execution. You can stop this default behavior by starting the line with @ as shown in this batch file, quiet.bat: rem Public comme...
2021-07-10, 1918🔥, 0💬

"set" Command Help Reference
How to get "set" command help reference? You can run the "set /?" command to get "set" command help reference as shown below: C:\fyicenter&gt;set /? Displays, sets, or removes cmd.exe environment variables. SET [variable=[string]] variable Specifies the environment-variable name. string Specifie...
2017-12-09, 1917🔥, 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, 1916🔥, 0💬

Variable Expansion in Strings in Windows PowerShell
What is variable expansion in strings in Windows PowerShell? Variable expansion in strings is a short-hand of string concatenation operations using the following syntax rule: When a variable is included in a double-quoted string literal like "... $variable ...", it will be replaced with the string r...
2016-10-20, 1915🔥, 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, 1911🔥, 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, 1908🔥, 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, 1903🔥, 0💬

"Get-Member" Cmdlet in Windows PowerShell
What is the "Get-Member" cmdlet in Windows PowerShell? "Get-Member" cmdlet in Windows PowerShell allows you to inspect the output object by displaying its class members, including properties and methods. For example: the following command uses "get-member" to display methods and properties supported...
2016-11-03, 1899🔥, 0💬

"timeout" Command Help Reference
How to get "timeout" command help reference? You can run the "timeout /?" command to get "timeout" command help reference as shown below: C:\fyicenter&gt;timeout /? TIMEOUT [/T] timeout [/NOBREAK] Description: This utility accepts a timeout parameter to wait for the specified time period (in sec...
2017-12-09, 1890🔥, 0💬

Windows Command Syntax
Where to find introduction information on Windows Command Syntax? Here is a collection of tutorials compiled by FYIcenter.com team to provide introduction information on Windows Command Syntax. Basic Structure of Windows Command Manage Space in Command Name Manage Space in Command Option Default STD...
2021-12-28, 1880🔥, 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, 1879🔥, 0💬

String Concatenation in Windows PowerShell
How to concatenate strings in Windows PowerShell? I want to join two strings together. The easiest way to join two strings together is to use the concatenate operator (+) as shown in the example below: PS C:\fyicenter&gt; $name = "John" PS C:\fyicenter&gt; # using string concatenation operat...
2016-10-20, 1873🔥, 0💬

Introduction of Windows PowerShell Cmdlet
Where to find introduction information of Cmdlet used in Windows PowerShell? Here is a collection of tutorials compiled by FYIcenter.com team to provide introduction information about Windows PowerShell Cmdlet. What Is Windows PowerShell Cmdlet List of Cmdlets in Windows PowerShell "Get-Command -Com...
2016-11-08, 1872🔥, 0💬

"Stop-Job" Cmdlet in Windows PowerShell
How to use "Stop-Job" cmdlet in Windows PowerShell? You can use the "Stop-Job" cmdlet to stop (terminate) the execution of an existing background job by using the "-id n" or "-name xxx" to specify the background job. The output result of the stopped background job will stay in memory. Here is an exa...
2016-10-08, 1872🔥, 0💬

Cmdlet Output Object List in Windows PowerShell
What is the output object list of a cmdlet in Windows PowerShell? Many cmdlets do return a list of objects, not just a single object. If there is no more cmdlet in the cmdlet pipeline, the output object list will converted to a text table with properties of each object displayed as fields in a row. ...
2016-11-04, 1859🔥, 0💬

Find Folder Location with DIR
How to find a folder location with DIR command? You can use the "DIR dir_name /AD /S" command to locate a folder by the folder name. "dir_name" - Specifies the folder name you are looking for. "?" and "*" wildcard characters are supported. "/AD" option - Tells Windows to display entries with the "D ...
2018-01-31, 1858🔥, 0💬

"echo" Command Help Reference
How to get "echo" command help reference? You can run the "echo /?" command to get "echo" command help reference as shown below: C:\fyicenter&gt;echo /? Displays messages, or turns command-echoing on or off. ECHO [ON | OFF] ECHO [message] Type ECHO without parameters to display the current echo ...
2022-02-04, 1857🔥, 0💬

Get and Change Directory in Windows PowerShell
How to get and change the current directory of the file system in Windows PowerShell? You can use the following cmdlets to get or change the current directory in a file system: "Get-Location" cmdlet (or "pwd" alias) returns an object that represents the current directory, much like the pwd (print wo...
2016-10-27, 1850🔥, 0💬

Help Topics on Windows PowerShell
How to get help information on conceptual topics in Windows PowerShell? I want to understand the concept of environment variables. The Get-Help cmdlet also displays information about conceptual topics in Windows PowerShell, including topics about the Windows PowerShell language. Conceptual Help topi...
2016-11-08, 1848🔥, 0💬

File Name with or without Drive Letter
Should I provide file name with or without drive letter? When provide a file name, you have choice of providing or not providing the drive letter: 1. If you provide a file name with the drive letter, the system will go to the given disk drive to locate the file. Providing the drive letter is a good ...
2022-08-26, 1846🔥, 0💬

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