Activity overview
Latest activity by Simon Richardson
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...
Oddity / issue with SQLPrompt in conjunction with Powertoys Fancy zones
Hi;So I love using fancy zones within the microsoft powertoys app, unfortunaly when I dock SSMS to a preset zone, all of the SQL prompt tool tips and popups always load as full maximised and cover...