# Protect Section

The `Protect-UDSection` cmdlet hides it's content if a user does not have the specified roles.

```powershell
Protect-UDSection -Role @("Administrator") -Content {
   New-UDTypography -Text 'Only Administrators see this'
}
```
