Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Display Data and Save That Data with One Command
The Tee-Object cmdlet enables you to display data in the Windows PowerShell window and to save that same data to a text file, all with a single command. For example, this command uses the Get-Process cmdlet to retrieve information about all the processes currently running on the computer, then uses Tee-Object to simultaneously display the data on-screen and save that data to the file C:\Scripts\Test.txt:
Get-Process | Tee-Object -file c:\scripts\test.txt
| Tee-Object Aliases |
|---|
|