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

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

Picture Qualities of Camera/Phone
What are picture quality levels supported by my cell phone or camera? Since most cameras/phones save pictures in JPG/JPEG file format, the "Photo/Picture Quality" setting is really referring to the quality level during the JPG/JPEG compression process when saving pictures in the camera or phone. In ...
2013-11-07, ∼3360🔥, 0💬

"shift" Command Help Reference
How to get "echo" command help reference? You can run the "shift /?" command to get "shift" command help reference as shown below: C:\fyicenter&gt;shift /? Changes the position of replaceable parameters in a batch file. SHIFT [/n] If Command Extensions are enabled the SHIFT command supports the ...
2017-12-09, ∼3351🔥, 0💬

Work with File System in Windows PowerShell
Where to find tutorials on how to work with file systems in Windows PowerShell? Here is a collection of tutorials compiled by FYIcenter.com team on working with file systems in Windows PowerShell. What Is File System in Windows PowerShell Get and Change Directory in Windows PowerShell Get Directory ...
2016-10-27, ∼3351🔥, 0💬

Redirect STDIN Stream for Command to File
How to redirect STDIN stream from the keyboard to an existing file? I want the command to read data from a file. You can use the "&lt;" redirect operator to redirect the STDIN stream from the keyboard to an existing file as shown below: command options &lt; file-name For example, the "SORT" ...
2022-12-03, ∼3343🔥, 0💬

Pixel Size of Pictures
What is the pixel size of a pictures? Pixel size, sometimes called image size, or picture resolution, of a picture refers to the number of pixels used to represent the picture in both horizontal and vertical dimensions. For example, if a camera says it has a 8M (3264x2448) photo resolution, it means...
2013-10-31, ∼3330🔥, 0💬

Compositing Two Images Together with ImageMagick
How to composite two images into a single image with ImageMagick? Can I use the ImageMagick "composite" command to composite two images together? Yes. You can use the ImageMagick "composite" command to composite two images together into a single image. You can test it out in these steps: C:\fyicente...
2013-11-19, ∼3323🔥, 0💬

"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, ∼3317🔥, 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, ∼3314🔥, 0💬

Using Batch Commands
Where to find introduction information on Using Commands Designed for Batch Files? Here is a collection of tutorials compiled by FYIcenter.com team to provide introduction information on Using Commands Designed for Batch Files. List Batch Commands "call" - Run Another Batch File "call command" vs. "...
2021-03-21, ∼3310🔥, 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, ∼3302🔥, 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, ∼3288🔥, 0💬

Perceptible Quality Loss of JPG/JPEG Compression
At what JPG/JPEG compression level should I see perceptible quality losses? In general, quality levels of 90% or higher are considered "high quality". At 90%, there is very little difference in smooth areas. But edges of objects are not as crisp as the original picture. Quality level of 80% to 90% i...
2013-11-04, ∼3288🔥, 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, ∼3285🔥, 0💬

Remove Quotation Marks from Parameters
How to Remove Quotation Marks from Parameters? If a parameter is passed in a quotation format, you can remove quotation marks by using the replacement function in the variable expansion expression in 3 steps: 1. Assign the parameter to a variable. For example, set x=%1 2. Update the variable with qu...
2021-11-12, ∼3268🔥, 0💬

"call" Command Help Reference
How to get "call" command help reference? You can run the "call /?" command to get "call" command help reference as shown below: C:\fyicenter&gt;call /? Calls one batch program from another. CALL [drive:][path]filename [batch-parameters] batch-parameters Specifies any command-line information re...
2021-10-10, ∼3266🔥, 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, ∼3243🔥, 0💬

"Receive-Job" Cmdlet in Windows PowerShell
How to use "Receive-Job" cmdlet in Windows PowerShell? You can use the "Receive-Job" cmdlet to receive output result from an existing background job by using the "-id n" or "-name xxx" to specify the background job. The Receive-Job cmdlet gets the results that have been generated by the time that th...
2016-10-08, ∼3238🔥, 0💬

Picture Quality Level of LG P925
What are JPG/JPEG compression quality levels supported in Samsung LG P925 cell phone? Its Image Quality setting provides 3 options: "Super fine", "Fine" and "Normal". To figure out the JPG/JPEG compression quality levels corresponding to "Super fine", "Fine" and "Normal" image quality options in LG ...
2013-11-06, ∼3231🔥, 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, ∼3229🔥, 0💬

Managing Remote Computer with Windows PowerShell
Where to find tutorials on managing remote computers with Windows PowerShell? Here is a collection of tutorials compiled by FYIcenter.com team on managing remote computers with Windows PowerShell. Remote Computing Overview in Windows PowerShell "Test-Connection" Cmdlet in Windows PowerShell Windows ...
2016-10-17, ∼3229🔥, 0💬

Picture Quality Level of Samsung SGH-i937
What are JPG/JPEG compression quality levels supported in Samsung SGH-i937 cell phone? Its Photo Quality setting provides 3 options: High, Medium and Low. To figure out the JPG/JPEG compression quality levels corresponding to High, Medium and Low photo quality options in Samsung SGH-i937 cell phone,...
2013-11-06, ∼3227🔥, 0💬

What Is Windows PowerShell Cmdlet
What is Windows PowerShell Cmdlet? A cmdlet is a lightweight command that is used in the Windows PowerShell environment. The Windows PowerShell runtime invokes these cmdlets within the context of automation scripts that are provided at the command line. The Windows PowerShell runtime also invokes th...
2016-11-05, ∼3200🔥, 0💬

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