Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update-DbaInstance, fix documentation #9559

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions public/Update-DbaInstance.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function Update-DbaInstance {
Use -Version to limit upgrade to a certain Major version of SQL Server.

.PARAMETER KB
Install a specific update or list of updates. Can be a number of a string KBXXXXXXX.
Install a specific update or list of updates. Can be a number or a string KBXXXXXXX.

.PARAMETER Version
A target version of the installation you want to reach. If not specified, a latest available version would be used by default.
Expand Down Expand Up @@ -136,7 +136,7 @@ function Update-DbaInstance {
.EXAMPLE
PS C:\> Update-DbaInstance -ComputerName SQL1, SQL2 -Restart -Path \\network\share -Confirm:$false

Updates all applicable SQL Server installations on SQL1 and SQL2 with the most recent patch.
Updates all applicable SQL Server installations on SQL1 and SQL2 with the most recent patch (that has at least a "CU" flag).
It will install latest ServicePack, restart the computers, install latest Cumulative Update, and finally restart the computer once again.
Binary files for the update will be searched among all files and folders recursively in \\network\share.
Does not prompt for confirmation.
Expand Down
Loading