Vertaling van "export-csv" 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.
It uses a pipeline operator (|) to send the process objects to the Export-CSV cmdlet, which exports the process objects to the Processes.csv file in the current directory.
Sie werden mit dem Pipelineoperator (|) an das Cmdlet "ConvertTo-CSV" gesendet, das das Prozessobjekt in das CSV-Zeichenfolgen werden in der Variablen"$p" gespeichert.
Export-CSV does not export the methods of the object.
C:\PS>get-process | export-csv processes.csv -UseCulture This command exports objects representing the processes on the computer to the Processes.csv file in the current directory.
C:\PS>get-process | export-csv processes.csv -UseCulture Beschreibung - Mit diesem Befehl werden Objekte, die die Prozesse auf dem Computer darstellen, in die Datei "Processes.csv" im aktuellen Verzeichnis exportiert.
C:\PS>get-process | export-csv processes.csv -Delimiter: C:\PS>$p = import-csv processes.csv -Delimiter: This example shows how to use the Delimiter parameter of Import-CSV.
C:\PS>get-process | export-csv processes.csv -Delimiter: C:\PS>$p = import-csv processes.csv -Delimiter: Beschreibung - In diesem Beispiel wird gezeigt, wie der Delimiter-Parameter von Import-CSV verwendet wird.
That's great, until it comes time to use Export-Csv and update the contents of the file.
The end result: the file gets updated, but when Export-Csv is finished the file will still be marked as read-only.
Das Ergebnis: Die Datei wird aktualisiert, und nachdem Export-Csv abgeschlossen ist, wird die Datei wieder als schreibgeschützt gekennzeichnet.
A pipeline operator (|) sends the resulting job object to the Export-CSV cmdlet, which converts the job object to CSV format.
Das resultierende Auftragsobjekt wird mit einem Pipelineoperator (|) an das Cmdlet "Export-CSV" gesendet, das das Auftragsobjekt in das CSV-Format konvertiert.
The Export-CSV cmdlet creates a CSV variable-length file that represents the objects that you submit.
Mit dem Cmdlet Export-CSV wird eine CSV-Datei erstellt, die die von Ihnen gesendeten Objekte darstellt.
The Export-CSV cmdlet creates a CSV variable-length file that represents the objects that you submit.
Mit dem Cmdlet "Export-CSV" wird eine CSV-Datei erstellt, die die von Ihnen gesendeten Objekte darstellt.
The property values are converted to strings (by using the ToString() method of the object), so they are generally represented by the name of the property value. Export-CSV does not export the methods of the object.
Die Eigenschaftenwerte werden in Zeichenfolgen konvertiert (mit der ToString()-Methode des Objekts). Deshalb werden sie im Allgemeinen durch den Namen des Eigenschaftenwerts dargestellt. Export-CSV exportiert nicht die Methoden des Objekts.
This command gets the five most recent history entries ending with entry 7. The pipeline operator (|) passes the result to the Export-Csv cmdlet, which formats the history as comma-separated text and saves it in the History.csv file.
Mit diesem Befehl werden die letzten fünf Einträge bis zum Eintrag 7 abgerufen. Mit dem Pipelineoperator (|) werden die Ergebnisse an das Cmdlet Export-Csv übergeben, das den Verlauf als durch Kommas getrennten Text formatiert und in der Datei History.csv speichert.
The pipeline operator (|) passes the result to the Export-Csv cmdlet, which formats the history as comma-separated text and saves it in the History.csv file.
Mit dem Pipelineoperator (|) werden die Ergebnisse an das Cmdlet "Export-Csv" übergeben, das den Verlauf als durch Kommas getrennten Text formatiert und in der Datei "History.csv" speichert.
It uses a pipeline operator (|) to send the process objects to the Export-CSV cmdlet, which exports the process objects to the Processes.csv file in the current directory.
Die Prozessobjekte werden mithilfe eines Pipelineoperators (|) an das Cmdlet Export-CSV gesendet, das die Prozessobjekte in die Datei Processes.csv im aktuellen Verzeichnis exportiert.