Out-String - PowerShell command help and examples

Sends objects to the host as a series of strings. (Out-String)


NAME
Out-String
SYNOPSIS
Sends objects to the host as a series of strings.
SYNTAX
Out-String [-InputObject <psobject>] [-Stream] [-Width <int>] [<CommonParameters>]
DESCRIPTION
The Out-String cmdlet converts the objects that Windows PowerShell manages into an array of strings. By default, Out-String accumulates the strings and returns them as a single string, but you can use the stream parameter to direct Out-String to return one string at a time. This cmdlet lets you search and manipulate string output as you would in traditional shells when object manipulation is less convenient.
PARAMETERS
-InputObject <psobject> Specifies the objects to be written to a string. Enter a variable that contains the objects, or type a command or expression that gets the objects. Required? false Position? named Default value Accept pipeline input? true (ByValue) Accept wildcard characters? false -Stream [<SwitchParameter>] Sends the strings for each object separately. By default, the strings for each object are accumulated and sent as a single string. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false -Width <int> Specifies the number of characters in each line of output. Any additional characters are truncated, not wrapped. If you omit this parameter, the width is determined by the characteristics of the host. The default for the PowerShell.exe host is 80 (characters). Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false <CommonParameters> This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer and OutVariable. For more information, type, "get-help about_commonparameters".
INPUTS
System.Management.Automation.PSObject You can pipe objects to Out-String.
OUTPUTS
System.String Out-String returns the string that it creates from the input object.
NOTES
The cmdlets that contain the Out verb (the Out cmdlets) do not format objects; they just render them and send them to the specified display destination. If you send an unformatted object to an Out cmdlet, the cmdlet sends it to a formatting cmdlet before rendering it. The Out cmdlets do not have parameters for names or file paths. To send data to an Out cmdlet, use a pipeline operator (|) to send the output of a Windows PowerShell command to the cmdlet. You can also store data in a variable and use the InputObject parameter to pass the data to the cmdlet. For more information, see the examples.

Examples

EXAMPLE 1
C:\PS>get-content C:\test1\testfile2.txt | out-string
Description
----------- This command sends the content of the Testfile2.txt file to the console as a single string. It uses the Get-Content cmdlet to get the content of the file. The pipeline operator (|) sends the content to Out-String, which sends the content to the console as a string.
EXAMPLE 2
C:\PS>$c = get-culture | select-object * C:\PS> out-string -inputobject $c -width 100
Description
----------- These commands get the regional settings for the current user and convert the data to strings. The first command uses the Get-Culture cmdlet to get the regional settings. The pipeline operator (|) sends the result to the Select-Object cmdlet, which selects all properties (*) of the culture object that Get-Culture retrieved. The command then stores the results in the $c variable. The second command uses Out-String to convert the CultureInfo object to a series of strings (one string for each property). It uses the InputObject parameter to pass the $c variable to Out-String. The width parameter is set to 100 characters per line to prevent truncation.
EXAMPLE 3
C:\PS>get-alias | out-string -stream | select-string "Get-Command"
Description
----------- This command displays aliases that include the phrase "Get-Command". It uses the Get-Alias cmdlet to get a set of AliasInfo objects (one for each alias in the current session). This example demonstrates the difference between working with objects and working with strings. The pipeline operator (|) sends the output of Get-Alias to Out-String, which converts the objects to a series of strings. It uses the Stream parameter to send each string individually, instead of concatenating them into a single string. Another pipeline operator sends the strings to Select-String, which selects the strings that include "Get-Command" anywhere in the string. If you omit the Stream parameter, the command displays all of the aliases, because Select-String finds "Get-Command" in the single string that Out-String returns, and the formatter displays the string as a table. RELATED LINKS Online version: http://go.microsoft.com/fwlink/?LinkID=113368 Out-File Out-Null Out-Host Out-Printer Out-Default C:\Windows>powershell get-help Out-GridView -full

Microsoft Windows [Version 10.0.19045.3693]
Copyright (c) 2023 Microsoft Corporation.

ColorConsole [Version 3.7.1000] PowerShell 2.0-Export

Windows 11, 10, 8.1, 8, 7 / Server 2022, 2019, 2016











Windows-10


... Windows 10 FAQ
... Windows 10 How To


Windows 10 How To


... Windows 11 How To
... Windows 10 FAQ



PowerShell: Sends objects to the host as a series of strings.

HTTP: ... PS_Windows/en/Out-String.htm
0.062
13386

Find similar or same images in different directorys!

Rule that prevents the computer goes into standby during a download?

Short how-to i use DirPrintOK!

Scroll via mouse wheel even if the window is not in the foreground ergo focused!

Zugriff auf essenzielle Speicher und System Funktionen unter Windows! 

WIA, or TWAIN scanner interface support on Windows!



(0)