FUNDAMENTALS OF COMPUTER

OPERATING SYSTEMS FOR COMPUTERS

COMMAND LINE INTERFACE

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
You want to run a listing to see files that were used by the last-accessed date This date does not display by default. Which command would you issue to find additional properties of the files to reference?
A
Get-properties |get-childtitem
B
Get-childitem |get-member
C
Get-childitem |get-properties
D
Get-member |get-childitem
Explanation: 

Detailed explanation-1: -A batch file is a script file that stores commands to be executed in a serial order. It helps automate routine tasks without requiring user input or intervention.

Detailed explanation-2: -PsFile is a command-line utility that shows a list of files on a system that are opened remotely, and it also allows you to close opened files either by name or by a file identifier.

Detailed explanation-3: -You can also search for a particular file type by using a command dir . pdf /s and it will show you all files saved with the . pdf extension.

Detailed explanation-4: -Open a command prompt (Start-> Run-> cmd Enter ) Navigate ( cd ) to the directory whose files you want to list. Enter dir > output file name (e.g., dir > C:. txt ) and press Enter .

There is 1 question to complete.