<< < 1 2 3 4 5 6 7 8 9 10 11 > >>   ∑:312  Sort:Date

Converting a Word Document into a Web Page
How to convert a Word document into a Web page? I have a nice Word document and want to publish it on my Website. Can I convert my word document into a Web page? Yes, you can easily convert a Word document into Web page with Word 2007 in 4 steps: 1. Open your word document (extension .docx) in Offic...
2009-10-29, ∼4717🔥, 0💬

jpgQ - JPEG Quality Estimator
What is jpgQ - JPEG Quality Estimator? Why do I need it? jpgQ is a JPG/JPEG Quality Estimator and free to use. jpgQ allows to load a JPEG picture and estimate the quality the picture was last saved. Knowing the JPG/JPEG quality of a picture helps to you to decide what quality to use when you want to...
2013-11-05, ∼4708🔥, 0💬

Files Stored inside Word 2007 .docx Files
What files are stored inside a Word 2007 .docx file? According to Microsoft documentation, a .docx file is a ZIP file containing many XML files. How many files are stored inside a .docx file and what are they? The number of files stored inside a .docx file is 11, which are stored in different sub fo...
2009-10-23, ∼4650🔥, 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, ∼4647🔥, 0💬

Opening Older Version Files with Word 2007
How to open word documents created with older versions of Word? If I have word documents created with older versions of Word like Microsoft Office Word 2003, can I open them with Office Word 2007? Yes, you can easily open word documents created with older versions of Word with Microsoft Office Word ...
2009-10-20, ∼4633🔥, 0💬

Run Two Commands Sequentially
How to run two commands sequentially in a single command line? You can run two commands sequentially in a single command line with the syntax below: command-1 &amp; command-2 For example, the following command line run the "echo" command twice sequentially: C:\fyicenter&gt;echo Hello &am...
2021-05-15, ∼4600🔥, 0💬

What Are Different File Types Used by Word 2007
What are different file types used by Word 2007? What is the file extension used for each file type? There are 4 different file types used by Word 2007: 1. "Document" - Extension: .docx 2. "Macro-enabled document" - Extension: .docm 3. "Template" - Extension: .dotx 4. "Macro-enabled template" - Exte...
2009-10-22, ∼4549🔥, 0💬

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

