ClearEventLogCommand.ComputerName Property
Gets and sets the value of the ComputerName parameter of the Clear-EventLog cmdlet. This property is introduced in Windows PowerShell 2.0.
Namespace: Microsoft.PowerShell.Commands
Assembly: Microsoft.PowerShell.Commands.Management (in Microsoft.PowerShell.Commands.Management.dll)
Usage
'Usage
Dim instance As ClearEventLogCommand
Dim value As String()
value = instance.ComputerName
instance.ComputerName = value
Syntax
'Declaration
<ParameterAttribute(Position:=1, ValueFromPipelineByPropertyName:=True)> _
<ValidateNotNullOrEmptyAttribute> _
<AliasAttribute(System.String[])> _
Public Property ComputerName As String()
[ParameterAttribute(Position=1, ValueFromPipelineByPropertyName=true)]
[ValidateNotNullOrEmptyAttribute]
[AliasAttribute(System.String[])]
public string[] ComputerName { get; set; }
[ParameterAttribute(Position=1, ValueFromPipelineByPropertyName=true)]
[ValidateNotNullOrEmptyAttribute]
[AliasAttribute(System.String[])]
public:
property array<String^>^ ComputerName {
array<String^>^ get ();
void set (array<String^>^ value);
}
/** @property */
public String[] get_ComputerName ()
/** @property */
public void set_ComputerName (String[] value)
public function get ComputerName () : String[]
public function set ComputerName (value : String[])
Property Value
A String array that contains the names of the computers whose event log is cleared.
Remarks
This topic is included in this SDK for completeness only. For more information about this cmdlet, see Clear-EventLog in the Microsoft TechNet library.
For Help at the command line, type:
get-help clear-eventlog
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
Target Platforms
See Also
Reference
ClearEventLogCommand Class
ClearEventLogCommand Members
Microsoft.PowerShell.Commands Namespace