Search notes:

PowerShell command verb: Write

The following table lists the cmdLets with the write verb and the associated preference variable (whose type is System.Management.Automation.ActionPreference) that controls controls the behavior of the write-* command:
Preference variable Valid values
write-debug $debugPreference Stop, Inquire, Continue, SilentlyContinue
write-error $errorActionPreference Break, Continue, Ignore, Inquire, SilentlyContinue, Stop, Suspend
write-information $informationPreference Stop, Inquire, Continue, Suspend, SilentlyContinue
write-output n/a
write-progress $progressPreference Stop, Inquire, Continue, SilentlyContinue
write-verbose $verbosePreference Stop, Inquire, Continue, SilentlyContinue
write-warning $warningPreference Stop, Inquire, Continue, SilentlyContinue

TODO

System.Management.Automation.ActionPreference

See also

Typically, the output that is written with write- commands is interpreted by the PowerShell host, see also the $host.ui.write…() methods.
The background and foreground colors of the written message for these write-* cmdlets, except for write-information, can be configured with the $host.privateData object.
The verb out.
CmdLets that create files include

Index