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

Use Quotation to Protect Space in File Name
How to Quotation to Protect Space in File Names to be passed as batch file parameters? If you want pass a file name or path name that has space characters as a single parameter to a batch file, you need to put the name in a quotation format (enclosed in a pair of double quotes). For example, the pat...
2021-11-12, 2509🔥, 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, 2493🔥, 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, 2470🔥, 0💬

What Are Batch Built-in Variables
What What Are Batch Built-in Variables? Batch built-in variables are variables that defined by the batch execution context: %CD% - expands to the current directory string. %DATE% - expands to current date using same format as DATE command. %TIME% - expands to current time using same format as TIME c...
2021-10-10, 2467🔥, 0💬

Out-Host - Standard Output in Windows PowerShell Scripts
How to use the "Out-Host" cmdlet in Windows PowerShell scripts? I want to output information the standard output channel. The "Out-Host" cmdlet sends output to the Windows PowerShell host for display. The host displays the output to the PowerShell console. Because "Out-Host" is the default cmdlet, y...
2016-10-30, 2466🔥, 0💬

Commands Supported in Batch Files
What types of commands are supported in Windows batch files? There are 4 types of commands supported in Windows batch files: 1. DOS Commands - DOS (Disk Operating System) commands are CMD.EXE built-in commands that are designed to manage files and folders on the hard disk and other storage devices. ...
2017-12-04, 2453🔥, 0💬

"Remove-Job" Cmdlet in Windows PowerShell
How to use "Remove-Job" cmdlet in Windows PowerShell? You can use the "Remove-Job" cmdlet to remove an stopped or completed background job by using the "-id n" or "-name xxx" to specify the background job. If the background job is still running, you can use the "-Force" option to remove it. Here is ...
2016-10-08, 2447🔥, 0💬

Opening an old Outlook 2010 Data File
How to open an Outlook 2010 Data File that was closed previously? I need to read an old email stored in that data file. Opening an old Outlook Data File (.pst) in Outlook 2010 is very easy: 1. Run Outlook and click "File > Open > Outlook Data Files..." in the menu. The "Open Outlook Data File" dialo...
2017-02-09, 2440🔥, 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, 2424🔥, 0💬

"mkdir" Command Help Reference
How to get "mkdir" command help reference? You can run the "mkdir /?" command to get "mkdir" command help reference as shown below: C:\fyicenter&gt;mkdir /? Creates a directory. MKDIR [drive:]path MD [drive:]path If Command Extensions are enabled MKDIR changes as follows: MKDIR creates any inter...
2021-08-01, 2410🔥, 0💬

Displaying Outlook 2010 Calendar Items in Tabular View
How to display Outlook 2010 calendar items in a tabular view? I want to see my meeting invites like a list of emails. By default, Outlook displays your calend items in a calendar view, which is nice for you to know how many meetings you have to today. But it is hard to sort or filter meetings by org...
2014-04-29, 2407🔥, 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-04, 2358🔥, 0💬

"rmdir" Command Help Reference
How to get "rmdir" command help reference? You can run the "rmdir /?" command to get "rmdir" command help reference as shown below: C:\fyicenter&gt;rmdir /? Removes (deletes) a directory. RMDIR [/S] [/Q] [drive:]path RD [/S] [/Q] [drive:]path /S Removes all directories and files in the specified...
2017-12-09, 2352🔥, 0💬

Combine Output Streams with &gt;&amp;
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, 2338🔥, 0💬

"Remove-PSSession" Cmdlet in Windows PowerShell
What is the "Remove-PSSession" cmdlet in Windows PowerShell? You can use the "Remove-PSSession" cmdlet to remove one or more existing PSSessions in Windows PowerShell by using the "-id n" or "-name xxx" to specify the PSSession. Here is an example of using the "Remove-PSSession" cmdlet: PS C:\fyicen...
2016-10-13, 2333🔥, 0💬

Moving Outlook 2010 Calendar Items to Data File
How to move Outlook 2010 calendar items to a data file? I have so many old calendar items and want to move them to a data file to save space. Moving calendar items from your Outlook calendar to a data file requires the following steps: 1. Right-mouse click on the data file name, for example "Chess C...
2014-05-05, 2320🔥, 0💬

Use CON to Enter Data to File
How to use CON file name to enter data to a file quickly? I don't want to use any editors. Since CON is a special file name referring to the console including keyboard, you can use it with the "copy" command to enter data to a file. For example, if you want to create small batch file called "random....
2021-04-02, 2306🔥, 0💬

Introduction of Windows Batch File
Where to find introduction information of Windows Batch File? I want to have a basic understanding of Windows Batch File. Here is a collection of tutorials compiled by FYIcenter.com team to provide introduction information about Windows Batch File. What Is Windows Batch File Commands Supported in Ba...
2017-12-04, 2264🔥, 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, 2253🔥, 0💬

Start Windows PowerShell
How to start Windows PowerShell? On most Windows systems, you follow these steps to start Windows PowerShell: 1. Enter "Windows PowerShell" in the Windows search box. You will see "Windows PowerShell" in the matched result list. 2. Click "Windows PowerShell" in the matched result list. You will see ...
2016-11-11, 2227🔥, 0💬

Pixel Sizes of Commonly Used Devices
What are pixel sizes of commonly used devices? Pixel sizes of commonly used devices: 640 × 480 - Old VGA computer screen 640 × 1136 - iPhone 5 screen 1024 x 768 - iPad screen 1280 × 720 - HDTV display 1600 x 900 - Laptop computer screen 3840 x 2160 - UHDTV display 8192 × 4608 - Cinema projection
2013-11-11, 2222🔥, 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, 2192🔥, 0💬

File Name with Relative Path or Absolute Path
Should I provide file name with Relative Path or Absolute Path? When provide a file name, you have choice of using relative path or absolute path: 1. If you provide a file name with an absolute path, the system will go to the directory of the given path to locate the file. Providing an absolute path...
2022-08-30, 2170🔥, 1💬

💬 2022-08-30 Jimmy: All this info, all in one place has been perfect, accurate, jargon free and it's enjoyable! Cheers - just wish I found you soone...

Run cmd.exe Program with Options
What options are supported by the cmd.exe program? You can get a list of options supported by the cmd.exe program with the "cmd /?" command: C:\fyicenter&gt;cmd /? Starts a new instance of the Windows command interpreter CMD [/A | /U] [/Q] [/D] [/E:ON | /E:OFF] [/F:ON | /F:OFF] [/V:ON | /V:OFF] ...
2021-12-28, 2168🔥, 0💬

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