The Point

Skip a naming standard and you don’t get “no standard” — you get one anyway: an accidental, undocumented one, invented server by server, that quietly makes audits harder and growth messier.

Context

Walk into any organization past a handful of servers and you’ll find one of two things: a naming convention nobody questions, or a graveyard of SERVER2, NEWSQL, test-final-v2, DONOTDELETE-backup. There’s no third option.

Here’s why that convention matters more than it looks — for passing an audit, and for staying sane as the environment keeps changing — followed by the full standard, unedited, as a working reference.

Naming Conventions as a Regulation and Governance Control

The analogy

Every shipping container on earth carries an ISO 6346 code — four letters, six digits, a check digit. A customs officer in Rotterdam can read MSCU 123456 7 and know the owner, the category, the serial, all before the doors open. Nobody re-negotiates the format per port. A hostname is that code for your infrastructure: ABC-HO-P-DCV-01 tells an auditor the client, the site, the environment, and the role before they’ve opened a single ticket.

Why it exists

Every framework that audits IT — SOC 2, ISO 27001, PCI-DSS, HIPAA — is really asking one question: can you prove what a system is, who owns it, and what it does, without phoning the one engineer who remembers? A naming convention answers that from the identifier alone, so the answer can’t drift out of date the way a wiki page can.

What that buys you, concretely:

  • Asset inventory, at a glance. ABC-HO-P-DCV-01 says client, site, environment, role — no ticket lookup required. That’s the exact evidence a SOC 2 or ISO 27001 asset control asks for.
  • Access mapping without a spreadsheet. “Who has admin on domain controllers” is answerable by grepping for DC in a hostname list, not maintaining a separate cross-reference that goes stale.
  • Production/non-production, proven. Frameworks want evidence that prod and test are segregated. An environment code (P, T, D, DR — Section 5) in the name is that evidence — no extra documentation needed.
  • Change records that don’t need footnotes. A change ticket referencing ABC-HO-SQV-01 is unambiguous years later, after the engineer who made it has left. Ambiguous names are how “we changed the wrong server” incidents start.
  • A standard that ages in public. A versioned changelog (Section 9) is itself proof of governance maturity — it shows the convention is maintained, not remembered.

The gotcha

A naming convention is only a control if it’s enforced, not just written down. A standard nobody follows is worse than no standard — it hands an auditor false confidence right up until the environment doesn’t match the document. That’s why exceptions (a department that needs a 4th digit, say) have to be logged in the client record (Section 7), not quietly made — an unwritten exception is how the standard rots.

Naming Conventions for Managing Dynamic Environments

The analogy

Tokyo didn’t plan its street grid — it grew, block by block, for centuries, which is why addresses there are notoriously unfindable even for locals. Manhattan, by contrast, laid a numbered grid before most of the city existed, so a new resident can find 42nd and 5th on day one with zero local knowledge. A naming convention is that choice, made in advance. ABC-AZ-APC-01 is Manhattan: client, cloud, role, instance, readable cold. A server named after whatever the engineer was thinking that day is Tokyo.

Why it exists

Real environments never hold still — new sites, a prod/test split that didn’t exist last quarter, department counts nobody sized for. A convention has to absorb that growth without a rename project every time. That’s why this one runs on a strict 15-character budget (the Windows hostname ceiling) built from optional, additive pieces:

  • The V/C hosting suffix only shows up once virtualization or cloud exists — nothing already deployed needs renaming.
  • The environment identifier (Section 5) is opt-in per client — a single-site SMB never pays for characters it doesn’t use.
  • Sequentials escalate on a documented trigger (2 digits → 3 past nine servers; 3 → 4 past 999 devices) instead of a rebuild when growth outpaces the plan.

That’s the actual skill here: don’t predict the future state, define what’s allowed to flex and lock down everything else, so growth gets absorbed by extension instead of exception.

