<< < 73 74 75 76 77 78 79 80 81 82 83 > >>   ∑:4830  Sort:Rank

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, ∼3046🔥, 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, ∼3037🔥, 0💬

Windows PowerShell Tutorials
Where to find tutorials on using Windows PowerShell? I want to learn everything about Windows PowerShell. Here is a collection of tutorials about Windows PowerShell compiled by FYIcenter.com team. Introduction of Windows PowerShell What Is Windows PowerShell Main Features of Windows PowerShell Diffe...
2016-10-26, ≈100🔥, 0💬

Background Tasks Infrastructure Service (BrokerInfrastructure) on Windows Server 2012
What is the "Background Tasks Infrastructure Service (BrokerInfrastructure)" system service on Windows Server 2012? Can I disable "Background Tasks Infrastructure Service"? "Background Tasks Infrastructure Service (BrokerInfrastructure)" is a Windows Server 2012 service that controls which backgroun...
2016-10-26, ≈17🔥, 0💬

Certificate Propagation (CertPropSvc) Service on Windows Server 2012
What is the "Certificate Propagation (CertPropSvc)" system service on Windows Server 2012? Can I disable "Certificate Propagation"? "Certificate Propagation (CertPropSvc)" is a Windows Server 2012 service that copies user certificates and root certificates from smart cards into the current user's ce...
2016-10-26, ∼9964🔥, 0💬

Base Filtering Engine (BFE) Service on Windows Server 2012
What is the "Base Filtering Engine (BFE)" system service on Windows Server 2012? Can I disable "Base Filtering Engine"? "Base Filtering Engine (BFE)" is a Windows Server 2012 service that manages firewall and Internet Protocol security (IPsec) policies and implements user mode filtering. Stopping or...
2016-10-26, ∼9343🔥, 0💬

Background Intelligent Transfer Service (BITS) Service on Windows Server 2012
What is the "Background Intelligent Transfer Service (BITS)" system service on Windows Server 2012? Can I disable "Background Intelligent Transfer Service"? "Background Intelligent Transfer Service (BITS)" is a Windows Server 2012 service that transfers files in the background using idle network ban...
2016-10-26, ∼6620🔥, 0💬

Create Directory in Windows PowerShell
How to create a directory in Windows PowerShell? Can I use the old "mkdir" command? Yes, you can still use the old "mkdir" command in Windows PowerShell. But "mkdir" is defined as an alias of the "New-Item" cmdlet. The "New-Item" cmdlet creates a new directory or file. The "New-Item" cmdlet requires...
2016-10-24, ≈13🔥, 0💬

Move Directory or File in Windows PowerShell
How to move a directory or file to a new location in Windows PowerShell? Can I use the old "move" command? Yes, you can still use the old "move" command in Windows PowerShell. But "move" is defined as an alias of the "Move-Item" cmdlet. The "Move-Item" cmdlet moves an item, including its properties,...
2016-10-24, ∼4029🔥, 0💬

Get Directory Entries in Windows PowerShell
How to get a list of files in a directory in Windows PowerShell? Can I use the old "dir" command? Yes, you can still use the old "dir" command in Windows PowerShell. But "dir" is defined as an alias of the "Get-ChildItem" cmdlet. The "Get-ChildItem" cmdlet gets the items in the current directory by ...
2016-10-24, ∼3917🔥, 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, ∼3063🔥, 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, ∼3040🔥, 0💬

Creating PowerPoint Show Files
How to create a PowerPoint show file? I want to create a show file from a PowerPoint 2007 presentation file, so that I can give the show file to my friends to view it in show mode. Can I do this with PowerPoint 2007? Yes, you can easily create a show file from a presentation file with PowerPoint 200...
2016-10-23, ∼5535🔥, 0💬

Get File Properties in Windows PowerShell
How to get file properties in Windows PowerShell? I want to know when the file was originally created. If you want to get all properties of a file in Windows PowerShell, you can use the "Get-Item ... | Select-Object -Property *" pipeline. Here is good example of getting file properties in Windows Po...
2016-10-22, ≈27🔥, 0💬

Get File Content in Windows PowerShell
How to get the content of a file in Windows PowerShell? You can use the "Get-Content" cmdlet to get the content of a file in Windows PowerShell. "Get-Content" cmdlet gets the content of the item at the location specified by the path, such as the text in a file. It reads the content one line at a tim...
2016-10-22, ∼4525🔥, 0💬

Get Directory Properties in Windows PowerShell
How to get directory properties in Windows PowerShell? I want to know how many files are there in a directory. If you want to get measurement properties of a directory in Windows PowerShell like total file size, you can use the "Get-ChildItem ... -Recurse | Measure-Object -Sum Length" pipeline. Here...
2016-10-22, ∼3879🔥, 0💬

Put Data into File in Windows PowerShell
How to put data into a file in Windows PowerShell? You can use the "Set-Content" or "Add-Content" cmdlet to put data into a file in Windows PowerShell. The "Set-Content" cmdlet is a string-processing cmdlet that writes or replaces the content in the specified item, such as a file. You can type the c...
2016-10-22, ∼3484🔥, 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, ∼3103🔥, 0💬

Send Console Output to File in Windows PowerShell
How to send console output to a file in Windows PowerShell? You can use the "Out-File" cmdlet to send console output into a file in Windows PowerShell. The "Out-File" cmdlet sends output to a file. You can use this cmdlet instead of the redirection operator (&gt;) with more controlling parameter...
2016-10-20, ∼5091🔥, 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, ∼3488🔥, 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, ∼3398🔥, 0💬

Work with Strings in Windows PowerShell
Where to find tutorials on how to work with strings in Windows PowerShell? Here is a collection of tutorials compiled by FYIcenter.com team on working strings in Windows PowerShell. What Is String in Windows PowerShell String Concatenation in Windows PowerShell Variable Expansion in Strings in Windo...
2016-10-20, ∼3243🔥, 0💬

What Is String in Windows PowerShell
What is a string in Windows PowerShell? A string is a sequence of characters in Windows PowerShell. If a sting is encoded in ASCII format, each character occupies a single byte. But if a string is encoded in UTF-8 format, a character may occupy multiple bytes. So the number of characters in a string...
2016-10-20, ∼3186🔥, 0💬

Select String by Pattern in Windows PowerShell
How to select strings with a given pattern in Windows PowerShell? I want to find some specific text in strings. You can use the "Select-String" cmdlet to do string pattern match in Windows PowerShell. The Select-String cmdlet searches for text and text patterns in input strings and files. You can us...
2016-10-19, ∼4243🔥, 0💬

<< < 73 74 75 76 77 78 79 80 81 82 83 > >>   ∑:4830  Sort:Rank