Hoofdstuk 7 Flashcards

1
Q

Cmdlet om een lijst te tonen van alle processen

A

get-process | format-list *

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Wat doet out-default?

A

Out-Default zorgt ervoor dat de belangrijkste velden uit het object gehaald worden.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Wat doet out-host?

A

Out-Host zorgt ervoor dat de informatie op het scherm getoond wordt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Wat doet format-custom?

A

output formatteren door een nieuwe view aan te maken in een ps1xml bestand

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Wat doet format-wide?

A

1 enkele eigenschap verdeeld over verschillende kolommen

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Cmdlet om de structuur van objecten (hier processen) op te vragen

A

get-process | get-member -membertype propertyset

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Cmdlet om van get-process en property-set genaamd PSResources te bekomen

A

get-process | format-table PSResources

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Welk format is de default output van een cmdlet?

A

format-table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Geef de parameters die je bij een format-table kunt gebruiken

A
property
hidetableheaders
groupby
inputobject
displayerrors
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Hoe zorg je ervoor dat de hoofdingen van de kolommen niet worden getoond?

A

cmdlet | format-table -hidetableheaders

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Hoe groepeer je de output van je tabel obv een property of waarde?

A

cmdlet | format-table -groupby naamproperty/waarde

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Hoe ken je input toe aan het commando format-table?

A

-inputobject

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Hoe toon je fouten bij format-table?

A

format-table -displayerrors

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Wat kun je het beste doen als er te veel objecten zijn om format-table * nog leesbaar te krijgen?

A

cmdlet | format-list *

How well did you know this?
1
Not at all
2
3
4
5
Perfectly