And because the person reading a name is rarely the person who wrote it — a new hire, an auditor, an outsourced NOC tech — legibility has to survive the handoff. ABC-AZ-APC-01 reads the same to all of them: client ABC, Azure, cloud app server, instance one. No lookup table, no Slack thread, no message to someone who left the company two years ago.

The gotcha

Flexible only works if it’s bounded — otherwise “dynamic” is just a nicer word for “chaotic.” Department codes can be extended, but only if it’s logged (Section 4). DR gets a character-count warning (Section 5) because it’s 2 characters where every other environment code is 1, and could quietly blow the budget if nobody checks. Multi-forest setups are explicitly told not to encode forest membership in the hostname — because that one convenience burns the character budget and creates rename churn every time someone changes forests. The rule isn’t “be flexible everywhere.” It’s “flex exactly here, and nowhere else.”

The Full Standard: Infrastructure Naming Convention Standards v1.3

Below is the complete, unedited naming convention standard referenced above, reproduced in full as a working reference.

Scope: All ClientsVersion: 1.3 • Date: 23-06-2026 • Author: VB • Status: Final

[i] INFO: This document covers naming conventions only. For IP address assignment and subnet layout see IP Address Standards v1.0.

1. Server Naming Convention

Format

CLI-SI-ROLE[T]-##

Structure Breakdown

ComponentLengthDescriptionExample
CLI3Client acronym (from ConnectWise)ABC
SI2Site/location codeHO
ROLE2Server primary roleDC
[T]0–1Optional hosting type suffixV or C
##2Sequential number (default)01

[i] INFO: Total length must not exceed 15 characters — Windows hostname hard limit. With 2-char site codes the standard format lands at 12–13 chars, leaving room for the optional environment identifier or a 3-digit sequential when required.

[i] INFO: Site codes are 2 characters for all standard deployments. A trailing digit is only added when a client has multiple sites of the same type (e.g. two branches → B1, B2). Do not pad single sites with 01 — it wastes characters for zero gain.

[i] INFO: Server sequential default is 2 digits (01). Use 3 digits (001) only when a server role group genuinely exceeds 9 instances — document the exception in the client record.

Site Codes

SiteCodeNotes
Head OfficeHO
Branch / Remote OfficeBOSingle branch or unnamed remote office
Multiple branchesB1, B2Add digit only when needed
Data Centre (on-prem)DTUse DT not DC — avoids conflict with Domain Controller role code
Lab / Learning EnvironmentLBInternal lab, test forest, learning infrastructure
AzureAZ
AWSAW
GCPGC
DR SiteDR

[!] NOTE: BR (Branch) is retired as of v1.1 — use BO (Branch/remote Office) for clarity. Update any existing BR hostnames at next scheduled rename window and document in the client record.

Hosting Type Suffix

Appended directly after the role code — no separator.

SuffixMeaningExample
(none)Physical / bare-metalABC-HO-DC-01
VVM on-prem (Hyper-V, VMware, Proxmox)ABC-HO-DCV-01
CCloud hosted (Azure, AWS, GCP)ABC-AZ-DCC-01

Server Name Examples

HostnameCharsDecoded
ABC-HO-DC-0112 ✔ABC → Head Office → Physical DC → #1
ABC-HO-DCV-0113 ✔ABC → Head Office → VM DC → #1
ABC-AZ-DCC-0113 ✔ABC → Azure → Cloud DC → #1
ABC-HO-SQV-0113 ✔ABC → Head Office → VM SQL → #1
ABC-B1-FSV-0113 ✔ABC → Branch 1 → VM File Server → #1
ABC-LB-DCV-0313 ✔ABC → Lab → VM DC → #3 (e.g. second-forest lab DC)
ABC-HO-P-DCV-0114 ✔ABC → Head Office → Prod → VM DC → #1 (env identifier in use)

2. End-User Device Naming Convention

Format

CLI-SI-DEPT-X###

Where X is the device type letter (W or L) and ### is the 3-digit sequential. No hyphen between device type and sequential.

Structure Breakdown

