# Custom Field
## Date
```PowerShell
# Set timestamp for when the password was last updated (ISO DateTime format in UTC)
$timestamp = (Get-Date).ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ss")
Ninja-Property-Set localAdminPasswordLastUpdated $timestamp
Write-Host "Date stored in NinjaOne custom field 'localAdminPasswordLastUpdated': $timestamp UTC" -ForegroundColor Green
```