Premium Partner

Powershell, Karten 31-60

Powershell Grundlagen

Powershell Grundlagen

Nicht sichtbar

Nicht sichtbar

Kartei Details

Karten 30
Sprache Deutsch
Kategorie Informatik
Stufe Berufslehre
Erstellt / Aktualisiert 11.11.2015 / 04.10.2019
Lizenzierung Keine Angabe
Weblink
https://card2brain.ch/box/powershell_karten_3160
Einbinden
<iframe src="https://card2brain.ch/box/powershell_karten_3160/embed" width="780" height="150" scrolling="no" frameborder="0"></iframe>

Wie können die Default Provider von Powershell angezeigt werden?

get-psprovider #Alias, Environment, Filesystem, Function, Registry, Variable

It’s designed to take some kind of data storage and make it look like a disk drive

Welchen Möglichkeiten bietet ein Provider mit der Fähigkeit "Shouldprocess"

Der provider unterstützt -WhatIf and -Confirm Parameters

enabling you to “test” certain actions before committing to them

Welchen Möglichkeiten bietet ein Provider mit der Fähigkeit "Credentials"

the provider permits you to specify alternate credentials when connecting to data stores.

Welchen Möglichkeiten bietet ein Provider mit der Fähigkeit "Transactions"

the provider supports the use of transactions; which allows you to use the provider to make several changes; and then either roll back or commit those changes as a single unit

Wie können die Verbundenen Laufwerke angezeigt werden?

get-psdrive

Was bedeuted der command parameter "-LiteralPath"

wildcards *;? sind bei manchen Providern; z.B Registry erlaubt. Wenn Powershell Wildcards nicht interpretieren soll muss dies mit dem Parameter -LiteralPath anstelle von -Path angegeben werden.

Was ist der Unterschied von Export-CliXML und export-csv?

CliXML can hold more information than a flat CSV file

It's better for diff with compare-object

Was ist der Unterschied von ">" und "| Out-File"

Out-File also provides additional parameters that let you specify alternative character encodings (such as UTF8 or Unicode)