ComponentLengthDescriptionExample
CLI3Client acronymABC
SI2Site code (same codes as servers)HO
DEPT2–3Department codeFIN
X1Device type: W = workstation/desktop, L = laptop — mandatoryW
###3Sequential number001

[i] INFO: The device type letter (W/L) is mandatory — it appears in every end-user hostname without exception. This keeps the character immediately before the 3-digit sequence always an alpha device code, so names stay unambiguous regardless of department code length. Regex: ^([A-Z]{3})-([A-Z]{2})-([A-Z]{2,3})-([WL])(\d{3})$

[i] INFO: End-user device sequential is 3 digits by default (001). Workstation counts routinely reach hundreds in real deployments. Use 4 digits (0001) only when a department group exceeds 999 devices — document the exception in the client record.

[i] INFO: No hyphen between device type and sequential. The format is DEPT-W001, not DEPT-W-001. Removing this one hyphen gives the character budget headroom for both 3-char department codes and the mandatory device type letter simultaneously.

[!] WARNING: Do not use WK or LP — use single-char W and L only.

End-User Device Name Examples

Device NameCharsDecoded
ABC-HO-IT-W00114 ✔ABC → Head Office → IT → Workstation → #1
ABC-HO-IT-L00114 ✔ABC → Head Office → IT → Laptop → #1
ABC-HO-HR-W00114 ✔ABC → Head Office → HR → Workstation → #1
ABC-HO-FIN-W00115 ✔ABC → Head Office → Finance → Workstation → #1
ABC-HO-FIN-L00115 ✔ABC → Head Office → Finance → Laptop → #1
ABC-HO-OPS-W00115 ✔ABC → Head Office → Operations → Workstation → #1
ABC-HO-MGT-L00115 ✔ABC → Head Office → Management → Laptop → #1
ABC-BO-OPS-W00115 ✔ABC → Branch Office → Operations → Workstation → #1

[i] INFO: Every combination of 3-char CLI + 2-char SI + 2-or-3-char DEPT + device letter + 3-digit sequential fits within 15 characters with no exceptions.

3. Role Code Reference

Infrastructure & Directory

CodeRoleNotes
DCDomain Controller
CACertificate AuthorityADCS / PKI server
NPNetwork Policy ServerNPS / RADIUS
VPVPN Gateway / ServerOn-prem VPN endpoint
MGManagement ServerSCCM, RMM, monitoring agents
AUUpdate ServerWSUS / patch management
BKBackup ServerDedicated backup role
MOMonitoring ServerDedicated monitoring / alerting (Zabbix, PRTG, Grafana)

Hypervisors (Physical Hosts)

CodeRoleNotes
EXVMware ESXi HostPhysical host running ESXi / vSphere
HVHyper-V HostPhysical host running Hyper-V

[i] INFO: Hypervisor hosts are always physical — they never carry a V or C suffix. VMs running on top of them use their own role codes with the V suffix (e.g. DCV, SQV).

Remote Access & Desktop Services

CodeRoleNotes
RDRemote Desktop ServicesMicrosoft RDS / RDSH
TSTerminal ServerDedicated Windows Terminal Server
PLParallels RAS ServerParallels Remote Application Server (broker/gateway)
PTParallels Terminal ServerParallels published desktop / app host

[i] INFO: Use RD for Microsoft RDS roles. Use TS for standalone Terminal Servers not part of an RDS farm. Use PL for the Parallels RAS broker/gateway and PT for Parallels session hosts.

File, Application & Data

CodeRoleNotes
FSFile Server
SQSQL Server
APApplication ServerGeneric app hosting
WSWeb ServerIIS / Apache / Nginx
MXMail ServerOn-prem Exchange / Postfix
PRPrint Server

[i] INFO: Role code reflects the primary role only. If SQL is installed on a server, it is SQ — not AP.

4. Department Code Reference

