注冊表批量清理sqlserver
發(fā)布時間:2025/3/21 10:48:13 作者:Admin 閱讀:4
廣告:
Get-ChildItem -Path "HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server" | ForEach-Object { if (!(Test-Path -Path "$($_.Name)\MSSQLServer")) { Remove-Item -Path $_.Name -Recurse } }
使用PowerShell命令
廣告:
相關(guān)文章