Powershell 4 Flashcards
What command clears the Recycle Bin?
Clear-recyclebin
What Powershell command will return only the membertype ‘Method’?
User Get-Service in the example
Get-service | get-member -membertype method
If you are in a directory containg a lot of folders/files and you want to display just the first page, what command would you use?
What key will scroll a line at a time and what key will scroll a page ate a time?
get-childitem | more
Enter - Line at a time
Space - Page at a time
What command will write the contents of c:\ directory to a text file call test .txt that is located at c:\users\petej\desktop\test.txt
get-childitem > ‘c:\users\petej\desktop\test.txt’
What command will append the contents of c:\users to a text file call test .txt that is located at c:\users\petej\desktop\test.txt
get-childitem»_space; ‘c:\users\petej\desktop\test.txt’
What command would write the text ‘This is Powershell’ to the text editor with a forground colour of green and a background color of blue?
write-host ‘This is Powershell’ -foreground green -background blue
What command would write the text ‘This is Powershell’ to the text editor, create a text file called log.txt in the directory you are in and write the same text to the file?
‘This is Powershell’ | tee-object log.txt
What command woukd open a text file called Music.txt that is saved in the directory you are in?
.\Music.txt
What command will retrieve the contents of the directory you are in, create a text file, write the contents of the directory to the file and save it to the same directory?
Call the text file Windows.txt
get-childitem > ‘windows.txt’
What powershell command will go back one step in a directory?
cd ~