Vertaling van "get-content" in Duits
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
To see the current prompt function, type the following command: get-content function:prompt The command begins with the "function" keyword followed by the function name, "prompt".
Zum Anzeigen der aktuellen prompt-Funktion geben Sie folgenden Befehl ein: get-content function:prompt Der Befehl beginnt mit dem Schlüsselwort "function", gefolgt vom Funktionsnamen "prompt".
C:\PS>new-pssession -computer name (get-content servers.txt | select-object -skip 1) This command creates a new PSSession on each of the computers listed in the Servers.txt files, except for the first one.
C:\PS>new-pssession -computername (get-content servers.txt | select-object -skip 1) Beschreibung - Mit diesem Befehl wird auf jedem in der Datei "Servers.txt" aufgelisteten Computer eine neue PSSession erstellt, mit Ausnahme des ersten Computers.
C:\PS>get-content C:\test1\testfile2.txt | out-string This command sends the content of the Testfile2.txt file to the console as a single string.
C:\PS>get-content C:\test1\testfile2.txt | out-string Beschreibung - Mit diesem Befehl wird der Inhalt der Datei "Testfile2.txt" als einzelne Zeichenfolge an die Konsole gesendet.
C:\PS>(get-content cmdlets.txt -totalcount 5)[-1] This command gets the fifth line of the Cmdlets.txt text file.
C:\PS>(get-content cmdlets.txt -totalcount 5)[-1] Beschreibung - Dieser Befehl ruft die fünfte Zeile in der Textdatei "Cmdlets.txt" ab.
C:\PS>add-content -path monthly.txt -value (get-content c:\rec1\weekly.txt) This command adds the contents of the Weekly.txt file to the end of the Monthly.txt file.
C:\PS>add-content -path monthly.txt -value (get-content c:\rec1\weekly.txt) Beschreibung - Mit diesem Befehl wird der Inhalt der Datei "Weekly.txt" am Ende der Datei "Monthly.txt" hinzugefügt.
C:\PS>get-content c:\Logs\Log060912.txt -totalcount 50 | set-content sample.txt This command gets the first 50 lines of the Log060912.txt file and stores them in the sample.txt file.
C:\PS>get-content c:\Logs\Log060912.txt -totalcount 50 | set-content sample.txt Beschreibung - Mit diesem Befehl werden die ersten 50 Zeilen der Datei "Log060912.txt" abgerufen und in der Datei "sample.txt" gespeichert.
Get-Content retrieves the content of the item.
Get-Content ruft den Inhalt des Elements ab.
Get-Content returns objects that represent the content that it gets.
The command uses the Get-Content cmdlet to get the text in the file.
Der Befehl verwendet das Cmdlet Get-Content, um den Text in der Datei abzurufen.
The Get-Content command reads the data from the file.
Get-Content already treats the data read from the file as an array, with one element per line of file content.
Get-Content behandelt die Daten in der Datei bereits als Array mit einem Element pro Zeile in der Datei.
Then, it uses the Get-Content cmdlet to get the content of the manifest file in the specified path.
Anschließend wird mit dem Cmdlet Get-Content der Inhalt der Manifestdatei im angegebenen Pfad abgerufen.
Specifies the path to an item. Get-Content retrieves the content of the item.
Gibt den Pfad zu einem Element an. Get-Content ruft den Inhalt des Elements ab.