# Get computer name of vms in a VMSS

```powershell
az vmss list-instances -n $VMSS_NAME -g $RESOURCE_GROUP | jq '.[].osProfile.computerName'
```