# Set-BluGenieAuditProcessPol

﻿

### Set-BluGenieAuditProcessPol <a href="#set-blugenieauditprocesspol" id="set-blugenieauditprocesspol"></a>

### SYNOPSIS <a href="#synopsis" id="synopsis"></a>

Enable or Disable Audit Process Tracking

### SYNTAX <a href="#syntax" id="syntax"></a>

```
Set-BluGenieAuditProcessPol [[-ReturnObject]] [[-Status] <String>] [[-ViewOnly]] [[-Walkthrough]] [<CommonParameters>]
```

### DESCRIPTION <a href="#description" id="description"></a>

Enable or Disable Audit Process Tracking

### EXAMPLES <a href="#examples" id="examples"></a>

#### EXAMPLE 1 <a href="#example-1" id="example-1"></a>

```
Set-BluGenieAuditProcessPol
```

```
This will enable Auditing for Process Creation and Process Exits
The returned data will be a Hash Table
```

#### EXAMPLE 2 <a href="#example-2" id="example-2"></a>

```
Set-BluGenieAuditProcessPol -ViewOnly
```

```
This will display the current status of the Audit policy for Process Tracking.
Note:  This will not change any settings.
```

#### EXAMPLE 3 <a href="#example-3" id="example-3"></a>

```
Set-BluGenieAuditProcessPol -ReturnObject
```

```
This will enable Auditing for Process Creation and Process Exits

The returned data will be an Object
```

#### EXAMPLE 4 <a href="#example-4" id="example-4"></a>

```
Set-BluGenieAuditProcessPol -Status Disable
```

```
This will disable Auditing for Process Creation and Process Exits
```

### PARAMETERS <a href="#parameters" id="parameters"></a>

#### ReturnObject <a href="#returnobject" id="returnobject"></a>

```
-ReturnObject [<SwitchParameter>]
   Return information as an Object.
   By default the data is returned as a Hash Table
   
   <Type>SwitchParameter<Type>
   
   Required?                    false
   Position?                    1
   Default value                False
   Accept pipeline input?       false
   Accept wildcard characters?  false
```

#### Status <a href="#status" id="status"></a>

```
-Status <String>
   Set the Prefetch process status.
   The acceptable values for this parameter are:
   
   - Enable = (Default) : Enable Audit Process Tracking
   - Disable            : Disable Audit Process Tracking
   
   If no value is specified, or if the parameter is omitted, the default value is (Enable).
   
   <Type>ValidateSet<Type>
   <ValidateSet>Enable,Disable<ValidateSet>
   
   Required?                    false
   Position?                    2
   Default value                Enable
   Accept pipeline input?       false
   Accept wildcard characters?  false
```

#### ViewOnly <a href="#viewonly" id="viewonly"></a>

```
-ViewOnly [<SwitchParameter>]
   View the current settings only.  Do not process an update.
   By default the data is returned as a Hash Table
   
   <Type>SwitchParameter<Type>
   
   Required?                    false
   Position?                    3
   Default value                False
   Accept pipeline input?       false
   Accept wildcard characters?  false
```

#### Walkthrough <a href="#walkthrough" id="walkthrough"></a>

```
-Walkthrough [<SwitchParameter>]
   
   Required?                    false
   Position?                    4
   Default value                False
   Accept pipeline input?       false
   Accept wildcard characters?  false
```

#### CommonParameters <a href="#commonparameters" id="commonparameters"></a>

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about\_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
