mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"schemaVersion": "1.0",
|
|
"name": "Registry check",
|
|
"version": "1.0.0",
|
|
"rules": [
|
|
{
|
|
"id": "ComputerNameRule",
|
|
"itemType": "definition",
|
|
"target": {
|
|
"type": "Server",
|
|
"platform": "Windows",
|
|
"engineEdition": "OnPremises",
|
|
"version": "[11.0,)"
|
|
},
|
|
"displayName": "Computer name",
|
|
"description": "Computer name can't be empty.",
|
|
"message": "Computer name in HKEY_LOCAL_MACHINE:SYSTEM\CurrentControlSet cannot be empty",
|
|
"level": "Warning",
|
|
"condition": "@ComputerName",
|
|
"probes": [
|
|
"ComputerName"
|
|
]
|
|
},
|
|
{
|
|
"id": ["DefaultRuleset"],
|
|
"itemType": "override",
|
|
"enabled": false
|
|
}
|
|
],
|
|
"probes": {
|
|
"ComputerName": [
|
|
{
|
|
"type": "Registry",
|
|
"target": {
|
|
"type": "Server",
|
|
"platform": "Windows",
|
|
"engineEdition": "OnPremises",
|
|
"version": "[11.0,)"
|
|
},
|
|
"implementation": {
|
|
"query": {
|
|
"HKEY_LOCAL_MACHINE": {
|
|
"SYSTEM\\CurrentControlSet\\Control\\ComputerName\\ComputerName": [
|
|
"ComputerName"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|