Algemeen Flashcards

1
Q

Start-transcript

A

Logt alle info naar een .txt

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

get-command

A

Krijg alle functies van powershell terug in een lijst

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

Hoe autocomplete je een string?

A

tab

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

welke 2 vormen spreek je powershell aan?

A

verb-noun of action/object ofwel werkwoord-zelfstandig naamwoord of actie/object

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

Bijv bij get-command, hoe filter je info? Hoe filter je op een werkwoord? en hoe filter je op een zelfstandig naamwoord? bijvoorbeeld alles dat begint op een s?

A

get-command - noun s*
get-command -Noun service
get-command -verb start

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

Hoe kom je achter alle opties van een functie in ps?

A

get-help

bijv get-help Get-Service

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

Hoe krijg je examples van een functie?

A

get-help get-services -Examples

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

Hoe check je online help met get-help?

A

get-help get-ChildItem -Online

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

Wat is een alias

A

Een shortcut voor een command. Zoals dir of cls

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

Hoe zie je de alias van cls

A

get-alias cls

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

wat is de ‘host’?

A

host is de object waarin geprogrammeerd wordt (programma, powershell shell)

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

hoe krijg je een lijst van alle aliasses

A

get-alias

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

get-member (!) belangrijk (!)

A

lijst van methods en properties van een object. Usage: dir | get member (| = pipe)

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

Hoe pipe je info naar een volgende actie?

A

|

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

Wat doet select object *

A

Gebruikt de output van een pipe ( … | select-object *) en schrijft alle info uit.

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

Hoe definieer je een variable?

A

$

17
Q

Hoe kan je van bijvoorbeeld variablele $zebra. door alle opties heen scrollen?

A

door tab te drukken na de punt.

18
Q

https://www.youtube.com/watch?v=IHrGresKu2w

A

video 1

19
Q

get-history

A

history van input in powershell

20
Q

$_

A

the current object in the pipe

21
Q

select-object

A

Selecteert van een output specifieke kolommen

22
Q

select-object * (!) belangrijk (!)

A

krijg alle properties terug van de files

bijv.
dir | select-object *