Comments
Sort by recent activity
I have had the same issue; I have run the options AI said to try which included deleting the settings file and recreating them but still does not work The following power shell script confirms my settings are ok # Check if SSMS 22 settings are initialized
$ssmsSettingsPath = "$env:APPDATA\Microsoft\SQL Server Management Studio\22.0"
Write-Host "Checking SSMS 22 settings at: $ssmsSettingsPath"
if (Test-Path $ssmsSettingsPath) {
$files = Get-ChildItem -Path $ssmsSettingsPath -File
if ($files.Count -gt 0) {
Write-Host "✅ SSMS 22 settings folder exists and contains files. Import Settings likely completed."
} else {
Write-Host "⚠️ SSMS 22 settings folder exists but is empty. Import Settings may not be completed."
}
} else {
Write-Host "❌ SSMS 22 settings folder does not exist. Import Settings has not been run."
} / comments
I have had the same issue; I have run the options AI said to try which included deleting the settings file and recreating them but still does not workThe following power shell script confirms my se...