CodeDepartment
ITInformation Technology
HRHuman Resources
CSCustomer Service / Support
RDResearch & Development
FINFinance / Accounts
OPSOperations
MGTManagement / Directors
SLSSales
MKTMarketing
LOGLogistics / Warehouse
LEGLegal / Compliance
ENGEngineering / Technical

[i] INFO: All department codes work with the device format — the v1.3 format eliminates any character budget distinction between 2-char and 3-char codes. Add client-specific codes as needed and document in the client’s ITGlue record.

5. Environment Identifier — Optional Per-Client

[i] INFO: Only apply this for clients who run multiple environments (Prod + Test, Prod + DR, etc.). Do not add it to standard SMB clients — it wastes characters for zero gain.

When to Use

Apply when a client has any of:

  • Production + Test/Dev servers
  • DR site with mirrored infrastructure
  • Azure + On-prem split with separate AD

Format with Environment (servers only)

CLI-SI-ENV-ROLE[T]-##

Environment Codes

CodeMeaning
PProduction
TTest / UAT
DDevelopment
DRDisaster Recovery

Examples

ABC-HO-P-DCV-01     → 14 chars ✔  Production VM DC, Head Office
ABC-HO-T-APV-01     → 14 chars ✔  Test VM App Server, Head Office
ABC-DR-P-DCV-01     → 14 chars ✔  DR Site Production VM DC

[!] WARNING: With 2-char site codes and 2-digit sequential, adding ENV brings standard server names to 14 chars — 1 under the limit. DR as an env code adds 2 chars; verify carefully (ABC-DR-DR-DCV-01 = 15 ✔ at limit).

[!] WARNING: Do not encode forest or environment membership in end-user device hostnames. For multi-forest environments, use sequential numbering that continues across the estate and document the forest mapping in ITGlue / ConnectWise. Embedding a forest identifier burns the remaining character budget and creates rename churn when users move between environments.

6. Full Example — Client Layout

Client: ABC Manufacturing Sites: Head Office (HO), Branch Office (BO), Azure (AZ)

Servers

HostnameCharsTypeRoleIP
ABC-HO-DC-0112 ✔PhysicalDomain Controller #1192.168.10.50
ABC-HO-DC-0212 ✔PhysicalDomain Controller #2192.168.10.51
ABC-HO-EX-0112 ✔PhysicalESXi Host192.168.10.30
ABC-HO-FSV-0113 ✔VMFile Server192.168.10.52
ABC-HO-SQV-0113 ✔VMSQL Server192.168.10.53
ABC-HO-RDV-0113 ✔VMRDS Server192.168.10.54
ABC-HO-CAV-0113 ✔VMCertificate Authority192.168.10.55
ABC-HO-BKV-0113 ✔VMBackup Server192.168.10.56
ABC-AZ-APC-0113 ✔CloudAzure App Server10.0.0.4

Workstations & Laptops

Device NameCharsDeptDevice TypeUser
ABC-HO-IT-W00114 ✔ITWorkstationB. Patel
ABC-HO-IT-L00114 ✔ITLaptopA. Nguyen
ABC-HO-HR-W00114 ✔HRWorkstationC. Williams
ABC-HO-FIN-W00115 ✔FinanceWorkstationJ. Smith
ABC-HO-FIN-L00115 ✔FinanceLaptopA. Jones
ABC-HO-MGT-L00115 ✔ManagementLaptopCEO
ABC-BO-OPS-W00115 ✔OperationsWorkstationT. Chen

