Out-Null - PowerShell command help and examples

Deletes output instead of sending it to the console. (Out-Null)


NAME
Out-Null
SYNOPSIS
Deletes output instead of sending it to the console.
SYNTAX
Out-Null [-InputObject <psobject>] [<CommonParameters>]
DESCRIPTION
The Out-Null cmdlet sends output to NULL, in effect, deleting it.
PARAMETERS
-InputObject <psobject> Specifies the object that was sent to null (deleted). 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 <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 any object to Out-Null.
OUTPUTS
None Out-Null does not generate any output.
NOTES
The cmdlets that contain the Out verb (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. Out-Null does not return any output objects. If you pipe the output of Out-Null to Get-Member, Get-Member reports that no objects have been specified.

Examples

EXAMPLE 1
C:\PS>get-childitem | out-null
Description
----------- This command gets the items in the local directory, but then it discards them instead of passing them through the pipeline or displaying them at the command line. This is useful for discarding output that you do not need. RELATED LINKS Online version: http://go.microsoft.com/fwlink/?LinkID=113366 Out-Printer Out-Host Out-File Out-String Out-Default C:\Windows>powershell get-help Out-Default -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: Deletes output instead of sending it to the console.

HTTP: ... PS_Windows/en/Out-Null.htm
0.077
13338
Who should definitely play Virus Hunt in the virtual AI Windows world?
Open Internet Options in Windows 11, how to?
Als Administrator hängende Programme und APPs in den Griff bekommen!
QuickTextPaste in Programs(x86) or Programs?
So übersetzen Sie DesktopOK in Ihrer Sprache!
Was ist der wesentliche Unterschied zwischen Win-7 Ultimate und Win-7 Professional?
Desktop Kalender deinstallieren vom Windows Desktop!
Can I pin programs on Win7 Taskbar (unpin)?
Problembehandlung in Windows-7, es soll Probleme erkennen und beheben können?
Windows 11 quickly switch to standby mode or the monitor turns off?



(0)