Hoofdstuk 1 Flashcards

1
Q

Cmdlet voor actieve processen

A

Get-Process

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

Ipconfig variant

A

gip

Get-NetIPConfiguration

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

DNS Server opvragen

A

Get-DnsClientServerAddress

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

Cmdlet om informatie te krijgen over:

  • het type object
  • de properties
  • de beschikbare methodes
A

Get-Member

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

Cmdlet voor de properties en methodes die voor het cmdlet get-process beschikbaar zijn

A

Get-Process | Get-Member

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

Cmdlet om enkel de properties van Get-Process te zien

A

Get-Process | Get-Member -MemberType property

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

Cmdlet om enkel de methodes van Get-Process te zien

A

Get-Process | Get-Member -MemberType method

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

De waarde van een property opvragen, 3 methodes

A

(cmdlet).naamproperty
Een variabele toekennen: $naamvariabele=waarde –> $var.naamproperty
cmdlet | ForEach-Object{$_.naamproperty}

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

Cmdlet voor de starttijd van elk proces, 3 methodes

A

1) (Get-Process).starttime
2) $var=get-process
$var.starttime
3) Get-Process | ForEach-Object{$_.starttime}

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

Cmdlet om 2 dagen bij de huidige datum toe te voegen, 3 methodes

A

1) (Get-Date).adddays(2) (werkt enkel bij 1 object)
2) $var=Get-Date
$var.adddays(2) (werkt enkel bij 1 object)
3) Get-date | ForEach-Object{$_.adddays(2)} (werkt bij meerdere objecten)

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