7. Compliance Rules

  • 15-char hard limit — Windows hostname limit. Count before committing.
  • Role = primary role only — do not reflect secondary services in the name
  • Hosting type suffix is mandatory for serversV or C must be present for VMs and cloud servers
  • Hypervisor hosts never carry a suffixEX and HV are always physical; no V or C
  • Server sequential default is 2 digits (01) — use 3 digits only when a server role group exceeds 9 instances
  • End-user device sequential is always 3 digits (001) — workstation counts routinely reach hundreds; 4 digits (0001) by exception only when a dept group exceeds 999 devices
  • Device type (W/L) is mandatory in all end-user hostnames — never omit it
  • No hyphen between device type and sequential — format is DEPT-W001, never DEPT-W-001
  • Do not use WK or LP — single-char W and L only
  • All uppercase — hostnames are case-insensitive but uppercase is the standard
  • No spaces, underscores, or special characters — hyphens only as separators
  • Do not use DC as a site code — use DT (Data Centre) to avoid conflict with the DC role code
  • Use BO not BRBR is retired as of v1.1
  • Use LB for lab and learning environments — applies to test forests, internal learning infra, and sandbox DCs
  • Multi-forest environments — continue sequential numbering across the estate; document forest mapping in ITGlue. Do not encode forest membership in the hostname.
  • One document per client — do not duplicate; update with version bumps

8. Character Count Reference

Use this to verify names before committing.

Standard Server (no env, 2-digit sequential)

A B C - H O - D C V - 0 1
1 2 3 4 5 6 7 8 9 0 1 2 3   = 13 chars ✔

Server with Environment Identifier

A B C - H O - P - D C V - 0 1
1 2 3 4 5 6 7 8 9 0 1 2 3 4   = 14 chars ✔

End-User Device — 2-char dept (3-digit sequential)

A B C - H O - I T - W 0 0 1
1 2 3 4 5 6 7 8 9 0 1 2 3 4   = 14 chars ✔

End-User Device — 3-char dept (3-digit sequential)

A B C - H O - F I N - W 0 0 1
1 2 3 4 5 6 7 8 9 0 1 2 3 4 5   = 15 chars ✔ (at limit)

Quick Char Budget

SegmentChars used
CLI + hyphen4
SI + hyphen3
Servers
ROLE (2) + [T] (0–1) + hyphen3–4
## (sequential)2
Standard server total12–13
+ ENV + hyphen (optional)+2
Server with env identifier14
End-user devices
DEPT (2–3) + hyphen3–4
X (device type letter, mandatory)1
### (sequential, no preceding hyphen)3
Device total — 2-char dept14
Device total — 3-char dept15 ← at limit
4-digit sequential by exception (>999 devices)+1 — only viable with 2-char dept

9. Changelog

VersionDateChange
1.001-04-2026Split from Infrastructure Naming & IP Standards v1.3. Naming convention content only. IP address section moved to IP Address Standards v1.0. Site code DC clarified — use DT for Data Centre to avoid role code conflict. Hypervisor suffix rule added to compliance section.
1.123-06-2026Server sequential default changed to 2-digit (01). End-user device format introduced optional device type (W/L). Site code BR retired → BO. Site code LB added for lab/learning environments. New role codes: CA, NP, VP, MO. Multi-forest guidance added.
1.223-06-2026End-user device sequential changed to 3-digit (001) — workstation counts reach hundreds. Device type in hostname restricted to 2-char dept codes only under previous format (now superseded by v1.3).
1.323-06-2026End-user device format revised to CLI-SI-DEPT-X### (no hyphen between device type and sequential). Removes the hyphen before the sequential number, freeing one character and eliminating the 2-char dept code restriction entirely. Device type (W/L) is now mandatory in all end-user hostnames — no exceptions, no two-tier behaviour. Every dept code (2-char and 3-char) works consistently within budget. All examples, character count reference, and compliance rules updated.

Takeaway

A naming convention is one of the few controls in an IT environment that’s simultaneously a governance artifact, an operational tool, and documentation that writes itself into every asset it touches. It costs almost nothing to enforce once adopted, and it’s disproportionately expensive to retrofit once an environment has grown without one. Whether the driver is an upcoming audit or simply the next branch office, the principle is the same: define the structure once, define exactly where it’s allowed to flex, and let every future name fall out of the rule instead of a judgment call.

🤝 Connect with Me

Found this useful? I write about PowerShell, Windows infrastructure, and enterprise automation.