<< < 2 3 4 5 6 7 8 9 10 11 12 > >>   ∑:422  Sort:Rank

What Is Windows PowerShell
What is Windows PowerShell? PowerShell is an automation platform and scripting language for Windows and Windows Server that allows you to simplify the management of your systems. Unlike other text-based shells, PowerShell harnesses the power of the .NET Framework, providing rich objects and a massiv...
2016-11-11, ∼4420🔥, 0💬

Main Features of Windows PowerShell
What are main features of Windows PowerShell? Here are main features of Windows PowerShell: Discoverability Windows PowerShell makes it easy to discover its features. For example, to find a list of cmdlets that view and change Windows services, type: Get-Command *-Service After discovering which cmd...
2016-11-11, ∼3144🔥, 0💬

Application Command in Pipeline in Windows PowerShell
Can I use application commands in cmdlet pipeline in Windows PowerShell? Yes, you can use application commands in cmdlet pipeline in Windows PowerShell. But you need to remember a couple of things: 1. The output of an application command will be considered as a String object, not a sequence of chara...
2016-11-04, ∼2516🔥, 0💬

Add Comments in Windows PowerShell Scripts
How to add comments in Windows PowerShell scripts? There are two primary ways to add comments in Windows PowerShell scripts: 1. Using # in the middle of line - If you use the "#" sign in the middle of a line, everything starts from "#" to the end of line is considered as a comment. For example: Writ...
2016-11-02, ∼3829🔥, 0💬

Using Microsoft Office Word 2007 - 26 Tutorials
A collection of 26 tutorials on Microsoft Office Word 2007 covering: How to convert word documents created with older versions to Office Word 2007; What is the main XML file in a .docx ZIP file; How to add a password to stop other people opening my Word document; How to convert a Word document into ...
2016-11-01, ∼6845🔥, 0💬

What Is File System in Windows PowerShell
What is a file system from the Windows PowerShell point of view? A file system represents a logical tree of directories and files to store information on an device outside the computer CPU. For example, a hard disk drive can be considered as a filesystem. There are several interesting features suppo...
2016-10-27, ∼2728🔥, 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, ≈99🔥, 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, ∼5405🔥, 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💬

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, ∼2670🔥, 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, ∼2888🔥, 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, ∼2878🔥, 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, ∼2767🔥, 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, ∼2735🔥, 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, ∼3781🔥, 0💬

String Comparison in Windows PowerShell
How to compare two strings in Windows PowerShell? Windows PowerShell supports the following string comparison operations: -eq - Equal to -ne - Not equal to -gt - Greater than -ge - Greater than or equal to -lt - Less than -le - Less than or equal to -Like - Match with wildcard characters ? and * -No...
2016-10-19, ∼2804🔥, 0💬

String Replacement in Windows PowerShell
How to replace a part of a string in Windows PowerShell? You can use the "-Replace" operation to replace a part of a string in Windows PowerShell. Here is the syntax of the "-Replace" operation: $subject -Replace $pattern,$replacement Regular expression is supported in $pattern. Here are some good e...
2016-10-19, ∼2495🔥, 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, ∼2362🔥, 0💬

What Is Windows PowerShell ISE
What is Windows PowerShell ISE? Windows PowerShell ISE (Integrated Scripting Environment) is a host application that enables you to write, run, and test scripts and modules in a graphical and intuitive environment. Key features such as syntax-coloring, tab completion, visual debugging, Unicode compl...
2016-10-05, ∼3848🔥, 0💬

Manage Breakpoints in Windows PowerShell ISE
How to add and remove breakpoints for debugging in the Windows PowerShell ISE? A breakpoint is a designated spot in a script where you would like operation to pause so that you can examine the current state of the variables and the environment in which your script is running. Once your script is pau...
2016-10-04, ∼6068🔥, 0💬

Write and Run Scripts in the Windows PowerShell ISE
How to Write and Run Scripts in the Windows PowerShell ISE? You can open and edit Windows PowerShell® files in the Script Pane. Specific file types of interest in Windows PowerShell® are script files (.ps1), script data files (.psd1), and script module files (.psm1). These file types are syntax c...
2016-10-04, ∼4090🔥, 0💬

What Are Different File Types Used by PowerPoint 2007
What are different file types used by PowerPoint 2007? What is the file extension used for each file type? There are 10 different file types used by PowerPoint 2007: 1. "Regular Presentation" - Extension: .pptx </p 2. "Macro-enabled Presentation" - Extension: .pptm </p 3. "Regular Template" - ...
2016-10-02, ∼6310🔥, 0💬

Files Stored inside PowerPoint 2007 .pptx Files
What files are stored inside a PowerPoint 2007 .pptx file? According to Microsoft documentation, a .pptx file is a ZIP containing many XML files. How many files are stored inside a .pptx file? The number of files stored inside a .pptx file is based on the number of slides created in the .pptx file. ...
2016-10-02, ∼6291🔥, 0💬

List of Services on Windows Server 2012
Where to find information about what system services are running on Windows Server 2012? I want to know if I can disable some service to improve system performance and security. Here is a collection of tutorials on Windows Server 2012 compiled by FYIcenter.com team about system services: Application...
2016-10-02, ≈13🔥, 0💬

<< < 2 3 4 5 6 7 8 9 10 11 12 > >>   ∑:422  Sort:Rank