"xcopy" Command Help Reference
How to get "xcopy" command help reference? You can run the "xcopy /?" command to get "xcopy" command help reference as shown below: C:\fyicenter&gt;xcopy /? Copies files and directory trees. XCOPY source [destination] [/A | /M] [/D[:date]] [/P] [/S [/E]] [/V] [/W] [/C] [/I] [/Q] [/F] [/L] [/G] [...
2017-12-04, ∼4481🔥, 0💬

Install Help for Windows PowerShell
How to install help for Windows PowerShell? I am getting the "Get-Help cannot find the Help files for this cmdlet on this computer" error. By default, help files are not installed for Windows PowerShell. So if you run the help command, you will get the syntax-only help and the "Get-Help cannot find ...
2016-11-08, ∼4336🔥, 0💬

"Sort-Object" Cmdlet in Windows PowerShell
What is the "Sort-Object" cmdlet in Windows PowerShell? "Sort-Object" cmdlet in Windows PowerShell takes an input of object list and generate an output object list by sorting objects according to specified properties. For example, the following command uses the "sort-object" cmdlet to sort a Process...
2016-11-04, ∼4316🔥, 0💬

"Start-Job" Cmdlet in Windows PowerShell
How to use "Start-Job" cmdlet in Windows PowerShell? You can use the "Start-Job" cmdlet to start a Windows PowerShell background job on the local computer. A Windows PowerShell background job runs a command "in the background" without interacting with the current session. When you start a background...
2016-10-08, ∼4302🔥, 0💬

Manage Space in Command Name
How to manage space characters in the command name? If the command you want to run is an executable program and the program name or path has space characters, you have to enclose the command name between a pair of double quotes. For example, if you want to run the "7z.exe" program located in the "\P...
2022-01-16, ∼4294🔥, 1💬

💬 2022-01-16 applicazioni web: = {}; // These are configuration // strength owasp.configs = { allowPassphrases: true, maxLength: 128, minLength: 10, minPhraseL...

Access Object Properties in Windows PowerShell Scripts
How to access properties of ab object in Windows PowerShell scripts? I know the property name. If you know the property name of an object, you can access the property value using the "." operator in Windows PowerShell scripts. For example, if you run the following script: $dt = Get-Date $tod = $dt.T...
2023-12-27, ∼4254🔥, 2💬

💬 2023-12-17 FYIcenter.com: @Fred, You need to use System.Drawing API to those properties in a JPG file.

💬 2023-12-12 Fred V: Where can I find the files property names -as caption and title of a jpg... Thanks !

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

Space - Delimiter for Batch File Parameters
What is the character to separate batch file parameters? When you specify parameters to invoke a batch file, the space character is used as the delimiter to separate parameters. For example, if you enter "Batch-File-Parameters.bat 1 2 3 4 5", you are providing 5 parameters to the batch file. Multipl...
2021-11-12, ∼4175🔥, 0💬

Connect to Existing PSSession in Windows PowerShell
How to connect to an existing PSSession in Windows PowerShell? You can use the "Enter-PSSession" cmdlet to connect to an existing PSSession in Windows PowerShell by using the "-id n" or "-name xxx" to specify the PSSession. Here is an example of using the "Enter-PSSession" cmdlet to connect to exist...
2016-10-15, ∼4124🔥, 0💬

Manage a Debugging Session in Windows PowerShell ISE
How to manage a Debugging Session in Windows PowerShell ISE? To start debugging - Press F5 or, on the toolbar, click the Run Script icon, or on the Debug menu click Run\/Continue. The script runs until it encounters the first breakpoint. It pauses operation there and highlights the line on which it ...
2016-10-04, ∼4114🔥, 0💬

Write Script File in Windows PowerShell
How to write a script file in Windows PowerShell to run multiple commands together? Writing a script file in Windows PowerShell is easy. You can follow these steps: 1. Open Notepad. 2. Write commands in Notepad with one command per line. For example: Write-Host "Hello World!" test-connection www.mic...
2016-11-03, ∼4106🔥, 0💬

Loop Hashtable Members in Windows PowerShell Scripts
How to use Foreach loops in Windows PowerShell scripts? There are a couple of ways of loop through members of a hashtable. 1. Using "Keys" property - The "Keys" property holds a Collection object of all keys in a hashtable. The Collection object of keys can be used in a "Foreach {...}" loop as shown...
2016-10-29, ∼4101🔥, 0💬

What Is cmd.exe Program
What is cmd.exe program? cmd.exe program, also called Command Prompt, is the command-line interpreter on Windows operating systems. Normally, cmd.exe is executed in interactive mode to give you a window where you can enter and execute one command at a time. When cmd.exe is executed in interactive mo...
2021-07-02, ∼4098🔥, 1💬

Reducing Image Size with ImageMagick
How to reduce image pixel size with ImageMagick? Can I use the ImageMagick "convert -resize" command to resize my images? Yes. You can use ImageMagick "identify -resize" command to reduce the pixel size of an image. You can test it out in these steps: C:\fyicenter>identify test.png test.png PNG 2592...
2013-11-18, ∼4017🔥, 0💬

Combine Output Streams with >&
How to use the duplication redirection to combine one output stream into another output stream? I want to combine STDERR and STDIN together and send them to a file. To combine one output stream into another output stream, you can use the duplication redirection operator as described below: command o...
2021-05-15, ∼3935🔥, 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, ∼3932🔥, 0💬

<< < 1 2 3 4 5 6 7 8 9 10 11 > >>   ∑:312  Sort:Date