diff --git a/Add-DbaAgDatabase.html b/Add-DbaAgDatabase.html index d2258758..ccb27942 100644 --- a/Add-DbaAgDatabase.html +++ b/Add-DbaAgDatabase.html @@ -517,13 +517,15 @@

Description

  • Step 5: Wait for the database to finish joining the Availability Group on the secondary replicas.
  • Use Test-DbaAvailabilityGroup with -AddDatabase to test if all prerequisites are met.

    -

    If you have special requirements for the setup for the database at the replicas, -perform the backup and restore part with Backup-DbaDatabase and Restore-DbaDatabase in advance. +

    If you have special requirements for the setup for the database at the replicas,
    +perform the backup and restore part with Backup-DbaDatabase and Restore-DbaDatabase in advance.
    Please make sure that the last log backup has been restored before running Add-DbaAgDatabase.

    Syntax

    Add-DbaAgDatabase
         [-SqlInstance] <DbaInstanceParameter>
    -    [-SqlCredential <PSCredential>] -AvailabilityGroup <String> -Database <String[]>
    +    [-SqlCredential <PSCredential>]
    +    -AvailabilityGroup <String>
    +    -Database <String[]>
         [-Secondary <DbaInstanceParameter[]>]
         [-SecondarySqlCredential <PSCredential>]
         [-SeedingMode <String>]
    @@ -538,7 +540,8 @@ 

    Syntax

    Add-DbaAgDatabase [-AvailabilityGroup] <String> [-Secondary <DbaInstanceParameter[]>] - [-SecondarySqlCredential <PSCredential>] -InputObject <Database[]> + [-SecondarySqlCredential <PSCredential>] + -InputObject <Database[]> [-SeedingMode <String>] [-SharedPath <String>] [-UseLastBackup] @@ -586,7 +589,7 @@
    Example: 5

    Adds db1 to ag1 on sql2017a and sql2017b. Uses compression and three files while taking the backups.

    Required Parameters

    -SqlInstance
    -

    The primary replica of the Availability Group. Server version must be SQL Server version 2012 or higher.

    +

    The primary replica of the Availability Group. Server version must be SQL Server version 2012 or higher.

    @@ -614,7 +617,7 @@
    -SqlInstance
    -AvailabilityGroup
    -

    The name of the Availability Group where the databases will be added.

    +

    The name of the Availability Group where the databases will be added.

    @@ -642,7 +645,7 @@
    -AvailabilityGroup
    -Database
    -

    The database(s) to add.

    +

    The database(s) to add.

    @@ -670,7 +673,7 @@
    -Database
    -InputObject
    -

    Enables piping from Get-DbaDatabase, Get-DbaDbSharePoint and more.

    +

    Enables piping from Get-DbaDatabase, Get-DbaDbSharePoint and more.

    @@ -699,8 +702,8 @@
    -InputObject

    Optional Parameters

    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -729,7 +732,7 @@
    -SqlCredential
    -Secondary
    -

    Not required - the command will figure this out. But use this parameter if secondary replicas listen on a non default port. +

    Not required - the command will figure this out. But use this parameter if secondary replicas listen on a non default port.
    This parameter can be used to only add the databases on specific secondary replicas.

    @@ -758,8 +761,8 @@
    -Secondary
    -SecondarySqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -788,9 +791,9 @@
    -SecondarySqlCredential
    -SeedingMode
    -

    Specifies how the secondary replica will be initially seeded. -Automatic enables direct seeding. This method will seed the secondary replica over the network. This method does not require you to backup and restore a copy of the primary database on the replica. -Manual uses full and log backup to initially transfer the data to the secondary replica. The command skips this if the database is found in restoring state at the secondary replica. +

    Specifies how the secondary replica will be initially seeded.
    +Automatic enables direct seeding. This method will seed the secondary replica over the network. This method does not require you to backup and restore a copy of the primary database on the replica.
    +Manual uses full and log backup to initially transfer the data to the secondary replica. The command skips this if the database is found in restoring state at the secondary replica.
    If not specified, the setting from the availability group replica will be used. Otherwise the setting will be updated.

    @@ -823,8 +826,8 @@
    -SeedingMode
    -SharedPath
    -

    The network share where the backups will be backed up and restored from. -Each SQL Server service account must have access to this share. +

    The network share where the backups will be backed up and restored from.
    +Each SQL Server service account must have access to this share.
    NOTE: If a backup / restore is performed, the backups will be left in tact on the network share.

    @@ -909,8 +912,8 @@
    -AdvancedBackupParams
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Add-DbaAgListener.html b/Add-DbaAgListener.html index 427e4657..3b02da4f 100644 --- a/Add-DbaAgListener.html +++ b/Add-DbaAgListener.html @@ -608,7 +608,7 @@
    -AvailabilityGroup
    -Name
    -

    The name of the listener. If one is not specified, the Availability Group name will be used. +

    The name of the listener. If one is not specified, the Availability Group name will be used.
    Note that Name cannot be used with Multiple Ags.

    @@ -833,8 +833,8 @@
    -InputObject
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Add-DbaAgReplica.html b/Add-DbaAgReplica.html index caee0532..a077c2fd 100644 --- a/Add-DbaAgReplica.html +++ b/Add-DbaAgReplica.html @@ -533,7 +533,7 @@
    Example: 3

    Adds sql2017b to the SharePoint availability group on sql2017a with a custom endpoint URL.

    Required Parameters

    -SqlInstance
    -

    The target SQL Server instance or instances. Server version must be SQL Server version 2012 or higher.

    +

    The target SQL Server instance or instances. Server version must be SQL Server version 2012 or higher.

    @@ -561,7 +561,7 @@
    -SqlInstance
    -InputObject
    -

    Enables piping from Get-DbaAvailabilityGroup.

    +

    Enables piping from Get-DbaAvailabilityGroup.

    @@ -590,8 +590,8 @@
    -InputObject

    Optional Parameters

    -SqlCredential
    -

    Login to the target instances using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instances using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -620,7 +620,7 @@
    -SqlCredential
    -Name
    -

    The name of the replica. Defaults to the SQL Server instance name. +

    The name of the replica. Defaults to the SQL Server instance name.
    This parameter is only supported if the replica is added to just one instance.

    @@ -649,10 +649,10 @@
    -Name
    -ClusterType
    -

    Cluster type of the Availability Group. Only supported in SQL Server 2017 and above. -Options include: Wsfc, External or None. -Defaults to Wsfc (Windows Server Failover Cluster). -The default can be changed with: +

    Cluster type of the Availability Group. Only supported in SQL Server 2017 and above.
    +Options include: Wsfc, External or None.
    +Defaults to Wsfc (Windows Server Failover Cluster).
    +The default can be changed with:
    Set-DbatoolsConfig -FullName 'AvailabilityGroups.Default.ClusterType' -Value '...' -Passthru | Register-DbatoolsConfig

    @@ -809,10 +809,10 @@
    -ConnectionModeInPrimaryRole
    -ConnectionModeInSecondaryRole
    -

    Specifies the connection modes of an Availability Replica in secondary role. -Options include: AllowNoConnections, AllowReadIntentConnectionsOnly, AllowAllConnections -Defaults to AllowNoConnections. -The default can be changed with: +

    Specifies the connection modes of an Availability Replica in secondary role.
    +Options include: AllowNoConnections, AllowReadIntentConnectionsOnly, AllowAllConnections
    +Defaults to AllowNoConnections.
    +The default can be changed with:
    Set-DbatoolsConfig -FullName 'AvailabilityGroups.Default.ConnectionModeInSecondaryRole' -Value '...' -Passthru | Register-DbatoolsConfig

    @@ -845,8 +845,8 @@
    -ConnectionModeInSecondaryRole
    -SeedingMode
    -

    Specifies how the secondary replica will be initially seeded. -Automatic enables direct seeding. This method will seed the secondary replica over the network. This method does not require you to backup and restore a copy of the primary database on the replica. +

    Specifies how the secondary replica will be initially seeded.
    +Automatic enables direct seeding. This method will seed the secondary replica over the network. This method does not require you to backup and restore a copy of the primary database on the replica.
    Manual requires you to create a backup of the database on the primary replica and manually restore that backup on the secondary replica.

    @@ -879,7 +879,7 @@
    -SeedingMode
    -Endpoint
    -

    By default, this command will attempt to find a DatabaseMirror endpoint. If one does not exist, it will create it. +

    By default, this command will attempt to find a DatabaseMirror endpoint. If one does not exist, it will create it.
    If an endpoint must be created, the name "hadr_endpoint" will be used. If an alternative is preferred, use Endpoint.

    @@ -908,10 +908,10 @@
    -Endpoint
    -EndpointUrl
    -

    By default, the property Fqdn of Get-DbaEndpoint is used as EndpointUrl. -Use EndpointUrl if a different URL is required due to special network configurations. -EndpointUrl has to be an array of strings in format 'TCP://system-address:port', one entry for every instance. -See details at: https://docs.microsoft.com/en-us/sql/database-engine/availability-groups/windows/specify-endpoint-url-adding-or-modifying-availability-replica +

    By default, the property Fqdn of Get-DbaEndpoint is used as EndpointUrl.
    +Use EndpointUrl if a different URL is required due to special network configurations.
    +EndpointUrl has to be an array of strings in format 'TCP://system-address:port', one entry for every instance.
    +See details at: https://docs.microsoft.com/en-us/sql/database-engine/availability-groups/windows/specify-endpoint-url-adding-or-modifying-availability-replica
    If an endpoint must be created, EndpointUrl will be used for configuration, if system-address is an ipv4 address.

    @@ -968,7 +968,7 @@
    -Passthru
    -ReadOnlyRoutingList
    -

    Sets the read only routing ordered list of replica server names to use when redirecting read-only connections through this availability replica. +

    Sets the read only routing ordered list of replica server names to use when redirecting read-only connections through this availability replica.
    This parameter is only supported if the replica is added to just one instance.

    @@ -997,7 +997,7 @@
    -ReadOnlyRoutingList
    -ReadonlyRoutingConnectionUrl
    -

    Sets the read only routing connection url for the availability replica. +

    Sets the read only routing connection url for the availability replica.
    This parameter is only supported if the replica is added to just one instance.

    @@ -1026,7 +1026,7 @@
    -ReadonlyRoutingConnectionUrl
    -Certificate
    -

    Specifies that the endpoint is to authenticate the connection using the certificate specified by certificate_name to establish identity for authorization. +

    Specifies that the endpoint is to authenticate the connection using the certificate specified by certificate_name to establish identity for authorization.
    The far endpoint must have a certificate with the public key matching the private key of the specified certificate.

    @@ -1055,7 +1055,7 @@
    -Certificate
    -ConfigureXESession
    -

    Configure the AlwaysOn_health extended events session to start automatically as the SSMS wizard would do. +

    Configure the AlwaysOn_health extended events session to start automatically as the SSMS wizard would do.
    https://docs.microsoft.com/en-us/sql/database-engine/availability-groups/windows/always-on-extended-events#BKMK_alwayson_health

    @@ -1112,8 +1112,8 @@
    -SessionTimeout
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Add-DbaComputerCertificate.html b/Add-DbaComputerCertificate.html index 5e64d8e4..364f3073 100644 --- a/Add-DbaComputerCertificate.html +++ b/Add-DbaComputerCertificate.html @@ -721,18 +721,18 @@
    -Folder
    -Flag
    -

    Defines where and how to import the private key of an X.509 certificate. -Defaults to: Exportable, PersistKeySet -EphemeralKeySet -The key associated with a PFX file is created in memory and not persisted on disk when importing a certificate. -Exportable -Imported keys are marked as exportable. -NonExportable -Expliictly mark keys as nonexportable. -PersistKeySet -The key associated with a PFX file is persisted when importing a certificate. -UserProtected -Notify the user through a dialog box or other method that the key is accessed. The Cryptographic Service Provider (CSP) in use defines the precise behavior. NOTE: This can only be used when you +

    Defines where and how to import the private key of an X.509 certificate.
    +Defaults to: Exportable, PersistKeySet
    +EphemeralKeySet
    +The key associated with a PFX file is created in memory and not persisted on disk when importing a certificate.
    +Exportable
    +Imported keys are marked as exportable.
    +NonExportable
    +Expliictly mark keys as nonexportable.
    +PersistKeySet
    +The key associated with a PFX file is persisted when importing a certificate.
    +UserProtected
    +Notify the user through a dialog box or other method that the key is accessed. The Cryptographic Service Provider (CSP) in use defines the precise behavior. NOTE: This can only be used when you
    add a certificate to localhost, as it causes a prompt to appear.

    @@ -765,8 +765,8 @@
    -Flag
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Add-DbaDbMirrorMonitor.html b/Add-DbaDbMirrorMonitor.html index 1bfd0d62..808e9290 100644 --- a/Add-DbaDbMirrorMonitor.html +++ b/Add-DbaDbMirrorMonitor.html @@ -508,7 +508,7 @@
    Example: 1

    Creates a database mirroring monitor job that periodically updates the mirroring status for every mirrored database on sql2008 and sql2012.

    Required Parameters

    -SqlInstance
    -

    The target SQL Server instance

    +

    The target SQL Server instance

    @@ -537,8 +537,8 @@
    -SqlInstance

    Optional Parameters

    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -567,8 +567,8 @@
    -SqlCredential
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Add-DbaDbRoleMember.html b/Add-DbaDbRoleMember.html index ef9be6c0..b1748f3d 100644 --- a/Add-DbaDbRoleMember.html +++ b/Add-DbaDbRoleMember.html @@ -529,7 +529,7 @@
    Example: 5

    Adds user1 in the database DEMODB on the server localhost to the roles db_datareader and db_datawriter

    Required Parameters

    -Member
    -

    The member(s) (user or role) to add to the Roles specified.

    +

    The member(s) (user or role) to add to the Roles specified.

    @@ -586,8 +586,8 @@
    -SqlInstance
    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -700,8 +700,8 @@
    -InputObject
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Add-DbaExtendedProperty.html b/Add-DbaExtendedProperty.html index 0afa12b5..59bf070f 100644 --- a/Add-DbaExtendedProperty.html +++ b/Add-DbaExtendedProperty.html @@ -489,33 +489,33 @@

    Synopsis

    Description

    Adds an extended property

    This command works out of the box with databases but you can add extended properties from several different types of objects, including:

    -

    Aggregate -Assembly -Column -Constraint -Contract -Database -Event Notification -Filegroup -Function -Index -Logical File Name -Message Type -Parameter -Partition Function -Partition Scheme -Procedure -Queue -Remote Service Binding -Route -Rule -Schema -Service -Synonym -Table -Trigger -Type -View +

    Aggregate
    +Assembly
    +Column
    +Constraint
    +Contract
    +Database
    +Event Notification
    +Filegroup
    +Function
    +Index
    +Logical File Name
    +Message Type
    +Parameter
    +Partition Function
    +Partition Scheme
    +Procedure
    +Queue
    +Remote Service Binding
    +Route
    +Rule
    +Schema
    +Service
    +Synonym
    +Table
    +Trigger
    +Type
    +View
    Xml Schema Collection

    Syntax

    Add-DbaExtendedProperty
    @@ -548,7 +548,7 @@ 
    Example: 3

    Creates an extended property named MyExtendedProperty for the mytable table in the mydb, with a value of "This is a test"

    Required Parameters

    -Name
    -

    The name of the extended property

    +

    The name of the extended property

    @@ -576,7 +576,7 @@
    -Name
    -Value
    -

    The value for the extended property

    +

    The value for the extended property

    @@ -633,8 +633,8 @@
    -SqlInstance
    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -719,8 +719,8 @@
    -InputObject
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Add-DbaPfDataCollectorCounter.html b/Add-DbaPfDataCollectorCounter.html index c5ae9b60..eb94d108 100644 --- a/Add-DbaPfDataCollectorCounter.html +++ b/Add-DbaPfDataCollectorCounter.html @@ -515,7 +515,7 @@
    Example: 2

    Allows you to select which Data Collector you'd like to add the counter '\LogicalDisk(*)\Avg. Disk Queue Length' on localhost and prompts for confirmation.

    Required Parameters

    -Counter
    -

    The Counter name. This must be in the form of '\Processor(_Total)% Processor Time'.

    +

    The Counter name. This must be in the form of '\Processor(_Total)% Processor Time'.

    @@ -572,7 +572,7 @@
    -ComputerName
    -Credential
    -

    Allows you to login to $ComputerName using alternative credentials. To use: +

    Allows you to login to $ComputerName using alternative credentials. To use:
    $cred = Get-Credential, then pass $cred object to the -Credential parameter.

    @@ -685,8 +685,8 @@
    -InputObject
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Add-DbaRegServer.html b/Add-DbaRegServer.html index b72fddd0..ca6ce7cc 100644 --- a/Add-DbaRegServer.html +++ b/Add-DbaRegServer.html @@ -487,7 +487,7 @@

    Add-DbaRegServer

    Synopsis

    Adds registered servers to SQL Server Central Management Server (CMS) or Local Server Groups

    Description

    -

    Adds registered servers to SQL Server Central Management Server (CMS) or Local Server Groups. If you need more flexibility, look into Import-DbaRegServer which +

    Adds registered servers to SQL Server Central Management Server (CMS) or Local Server Groups. If you need more flexibility, look into Import-DbaRegServer which
    accepts multiple kinds of input and allows you to add reg servers from different CMSes.

    Syntax

    Add-DbaRegServer
    @@ -563,8 +563,8 @@ 
    -SqlInstance
    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -677,7 +677,7 @@
    -Description
    -Group
    -

    Adds the registered server to a specific group. +

    Adds the registered server to a specific group.
    If group does not exist it will be created

    @@ -874,8 +874,8 @@
    -ServerObject
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Add-DbaRegServerGroup.html b/Add-DbaRegServerGroup.html index a754719d..62232203 100644 --- a/Add-DbaRegServerGroup.html +++ b/Add-DbaRegServerGroup.html @@ -519,7 +519,7 @@
    Example: 3

    Creates a registered server group on sql2012 and sql2014 called sub-folder within the HR group of each server

    Required Parameters

    -Name
    -

    The name of the registered server group.

    +

    The name of the registered server group.

    @@ -576,8 +576,8 @@
    -SqlInstance
    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -634,7 +634,7 @@
    -Description
    -Group
    -

    The SQL Server Central Management Server group. If no groups are specified, the new group will be created at the root. +

    The SQL Server Central Management Server group. If no groups are specified, the new group will be created at the root.
    You can pass sub groups using the '' to split the path. Group\SubGroup will create both folders. Folder 'SubGroup' under 'Group' folder.

    @@ -691,8 +691,8 @@
    -InputObject
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Add-DbaReplArticle.html b/Add-DbaReplArticle.html index 5ef9fc92..be918fd6 100644 --- a/Add-DbaReplArticle.html +++ b/Add-DbaReplArticle.html @@ -537,7 +537,7 @@
    Example: 3
    includes default options.

    Required Parameters

    -SqlInstance
    -

    The SQL Server instance(s) for the publication.

    +

    The SQL Server instance(s) for the publication.

    @@ -565,7 +565,7 @@
    -SqlInstance
    -Database
    -

    The publication database to apply the article configuration to be replicated.

    +

    The publication database to apply the article configuration to be replicated.

    @@ -593,7 +593,7 @@
    -Database
    -Publication
    -

    The name of the publication.

    +

    The name of the publication.

    @@ -621,7 +621,7 @@
    -Publication
    -Name
    -

    The name of the object to add as an article.

    +

    The name of the object to add as an article.

    @@ -650,8 +650,8 @@
    -Name

    Optional Parameters

    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -680,7 +680,7 @@
    -SqlCredential
    -Schema
    -

    Schema where the article to be added is found. +

    Schema where the article to be added is found.
    Default is dbo.

    @@ -709,7 +709,7 @@
    -Schema
    -Filter
    -

    Sets the where clause used to filter the article horizontally, e.g., DiscontinuedDate IS NULL +

    Sets the where clause used to filter the article horizontally, e.g., DiscontinuedDate IS NULL
    E.g. City = 'Seattle'

    @@ -738,7 +738,7 @@
    -Filter
    -CreationScriptOptions
    -

    Options for the creation script. +

    Options for the creation script.
    Use New-DbaReplCreationScriptOptions to create this object.

    @@ -767,8 +767,8 @@
    -CreationScriptOptions
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Add-DbaServerRoleMember.html b/Add-DbaServerRoleMember.html index f5e16381..3d16659a 100644 --- a/Add-DbaServerRoleMember.html +++ b/Add-DbaServerRoleMember.html @@ -567,8 +567,8 @@
    -SqlInstance
    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -709,8 +709,8 @@
    -InputObject
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Backup-DbaComputerCertificate.html b/Backup-DbaComputerCertificate.html index e71ce193..e329f40c 100644 --- a/Backup-DbaComputerCertificate.html +++ b/Backup-DbaComputerCertificate.html @@ -512,7 +512,7 @@
    Example: 2

    Backs up certificate with the thumbprint 29C469578D6C6211076A09CEE5C5797EEA0C2713 to the temp directory.

    Required Parameters

    -InputObject
    -

    The target certificate object. Accepts input from Get-DbaComputerCertificate.

    +

    The target certificate object. Accepts input from Get-DbaComputerCertificate.

    @@ -657,8 +657,8 @@
    -Type
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Backup-DbaDatabase.html b/Backup-DbaDatabase.html index 4a0b5fa3..e90027ef 100644 --- a/Backup-DbaDatabase.html +++ b/Backup-DbaDatabase.html @@ -573,7 +573,8 @@

    Syntax

    [-ReplaceInName] [-NoAppendDbNameInPath] [-CopyOnly] - [-Type <String>] -InputObject <Object[]> + [-Type <String>] + -InputObject <Object[]> [-CreateFolder] [-FileCount <Int32>] [-CompressBackup] @@ -645,7 +646,7 @@
    Example: 9

    Backs up the master database using the BackupCert certificate and the AES256 algorithm.

    Required Parameters

    -SqlInstance
    -

    The SQL Server instance hosting the databases to be backed up.

    +

    The SQL Server instance hosting the databases to be backed up.

    @@ -673,7 +674,7 @@
    -SqlInstance
    -InputObject
    -

    Internal parameter

    +

    Internal parameter

    @@ -702,8 +703,8 @@
    -InputObject

    Optional Parameters

    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -788,9 +789,9 @@
    -ExcludeDatabase
    -Path
    -

    Path in which to place the backup files. If not specified, the backups will be placed in the default backup location for SqlInstance. -If multiple paths are specified, the backups will be striped across these locations. This will overwrite the FileCount option. -If the path does not exist, Sql Server will attempt to create it. Folders are created by the Sql Instance, and checks will be made for write permissions. +

    Path in which to place the backup files. If not specified, the backups will be placed in the default backup location for SqlInstance.
    +If multiple paths are specified, the backups will be striped across these locations. This will overwrite the FileCount option.
    +If the path does not exist, Sql Server will attempt to create it. Folders are created by the Sql Instance, and checks will be made for write permissions.
    File Names with be suffixed with x-of-y to enable identifying striped sets, where y is the number of files in the set and x ranges from 1 to y.

    @@ -819,10 +820,10 @@
    -Path
    -FilePath
    -

    The name of the file to backup to. This is only accepted for single database backups. -If no name is specified then the backup files will be named DatabaseName_yyyyMMddHHmm (i.e. "Database1_201714022131") with the appropriate extension. -If the same name is used repeatedly, SQL Server will add backups to the same file at an incrementing position. -SQL Server needs permissions to write to the specified location. Path names are based on the SQL Server (C:\ is the C drive on the SQL Server, not the machine running the script). +

    The name of the file to backup to. This is only accepted for single database backups.
    +If no name is specified then the backup files will be named DatabaseName_yyyyMMddHHmm (i.e. "Database1_201714022131") with the appropriate extension.
    +If the same name is used repeatedly, SQL Server will add backups to the same file at an incrementing position.
    +SQL Server needs permissions to write to the specified location. Path names are based on the SQL Server (C:\ is the C drive on the SQL Server, not the machine running the script).
    Passing in NUL as the FilePath will backup to the NUL: device

    @@ -879,11 +880,11 @@
    -IncrementPrefix
    -ReplaceInName
    -

    If this switch is set, the following list of strings will be replaced in the FilePath and Path strings: -instancename - will be replaced with the instance Name -servername - will be replaced with the server name -dbname - will be replaced with the database name -timestamp - will be replaced with the timestamp (either the default, or the format provided) +

    If this switch is set, the following list of strings will be replaced in the FilePath and Path strings:
    +instancename - will be replaced with the instance Name
    +servername - will be replaced with the server name
    +dbname - will be replaced with the database name
    +timestamp - will be replaced with the timestamp (either the default, or the format provided)
    backuptype - will be replaced with Full, Log or Differential as appropriate

    @@ -940,8 +941,8 @@
    -NoAppendDbNameInPath
    -CopyOnly
    -

    If this switch is enabled, CopyOnly backups will be taken. By default function performs a normal backup, these backups interfere with the restore chain of the database. CopyOnly backups will not -interfere with the restore chain of the database. +

    If this switch is enabled, CopyOnly backups will be taken. By default function performs a normal backup, these backups interfere with the restore chain of the database. CopyOnly backups will not
    +interfere with the restore chain of the database.
    For more details please refer to this MSDN article - https://msdn.microsoft.com/en-us/library/ms191495.aspx

    @@ -1058,8 +1059,8 @@
    -FileCount
    -CompressBackup
    -

    If this switch is enabled, the function will try to perform a compressed backup if supported by the version and edition of SQL Server. Otherwise, this function will use the server(s) default setting -for compression. +

    If this switch is enabled, the function will try to perform a compressed backup if supported by the version and edition of SQL Server. Otherwise, this function will use the server(s) default setting
    +for compression.
    NOTE: Explicitly providing a value of false will disable backup compression.

    @@ -1172,7 +1173,7 @@
    -MaxTransferSize
    -BlockSize
    -

    Specifies the block size to use. Must be one of 0.5KB, 1KB, 2KB, 4KB, 8KB, 16KB, 32KB or 64KB. This can be specified in bytes. +

    Specifies the block size to use. Must be one of 0.5KB, 1KB, 2KB, 4KB, 8KB, 16KB, 32KB or 64KB. This can be specified in bytes.
    Refer to https://msdn.microsoft.com/en-us/library/ms178615.aspx for more detail

    @@ -1201,7 +1202,7 @@
    -BlockSize
    -BufferCount
    -

    Number of I/O buffers to use to perform the operation. +

    Number of I/O buffers to use to perform the operation.
    Refer to https://msdn.microsoft.com/en-us/library/ms178615.aspx for more detail

    @@ -1230,9 +1231,9 @@
    -BufferCount
    -AzureBaseUrl
    -

    The URL(s) to the base container of an Azure Storage account to write backups to. -If specifying the AzureCredential parameter you can only provide 1 value as page blobs do not support multiple URLs -If using Shared Access keys, you may specify as many URLs as you want, as long as a corresponding credential exists on the source server. +

    The URL(s) to the base container of an Azure Storage account to write backups to.
    +If specifying the AzureCredential parameter you can only provide 1 value as page blobs do not support multiple URLs
    +If using Shared Access keys, you may specify as many URLs as you want, as long as a corresponding credential exists on the source server.
    If specified, the only other parameters than can be used are "CopyOnly", "Type", "CompressBackup", "Checksum", "Verify", "AzureCredential", "CreateFolder".

    @@ -1261,8 +1262,8 @@
    -AzureBaseUrl
    -AzureCredential
    -

    The name of the credential on the SQL instance that can write to the AzureBaseUrl, only needed if using Storage access keys -If using SAS credentials, the command will look for a credential with a name matching the AzureBaseUrl. As page blobs are used with this option we force the number of files to 1 and ignore any value +

    The name of the credential on the SQL instance that can write to the AzureBaseUrl, only needed if using Storage access keys
    +If using SAS credentials, the command will look for a credential with a name matching the AzureBaseUrl. As page blobs are used with this option we force the number of files to 1 and ignore any value
    passed in for BlockSize or MaxTransferSize

    @@ -1431,7 +1432,7 @@
    -SkipTapeHeader
    -TimeStampFormat
    -

    By default the command timestamps backups using the format yyyyMMddHHmm. Using this parameter this can be overridden. The timestamp format should be defined using the Get-Date formats, illegal +

    By default the command timestamps backups using the format yyyyMMddHHmm. Using this parameter this can be overridden. The timestamp format should be defined using the Get-Date formats, illegal
    formats will cause an error to be thrown

    @@ -1460,7 +1461,7 @@
    -TimeStampFormat
    -IgnoreFileChecks
    -

    This switch stops the function from checking for the validity of paths. This can be useful if SQL Server only has read access to the backup area. +

    This switch stops the function from checking for the validity of paths. This can be useful if SQL Server only has read access to the backup area.
    Note, that as we cannot check the path you may well end up with errors.

    @@ -1517,7 +1518,7 @@
    -OutputScriptOnly
    -EncryptionAlgorithm
    -

    Specified the Encryption Algorithm to used. Must be one of 'AES128','AES192','AES256' or 'TRIPLEDES' +

    Specified the Encryption Algorithm to used. Must be one of 'AES128','AES192','AES256' or 'TRIPLEDES'
    Must specify one of EncryptionCertificate or EncryptionKey as well.

    @@ -1550,7 +1551,7 @@
    -EncryptionAlgorithm
    -EncryptionCertificate
    -

    The name of the certificate to be used to encrypt the backups. The existence of the certificate will be checked, and will not proceed if it does not exist +

    The name of the certificate to be used to encrypt the backups. The existence of the certificate will be checked, and will not proceed if it does not exist
    Is mutually exclusive with the EncryptionKey option

    @@ -1607,8 +1608,8 @@
    -Description
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Backup-DbaDbCertificate.html b/Backup-DbaDbCertificate.html index e61ad0b6..51efabe1 100644 --- a/Backup-DbaDbCertificate.html +++ b/Backup-DbaDbCertificate.html @@ -575,7 +575,7 @@
    Example: 10

    Exports all certificates found on sql2016 to the default data directory.

    Required Parameters

    -SqlInstance
    -

    The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

    +

    The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

    @@ -604,8 +604,8 @@
    -SqlInstance

    Optional Parameters

    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -858,8 +858,8 @@
    -InputObject
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Backup-DbaDbMasterKey.html b/Backup-DbaDbMasterKey.html index 96a7bc3e..3ec3452a 100644 --- a/Backup-DbaDbMasterKey.html +++ b/Backup-DbaDbMasterKey.html @@ -550,8 +550,8 @@
    -SqlInstance
    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -748,8 +748,8 @@
    -InputObject
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Backup-DbaServiceMasterKey.html b/Backup-DbaServiceMasterKey.html index 8abd583a..47ee7ca0 100644 --- a/Backup-DbaServiceMasterKey.html +++ b/Backup-DbaServiceMasterKey.html @@ -519,7 +519,7 @@
    Example: 2

    Logs into sql2016 with Windows credentials then backs up the service master key to the \nas\sqlbackups\keys directory.

    Required Parameters

    -SqlInstance
    -

    The target SQL Server instance or instances.

    +

    The target SQL Server instance or instances.

    @@ -548,8 +548,8 @@
    -SqlInstance

    Optional Parameters

    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -662,8 +662,8 @@
    -Path
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Clear-DbaConnectionPool.html b/Clear-DbaConnectionPool.html index cf3293bb..bb512efe 100644 --- a/Clear-DbaConnectionPool.html +++ b/Clear-DbaConnectionPool.html @@ -567,8 +567,8 @@
    -Credential
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Clear-DbaLatchStatistics.html b/Clear-DbaLatchStatistics.html index fa33dfcc..fa486093 100644 --- a/Clear-DbaLatchStatistics.html +++ b/Clear-DbaLatchStatistics.html @@ -520,7 +520,7 @@
    Example: 4

    Connects using sqladmin credential and clears latch statistics on servers sql2008 and sqlserver2012

    Required Parameters

    -SqlInstance
    -

    Allows you to specify a comma separated list of servers to query.

    +

    Allows you to specify a comma separated list of servers to query.

    @@ -549,8 +549,8 @@
    -SqlInstance

    Optional Parameters

    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -579,8 +579,8 @@
    -SqlCredential
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Clear-DbaPlanCache.html b/Clear-DbaPlanCache.html index 36cb403f..713a184f 100644 --- a/Clear-DbaPlanCache.html +++ b/Clear-DbaPlanCache.html @@ -548,8 +548,8 @@
    -SqlInstance
    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -634,8 +634,8 @@
    -InputObject
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Clear-DbaWaitStatistics.html b/Clear-DbaWaitStatistics.html index 91570b24..a242366d 100644 --- a/Clear-DbaWaitStatistics.html +++ b/Clear-DbaWaitStatistics.html @@ -511,7 +511,7 @@
    Example: 2

    Clears wait stats on servers sql2008 and sqlserver2012, without prompting

    Required Parameters

    -SqlInstance
    -

    The target SQL Server instance or instances.

    +

    The target SQL Server instance or instances.

    @@ -540,8 +540,8 @@
    -SqlInstance

    Optional Parameters

    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -570,8 +570,8 @@
    -SqlCredential
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Connect-DbaInstance.html b/Connect-DbaInstance.html index 4c7453e6..2acb7ba2 100644 --- a/Connect-DbaInstance.html +++ b/Connect-DbaInstance.html @@ -492,8 +492,8 @@

    Description

    It is robust because it initializes properties that do not cause enumeration by default. It also supports both Windows and SQL Server authentication methods, and detects which to use based upon the provided credentials.

    By default, this command also sets the connection's ApplicationName property to "dbatools PowerShell module - dbatools.io - custom connection". If you're doing anything that requires profiling, you can look for this client name.

    Alternatively, you can pass in whichever client name you'd like using the -ClientName parameter. There are a ton of other parameters for you to explore as well.

    -

    See https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.connectionstring.aspx -and https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnectionstringbuilder.aspx, +

    See https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.connectionstring.aspx
    +and https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnectionstringbuilder.aspx,
    and https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.aspx

    To execute SQL commands, you can use $server.ConnectionContext.ExecuteReader($sql) or $server.Databases['master'].ExecuteNonQuery($sql)

    Syntax

    @@ -640,7 +640,7 @@
    Example: 17
    Closes the connection.

    Required Parameters

    -SqlInstance
    -

    The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

    +

    The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

    @@ -669,7 +669,7 @@
    -SqlInstance

    Optional Parameters

    -SqlCredential
    -

    Credential object used to connect to the SQL Server Instance as a different user. This can be a Windows or SQL Server account. Windows users are determined by the existence of a backslash, so if you +

    Credential object used to connect to the SQL Server Instance as a different user. This can be a Windows or SQL Server account. Windows users are determined by the existence of a backslash, so if you
    are intending to use an alternative Windows connection instead of a SQL login, ensure it contains a backslash.

    @@ -726,7 +726,7 @@
    -Database
    -ApplicationIntent
    -

    Declares the application workload type when connecting to a server. +

    Declares the application workload type when connecting to a server.
    Valid values are "ReadOnly" and "ReadWrite".

    @@ -815,7 +815,7 @@
    -BatchSeparator
    -ClientName
    -

    By default, this command sets the client's ApplicationName property to "dbatools PowerShell module - dbatools.io". If you're doing anything that requires profiling, you can look for this client name. +

    By default, this command sets the client's ApplicationName property to "dbatools PowerShell module - dbatools.io". If you're doing anything that requires profiling, you can look for this client name.
    Using -ClientName allows you to set your own custom client application name.

    @@ -844,8 +844,8 @@
    -ClientName
    -ConnectTimeout
    -

    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error. -Valid values are integers between 0 and 2147483647. +

    The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error.
    +Valid values are integers between 0 and 2147483647.
    When opening a connection to a Azure SQL Database, set the connection timeout to 30 seconds.

    @@ -874,9 +874,9 @@
    -ConnectTimeout
    -EncryptConnection
    -

    If this switch is enabled, SQL Server uses SSL encryption for all data sent between the client and server. -Beginning in .NET Framework 4.5, when TrustServerCertificate is false and EncryptConnection is true, the server name (or IP address) in a SQL Server SSL certificate must exactly match the server name -(or IP address) specified in the connection string. Otherwise, the connection attempt will fail. For information about support for certificates whose subject starts with a wildcard character (*), see +

    If this switch is enabled, SQL Server uses SSL encryption for all data sent between the client and server.
    +Beginning in .NET Framework 4.5, when TrustServerCertificate is false and EncryptConnection is true, the server name (or IP address) in a SQL Server SSL certificate must exactly match the server name
    +(or IP address) specified in the connection string. Otherwise, the connection attempt will fail. For information about support for certificates whose subject starts with a wildcard character (*), see
    Accepted wildcards used by server certificates for server authentication. https://support.microsoft.com/en-us/help/258858/accepted-wildcards-used-by-server-certificates-for-server-authenticati

    @@ -905,12 +905,12 @@
    -EncryptConnection
    -FailoverPartner
    -

    The name of the failover partner server where database mirroring is configured. -If the value of this key is "" (an empty string), then Initial Catalog must be present in the connection string, and its value must not be "". -The server name can be 128 characters or less. -If you specify a failover partner but the failover partner server is not configured for database mirroring and the primary server (specified with the Server keyword) is not available, then the -connection will fail. -If you specify a failover partner and the primary server is not configured for database mirroring, the connection to the primary server (specified with the Server keyword) will succeed if the primary +

    The name of the failover partner server where database mirroring is configured.
    +If the value of this key is "" (an empty string), then Initial Catalog must be present in the connection string, and its value must not be "".
    +The server name can be 128 characters or less.
    +If you specify a failover partner but the failover partner server is not configured for database mirroring and the primary server (specified with the Server keyword) is not available, then the
    +connection will fail.
    +If you specify a failover partner and the primary server is not configured for database mirroring, the connection to the primary server (specified with the Server keyword) will succeed if the primary
    server is available.

    @@ -1051,7 +1051,7 @@
    -MinimumVersion
    -MultipleActiveResultSets
    -

    If this switch is enabled, an application can maintain multiple active result sets (MARS). +

    If this switch is enabled, an application can maintain multiple active result sets (MARS).
    If this switch is not enabled, an application must process or cancel all result sets from one batch before it can execute any other batch on that connection.

    @@ -1080,8 +1080,8 @@
    -MultipleActiveResultSets
    -MultiSubnetFailover
    -

    If this switch is enabled, and your application is connecting to an AlwaysOn availability group (AG) on different subnets, detection of and connection to the currently active server will be faster. -For more information about SqlClient support for Always On Availability Groups, see +

    If this switch is enabled, and your application is connecting to an AlwaysOn availability group (AG) on different subnets, detection of and connection to the currently active server will be faster.
    +For more information about SqlClient support for Always On Availability Groups, see
    https://docs.microsoft.com/en-us/dotnet/framework/data/adonet/sql/sqlclient-support-for-high-availability-disaster-recovery

    @@ -1110,7 +1110,7 @@
    -MultiSubnetFailover
    -NetworkProtocol
    -

    Explicitly sets the network protocol used to connect to the server. +

    Explicitly sets the network protocol used to connect to the server.
    Valid values are "TcpIp","NamedPipes","Multiprotocol","AppleTalk","BanyanVines","Via","SharedMemory" and "NWLinkIpxSpx"

    @@ -1199,8 +1199,8 @@
    -PacketSize
    -PooledConnectionLifetime
    -

    When a connection is returned to the pool, its creation time is compared with the current time and the connection is destroyed if that time span (in seconds) exceeds the value specified by Connection -Lifetime. This is useful in clustered configurations to force load balancing between a running server and a server just brought online. +

    When a connection is returned to the pool, its creation time is compared with the current time and the connection is destroyed if that time span (in seconds) exceeds the value specified by Connection
    +Lifetime. This is useful in clustered configurations to force load balancing between a running server and a server just brought online.
    A value of zero (0) causes pooled connections to have the maximum connection timeout.

    @@ -1229,7 +1229,7 @@
    -PooledConnectionLifetime
    -SqlExecutionModes
    -

    The SqlExecutionModes enumeration contains values that are used to specify whether the commands sent to the referenced connection to the server are executed immediately or saved in a buffer. +

    The SqlExecutionModes enumeration contains values that are used to specify whether the commands sent to the referenced connection to the server are executed immediately or saved in a buffer.
    Valid values include "CaptureSql", "ExecuteAndCaptureSql" and "ExecuteSql".

    @@ -1262,8 +1262,8 @@
    -SqlExecutionModes
    -StatementTimeout
    -

    Sets the number of seconds a statement is given to run before failing with a timeout error. -The default is read from the configuration 'sql.execution.timeout' that is currently set to 0 (unlimited). +

    Sets the number of seconds a statement is given to run before failing with a timeout error.
    +The default is read from the configuration 'sql.execution.timeout' that is currently set to 0 (unlimited).
    If you want to change this to 10 minutes, use: Set-DbatoolsConfig -FullName 'sql.execution.timeout' -Value 600

    @@ -1348,7 +1348,7 @@
    -WorkstationId
    -AlwaysEncrypted
    -

    Sets "Column Encryption Setting=enabled" on the connection so you can work with Always Encrypted values. +

    Sets "Column Encryption Setting=enabled" on the connection so you can work with Always Encrypted values.
    For more information, see https://docs.microsoft.com/en-us/sql/relational-databases/security/encryption/develop-using-always-encrypted-with-net-framework-data-provider

    @@ -1433,8 +1433,8 @@
    -SqlConnectionOnly
    -AzureDomain
    -

    By default, this is set to database.windows.net -In the event your AzureSqlDb is not on a database.windows.net domain, you can set a custom domain using the AzureDomain parameter. +

    By default, this is set to database.windows.net
    +In the event your AzureSqlDb is not on a database.windows.net domain, you can set a custom domain using the AzureDomain parameter.
    This tells Connect-DbaInstance to login to the database using the method that works best with Azure.

    @@ -1491,7 +1491,7 @@
    -Tenant
    -AccessToken
    -

    Connect to an Azure SQL Database or an Azure SQL Managed Instance with an AccessToken, that has to be generated with Get-AzAccessToken or New-DbaAzAccessToken. +

    Connect to an Azure SQL Database or an Azure SQL Managed Instance with an AccessToken, that has to be generated with Get-AzAccessToken or New-DbaAzAccessToken.
    Note that the token is valid for only one hour and cannot be renewed automatically.

    @@ -1520,8 +1520,8 @@
    -AccessToken
    -DedicatedAdminConnection
    -

    Connects using "ADMIN:" to create a dedicated admin connection (DAC) as a non-pooled connection. -If the instance is on a remote server, the remote access has to be enabled via "Set-DbaSpConfigure -Name RemoteDacConnectionsEnabled -Value $true" or "sp_configure 'remote admin connections', 1". +

    Connects using "ADMIN:" to create a dedicated admin connection (DAC) as a non-pooled connection.
    +If the instance is on a remote server, the remote access has to be enabled via "Set-DbaSpConfigure -Name RemoteDacConnectionsEnabled -Value $true" or "sp_configure 'remote admin connections', 1".
    The connection will not be closed if the variable holding the Server SMO is going out of scope, so it is very important to call .ConnectionContext.Disconnect() to close the connection. See example.

    @@ -1550,8 +1550,8 @@
    -DedicatedAdminConnection
    -DisableException
    -

    By default in most of our commands, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This command, however, gifts you with "sea of red" exceptions, by default, because it is useful for advanced scripting. +

    By default in most of our commands, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This command, however, gifts you with "sea of red" exceptions, by default, because it is useful for advanced scripting.
    Using this switch turns our "nice by default" feature on which makes errors into pretty warnings.

    diff --git a/ConvertTo-DbaDataTable.html b/ConvertTo-DbaDataTable.html index 17500539..85967c9f 100644 --- a/ConvertTo-DbaDataTable.html +++ b/ConvertTo-DbaDataTable.html @@ -522,7 +522,7 @@
    Example: 4

    Creates a DataTable with the running processes and converts any TimeSpan property to TotalSeconds.

    Required Parameters

    -InputObject
    -

    The object to transform into a DataTable.

    +

    The object to transform into a DataTable.

    @@ -551,7 +551,7 @@
    -InputObject

    Optional Parameters

    -TimeSpanType
    -

    Specifies the type to convert TimeSpan objects into. Default is 'TotalMilliseconds'. Valid options are: 'Ticks', 'TotalDays', 'TotalHours', 'TotalMinutes', 'TotalSeconds', 'TotalMilliseconds', and +

    Specifies the type to convert TimeSpan objects into. Default is 'TotalMilliseconds'. Valid options are: 'Ticks', 'TotalDays', 'TotalHours', 'TotalMinutes', 'TotalSeconds', 'TotalMilliseconds', and
    'String'.

    @@ -672,8 +672,8 @@
    -Raw
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/ConvertTo-DbaTimeline.html b/ConvertTo-DbaTimeline.html index 0ec6e616..54cc0790 100644 --- a/ConvertTo-DbaTimeline.html +++ b/ConvertTo-DbaTimeline.html @@ -487,10 +487,10 @@

    ConvertTo-DbaTimeline

    Synopsis

    Converts InputObject to a html timeline using Google Chart

    Description

    -

    This function accepts input as pipeline from the following dbatools functions: -Get-DbaAgentJobHistory -Get-DbaDbBackupHistory -(more to come...) +

    This function accepts input as pipeline from the following dbatools functions:
    +Get-DbaAgentJobHistory
    +Get-DbaDbBackupHistory
    +(more to come...)
    And generates Bootstrap based, HTML file with Google Chart Timeline

    Syntax

    ConvertTo-DbaTimeline
    @@ -526,7 +526,7 @@ 
    Example: 3

    Sends an email to dba@ad.local with the results of Get-DbaDbBackupHistory. Note that viewing these reports may not be supported in all email clients.

    Required Parameters

    -InputObject
    -

    Pipe input, must an output from the above functions.

    +

    Pipe input, must an output from the above functions.

    @@ -555,8 +555,8 @@
    -InputObject

    Optional Parameters

    -ExcludeRowLabel
    -

    By default, the Timeline shows SqlInstance and item name (agent job or database) in row labels section of the chart. -When this parameter (ExcludeRowLabel) is set to true the row labels will not be shown which will maximise the chart area for better visualization. +

    By default, the Timeline shows SqlInstance and item name (agent job or database) in row labels section of the chart.
    +When this parameter (ExcludeRowLabel) is set to true the row labels will not be shown which will maximise the chart area for better visualization.
    All relevant details are still available in the tooltip.

    @@ -585,8 +585,8 @@
    -ExcludeRowLabel
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/ConvertTo-DbaXESession.html b/ConvertTo-DbaXESession.html index 6a7e4184..7a019a19 100644 --- a/ConvertTo-DbaXESession.html +++ b/ConvertTo-DbaXESession.html @@ -488,7 +488,7 @@

    Synopsis

    Uses a slightly modified version of sp_SQLskills_ConvertTraceToExtendedEvents.sql to convert Traces to Extended Events.

    Description

    Uses a slightly modified version of sp_SQLskills_ConvertTraceToExtendedEvents.sql to convert Traces to Extended Events.

    -

    T-SQL code by: Jonathan M. Kehayias, SQLskills.com. T-SQL can be found in this module directory and at +

    T-SQL code by: Jonathan M. Kehayias, SQLskills.com. T-SQL can be found in this module directory and at
    https://www.sqlskills.com/blogs/jonathan/converting-sql-trace-to-extended-events-in-sql-server-2012/

    Syntax

    ConvertTo-DbaXESession
    @@ -516,7 +516,7 @@ 
    Example: 3

    Converts trace ID 1 on sql2014 to an Extended Event and outputs the resulting T-SQL.

    Required Parameters

    -InputObject
    -

    Specifies a Trace object output by Get-DbaTrace.

    +

    Specifies a Trace object output by Get-DbaTrace.

    @@ -544,7 +544,7 @@
    -InputObject
    -Name
    -

    The name of the Trace to convert. If the name exists, characters will be appended to it.

    +

    The name of the Trace to convert. If the name exists, characters will be appended to it.

    @@ -601,8 +601,8 @@
    -OutputScriptOnly
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaAgentAlert.html b/Copy-DbaAgentAlert.html index 873566df..8f788aca 100644 --- a/Copy-DbaAgentAlert.html +++ b/Copy-DbaAgentAlert.html @@ -523,7 +523,7 @@
    Example: 3

    Shows what would happen if the command were executed using force.

    Required Parameters

    -Source
    -

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    +

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    @@ -551,7 +551,7 @@
    -Source
    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    @@ -580,8 +580,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -610,8 +610,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -752,8 +752,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaAgentJob.html b/Copy-DbaAgentJob.html index 0fda669f..ef085c52 100644 --- a/Copy-DbaAgentJob.html +++ b/Copy-DbaAgentJob.html @@ -529,7 +529,7 @@
    Example: 4

    Copies all SSRS jobs (subscriptions) from AlwaysOn Primary SQL instance sqlserver2014a to AlwaysOn Secondary SQL instance sqlserver2014b

    Required Parameters

    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    @@ -586,8 +586,8 @@
    -Source
    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -616,8 +616,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -814,8 +814,8 @@
    -InputObject
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaAgentJobCategory.html b/Copy-DbaAgentJobCategory.html index 9de4743a..2432b185 100644 --- a/Copy-DbaAgentJobCategory.html +++ b/Copy-DbaAgentJobCategory.html @@ -488,13 +488,14 @@

    Synopsis

    Copy-DbaAgentJobCategory migrates SQL Agent categories from one SQL Server to another. This is similar to sp_add_category.

    Description

    By default, all SQL Agent categories for Jobs, Operators and Alerts are copied.

    -

    The -OperatorCategories parameter is auto-populated for command-line completion and can be used to copy only specific operator categories. -The -AgentCategories parameter is auto-populated for command-line completion and can be used to copy only specific agent categories. +

    The -OperatorCategories parameter is auto-populated for command-line completion and can be used to copy only specific operator categories.
    +The -AgentCategories parameter is auto-populated for command-line completion and can be used to copy only specific agent categories.
    The -JobCategories parameter is auto-populated for command-line completion and can be used to copy only specific job categories.

    If the category already exists on the destination, it will be skipped unless -Force is used.

    Syntax

    Copy-DbaAgentJobCategory -Source <DbaInstanceParameter>
    -    [-SourceSqlCredential <PSCredential>] -Destination <DbaInstanceParameter[]>
    +    [-SourceSqlCredential <PSCredential>]
    +    -Destination <DbaInstanceParameter[]>
         [-DestinationSqlCredential <PSCredential>]
         [-JobCategory <String[]>]
         [-AgentCategory <String[]>]
    @@ -506,7 +507,8 @@ 

    Syntax

    [<CommonParameters>] Copy-DbaAgentJobCategory -Source <DbaInstanceParameter> - [-SourceSqlCredential <PSCredential>] -Destination <DbaInstanceParameter[]> + [-SourceSqlCredential <PSCredential>] + -Destination <DbaInstanceParameter[]> [-DestinationSqlCredential <PSCredential>] [-CategoryType <String[]>] [-JobCategory <String[]>] @@ -537,7 +539,7 @@
    Example: 3

    Shows what would happen if the command were executed using force.

    Required Parameters

    -Source
    -

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    +

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    @@ -565,7 +567,7 @@
    -Source
    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    @@ -594,8 +596,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -624,8 +626,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -654,7 +656,7 @@
    -DestinationSqlCredential
    -CategoryType
    -

    Specifies the Category Type to migrate. Valid options are "Job", "Alert" and "Operator". When CategoryType is specified, all categories from the selected type will be migrated. For granular +

    Specifies the Category Type to migrate. Valid options are "Job", "Alert" and "Operator". When CategoryType is specified, all categories from the selected type will be migrated. For granular
    migrations, use the three parameters below.

    @@ -799,8 +801,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaAgentOperator.html b/Copy-DbaAgentOperator.html index 3269e3a7..6447b1e7 100644 --- a/Copy-DbaAgentOperator.html +++ b/Copy-DbaAgentOperator.html @@ -522,7 +522,7 @@
    Example: 3

    Shows what would happen if the command were executed using force.

    Required Parameters

    -Source
    -

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    +

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    @@ -550,7 +550,7 @@
    -Source
    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    @@ -579,8 +579,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -609,8 +609,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -723,8 +723,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaAgentProxy.html b/Copy-DbaAgentProxy.html index fc8e7280..84577925 100644 --- a/Copy-DbaAgentProxy.html +++ b/Copy-DbaAgentProxy.html @@ -522,7 +522,7 @@
    Example: 3

    Shows what would happen if the command were executed using force.

    Required Parameters

    -Source
    -

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    +

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    @@ -550,7 +550,7 @@
    -Source
    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    @@ -579,8 +579,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -609,8 +609,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -723,8 +723,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaAgentSchedule.html b/Copy-DbaAgentSchedule.html index 741f12a0..c66fcdb8 100644 --- a/Copy-DbaAgentSchedule.html +++ b/Copy-DbaAgentSchedule.html @@ -522,7 +522,7 @@
    Example: 3

    Gets a list of schedule, outputs to a gridview which can be selected from, then copies to SqlInstance

    Required Parameters

    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    @@ -579,8 +579,8 @@
    -Source
    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -609,8 +609,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -751,8 +751,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaAgentServer.html b/Copy-DbaAgentServer.html index cb71805a..177d16df 100644 --- a/Copy-DbaAgentServer.html +++ b/Copy-DbaAgentServer.html @@ -522,7 +522,7 @@
    Example: 3

    Shows what would happen if the command were executed.

    Required Parameters

    -Source
    -

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    +

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    @@ -550,7 +550,7 @@
    -Source
    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    @@ -579,8 +579,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -609,8 +609,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -751,8 +751,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaBackupDevice.html b/Copy-DbaBackupDevice.html index 6a2056f7..b35890bf 100644 --- a/Copy-DbaBackupDevice.html +++ b/Copy-DbaBackupDevice.html @@ -521,7 +521,7 @@
    Example: 3

    Shows what would happen if the command were executed using force.

    Required Parameters

    -Source
    -

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    +

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    @@ -549,7 +549,7 @@
    -Source
    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    @@ -578,8 +578,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -608,8 +608,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -694,8 +694,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaCredential.html b/Copy-DbaCredential.html index 9884dc51..d082da32 100644 --- a/Copy-DbaCredential.html +++ b/Copy-DbaCredential.html @@ -520,8 +520,8 @@
    Example: 2

    Copies over one SQL Server Credential (PowerShell Proxy Account) from sqlserver to sqlcluster. If the Credential already exists on the destination, it will be dropped and recreated.

    Required Parameters

    -Source
    -

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2005 or higher. -You must be able to open a dedicated admin connection (DAC) to the source SQL Server.

    +

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2005 or higher.
    +You must be able to open a dedicated admin connection (DAC) to the source SQL Server.

    @@ -549,7 +549,7 @@
    -Source
    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2005 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2005 or higher.

    @@ -578,8 +578,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -636,8 +636,8 @@
    -Credential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -666,7 +666,7 @@
    -DestinationSqlCredential
    -Name
    -

    Only include specific names +

    Only include specific names
    Note: if spaces exist in the credential name, you will have to type "" or '' around it.

    @@ -723,7 +723,7 @@
    -ExcludeName
    -Identity
    -

    Only include specific identities +

    Only include specific identities
    Note: if spaces exist in the credential identity, you will have to type "" or '' around it.

    @@ -808,8 +808,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaCustomError.html b/Copy-DbaCustomError.html index 619904bd..6ca97249 100644 --- a/Copy-DbaCustomError.html +++ b/Copy-DbaCustomError.html @@ -527,7 +527,7 @@
    Example: 4

    Shows what would happen if the command were executed using force.

    Required Parameters

    -Source
    -

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    +

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    @@ -555,7 +555,7 @@
    -Source
    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    @@ -584,8 +584,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -614,8 +614,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -728,8 +728,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaDataCollector.html b/Copy-DbaDataCollector.html index 70f7a959..e570218f 100644 --- a/Copy-DbaDataCollector.html +++ b/Copy-DbaDataCollector.html @@ -526,7 +526,7 @@
    Example: 4

    Copies two Collection Sets, Server Activity and Table Usage Analysis, from sqlserver2014a to sqlcluster.

    Required Parameters

    -Source
    -

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

    +

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

    @@ -554,7 +554,7 @@
    -Source
    -Destination
    -

    Destination Sql Server. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

    +

    Destination Sql Server. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

    @@ -583,8 +583,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -613,8 +613,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -755,8 +755,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaDatabase.html b/Copy-DbaDatabase.html index 104b1c6e..efaa0d77 100644 --- a/Copy-DbaDatabase.html +++ b/Copy-DbaDatabase.html @@ -493,11 +493,13 @@

    Description

    Syntax

    Copy-DbaDatabase
         [-Source <DbaInstanceParameter>]
    -    [-SourceSqlCredential <PSCredential>] -Destination <DbaInstanceParameter[]>
    +    [-SourceSqlCredential <PSCredential>]
    +    -Destination <DbaInstanceParameter[]>
         [-DestinationSqlCredential <PSCredential>]
         [-Database <Object[]>]
         [-ExcludeDatabase <Object[]>]
    -    [-AllDatabases] -BackupRestore
    +    [-AllDatabases]
    +    -BackupRestore
         [-AdvancedBackupParams <Hashtable>]
         [-SharedPath <String>]
         [-AzureCredential <String>]
    @@ -525,12 +527,14 @@ 

    Syntax

    Copy-DbaDatabase [-Source <DbaInstanceParameter>] - [-SourceSqlCredential <PSCredential>] -Destination <DbaInstanceParameter[]> + [-SourceSqlCredential <PSCredential>] + -Destination <DbaInstanceParameter[]> [-DestinationSqlCredential <PSCredential>] [-Database <Object[]>] [-ExcludeDatabase <Object[]>] [-AllDatabases] - [-AzureCredential <String>] -DetachAttach + [-AzureCredential <String>] + -DetachAttach [-Reattach] [-SetSourceReadOnly] [-ReuseSourceFolderStructure] @@ -593,9 +597,9 @@
    Example: 8

    Copies database t from sqlcs to the same server (sqlcs) using the detach/copy/attach method. The new database will be named t_copy and the original database will be reattached.

    Required Parameters

    -Destination
    -

    Destination SQL Server. You may specify multiple servers. -Note that when using -BackupRestore with multiple servers, the backup will only be performed once and backups will be deleted at the end (if you didn't specify -NoBackupCleanup). -When using -DetachAttach with multiple servers, -Reattach must be specified.

    +

    Destination SQL Server. You may specify multiple servers.
    +Note that when using -BackupRestore with multiple servers, the backup will only be performed once and backups will be deleted at the end (if you didn't specify -NoBackupCleanup).
    +When using -DetachAttach with multiple servers, -Reattach must be specified.

    @@ -623,8 +627,8 @@
    -Destination
    -BackupRestore
    -

    If this switch is enabled, the copy-only backup and restore method will be used to migrate the database(s). This method requires that you specify either -SharedPath or -UseLastBackup. -Backups will be immediately deleted after use unless -NoBackupCleanup is specified.

    +

    If this switch is enabled, the copy-only backup and restore method will be used to migrate the database(s). This method requires that you specify either -SharedPath or -UseLastBackup.
    +Backups will be immediately deleted after use unless -NoBackupCleanup is specified.

    @@ -652,8 +656,8 @@
    -BackupRestore
    -DetachAttach
    -

    If this switch is enabled, the detach/copy/attach method is used to perform database migrations. No files are deleted on Source. If Destination attachment fails, the Source database will be -reattached. File copies are performed over administrative shares (\server\x$\mssql) using BITS. If a database is being mirrored, the mirror will be broken prior to migration.

    +

    If this switch is enabled, the detach/copy/attach method is used to perform database migrations. No files are deleted on Source. If Destination attachment fails, the Source database will be
    +reattached. File copies are performed over administrative shares (\server\x$\mssql) using BITS. If a database is being mirrored, the mirror will be broken prior to migration.

    @@ -710,8 +714,8 @@
    -Source
    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -740,8 +744,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -882,7 +886,7 @@
    -AdvancedBackupParams
    -SharedPath
    -

    Specifies the network location for the backup files. The SQL Server service accounts must have read/write permission on this path. +

    Specifies the network location for the backup files. The SQL Server service accounts must have read/write permission on this path.
    Can be either a full path 'c:\backups', a UNC path '\server\backups' or an Azure storage Account 'https://example.blob.core.windows.net/sql/'

    @@ -911,7 +915,7 @@
    -SharedPath
    -AzureCredential
    -

    The name of the credential on the SQL instance that can write to the AzureBaseUrl, only needed if using Storage access keys +

    The name of the credential on the SQL instance that can write to the AzureBaseUrl, only needed if using Storage access keys
    If using SAS credentials, the command will look for a credential with a name matching the AzureBaseUrl

    @@ -1080,7 +1084,7 @@
    -Reattach
    -SetSourceReadOnly
    -

    If this switch is enabled, all migrated databases are set to ReadOnly on Source prior to detach/attach & backup/restore. +

    If this switch is enabled, all migrated databases are set to ReadOnly on Source prior to detach/attach & backup/restore.
    If -Reattach is used, databases are set to read-only after reattaching.

    @@ -1109,9 +1113,9 @@
    -SetSourceReadOnly
    -ReuseSourceFolderStructure
    -

    If this switch is enabled, databases will be migrated to a data and log directory structure on Destination mirroring that used on Source. By default, the default data and log directories for -Destination will be used when the databases are migrated. -The structure on Source will be kept exactly, so consider this if you're migrating between different versions and use part of Microsoft's default Sql structure (MSSql12.INSTANCE, etc) +

    If this switch is enabled, databases will be migrated to a data and log directory structure on Destination mirroring that used on Source. By default, the default data and log directories for
    +Destination will be used when the databases are migrated.
    +The structure on Source will be kept exactly, so consider this if you're migrating between different versions and use part of Microsoft's default Sql structure (MSSql12.INSTANCE, etc)
    To reuse Destination folder structure, use the -WithReplace switch.

    @@ -1140,8 +1144,8 @@
    -ReuseSourceFolderStructure
    -IncludeSupportDbs
    -

    If this switch is enabled, ReportServer, ReportServerTempDb, SSISDB, and distribution databases will be copied if they exist on Source. A log file named $SOURCE-$destinstance-$date-Sqls.csv will be -written to the current directory. +

    If this switch is enabled, ReportServer, ReportServerTempDb, SSISDB, and distribution databases will be copied if they exist on Source. A log file named $SOURCE-$destinstance-$date-Sqls.csv will be
    +written to the current directory.
    Use of this switch requires -BackupRestore or -DetachAttach as well.

    @@ -1254,8 +1258,8 @@
    -InputObject
    -NoCopyOnly
    -

    If this switch is enabled, backups will be taken without COPY_ONLY. This will break the LSN backup chain, which will interfere with the restore chain of the database. -By default this switch is disabled, so backups will be taken with COPY_ONLY. This will preserve the LSN backup chain. +

    If this switch is enabled, backups will be taken without COPY_ONLY. This will break the LSN backup chain, which will interfere with the restore chain of the database.
    +By default this switch is disabled, so backups will be taken with COPY_ONLY. This will preserve the LSN backup chain.
    For more details please refer to this MSDN article - https://msdn.microsoft.com/en-us/library/ms191495.aspx

    @@ -1368,9 +1372,9 @@
    -SetSourceOffline
    -NewName
    -

    If a single database is being copied, this will be used to rename the database during the copy process. Any occurrence of the original database name in the physical file names will be replaced with -NewName -If specified with multiple databases a warning will be raised and the copy stopped +

    If a single database is being copied, this will be used to rename the database during the copy process. Any occurrence of the original database name in the physical file names will be replaced with
    +NewName
    +If specified with multiple databases a warning will be raised and the copy stopped
    This option is mutually exclusive of Prefix

    @@ -1399,7 +1403,7 @@
    -NewName
    -Prefix
    -

    All copied database names and physical files will be prefixed with this string +

    All copied database names and physical files will be prefixed with this string
    This option is mutually exclusive of NewName

    @@ -1428,8 +1432,8 @@
    -Prefix
    -Force
    -

    If this switch is enabled, existing databases on Destination with matching names from Source will be dropped. -If using -DetachReattach, mirrors will be broken and the database(s) dropped from Availability Groups. +

    If this switch is enabled, existing databases on Destination with matching names from Source will be dropped.
    +If using -DetachReattach, mirrors will be broken and the database(s) dropped from Availability Groups.
    If using -SetSourceReadonly, this will instantly roll back any open transactions that may be stopping the process.

    @@ -1458,8 +1462,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaDbAssembly.html b/Copy-DbaDbAssembly.html index 9aa165a1..82bdb788 100644 --- a/Copy-DbaDbAssembly.html +++ b/Copy-DbaDbAssembly.html @@ -524,7 +524,7 @@
    Example: 3

    Shows what would happen if the command were executed using force.

    Required Parameters

    -Source
    -

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    +

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    @@ -552,7 +552,7 @@
    -Source
    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    @@ -581,8 +581,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -611,8 +611,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -725,8 +725,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaDbCertificate.html b/Copy-DbaDbCertificate.html index 4f5b6c5d..e4d0493f 100644 --- a/Copy-DbaDbCertificate.html +++ b/Copy-DbaDbCertificate.html @@ -530,7 +530,7 @@
    Example: 2

    Copies database certificates for matching databases on sql02 and creates master keys if needed

    Required Parameters

    -Source
    -

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    +

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    @@ -558,7 +558,7 @@
    -Source
    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    @@ -587,8 +587,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -617,8 +617,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -871,8 +871,8 @@
    -DecryptionPassword
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaDbMail.html b/Copy-DbaDbMail.html index 11cfaedb..ddd687b0 100644 --- a/Copy-DbaDbMail.html +++ b/Copy-DbaDbMail.html @@ -530,7 +530,7 @@
    Example: 4

    Performs execution of function, and will throw a terminating exception if something breaks

    Required Parameters

    -Source
    -

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    +

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    @@ -558,7 +558,7 @@
    -Source
    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    @@ -587,7 +587,7 @@
    -Destination

    Optional Parameters

    -Type
    -

    Specifies the object type to migrate. Valid options are 'ConfigurationValues', 'Profiles', 'Accounts', and 'MailServers'. When Type is specified, all categories from the selected type will be +

    Specifies the object type to migrate. Valid options are 'ConfigurationValues', 'Profiles', 'Accounts', and 'MailServers'. When Type is specified, all categories from the selected type will be
    migrated.

    @@ -620,8 +620,8 @@
    -Type
    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -650,8 +650,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -708,8 +708,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaDbQueryStoreOption.html b/Copy-DbaDbQueryStoreOption.html index 3d7b6f51..e32402ff 100644 --- a/Copy-DbaDbQueryStoreOption.html +++ b/Copy-DbaDbQueryStoreOption.html @@ -517,7 +517,7 @@
    Example: 2

    Copy the Query Store configuration of the AdventureWorks database in the ServerA\SQL instance and apply it to the WorldWideTraders database in the ServerB\SQL Instance.

    Required Parameters

    -Source
    -

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2016 or higher.

    +

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2016 or higher.

    @@ -545,7 +545,7 @@
    -Source
    -SourceDatabase
    -

    Specifies the database to copy the Query Store configuration from.

    +

    Specifies the database to copy the Query Store configuration from.

    @@ -573,7 +573,7 @@
    -SourceDatabase
    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2016 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2016 or higher.

    @@ -602,8 +602,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -632,8 +632,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -746,8 +746,8 @@
    -AllDatabases
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaDbTableData.html b/Copy-DbaDbTableData.html index 79403a88..dfb50302 100644 --- a/Copy-DbaDbTableData.html +++ b/Copy-DbaDbTableData.html @@ -487,8 +487,8 @@

    Copy-DbaDbTableData

    Synopsis

    Copies data between SQL Server tables.

    Description

    -

    Copies data between SQL Server tables using SQL Bulk Copy. -The same can be achieved also using Invoke-DbaQuery and Write-DbaDbTableData but it will buffer the contents of that table in memory of the machine running the commands. +

    Copies data between SQL Server tables using SQL Bulk Copy.
    +The same can be achieved also using Invoke-DbaQuery and Write-DbaDbTableData but it will buffer the contents of that table in memory of the machine running the commands.
    This function prevents that by streaming a copy of the data in the most speedy and least resource-intensive way.

    Syntax

    Copy-DbaDbTableData
    @@ -612,8 +612,8 @@ 
    -SqlInstance
    -SqlCredential
    -

    Login to the source instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the source instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -670,8 +670,8 @@
    -Destination
    -DestinationSqlCredential
    -

    Login to the destination instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the destination instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -756,8 +756,8 @@
    -DestinationDatabase
    -Table
    -

    Specify a table to use as a source. You can specify a 2 or 3 part name. -If the object has special characters please wrap them in square brackets. +

    Specify a table to use as a source. You can specify a 2 or 3 part name.
    +If the object has special characters please wrap them in square brackets.
    Note: Cannot specify a view if a table value is provided

    @@ -786,8 +786,8 @@
    -Table
    -View
    -

    Specify a view to use as a source. You can specify a 2 or 3 part name (see examples). -If the object has special characters please wrap them in square brackets. +

    Specify a view to use as a source. You can specify a 2 or 3 part name (see examples).
    +If the object has special characters please wrap them in square brackets.
    Note: Cannot specify a table if a view value is provided

    @@ -816,9 +816,9 @@
    -View
    -Query
    -

    Define a query to use as a source. Note: 3 or 4 part object names may be used (see examples) -Ensure to select all required columns. -Calculated Columns or columns with default values may be excluded. +

    Define a query to use as a source. Note: 3 or 4 part object names may be used (see examples)
    +Ensure to select all required columns.
    +Calculated Columns or columns with default values may be excluded.
    Note: The workflow in the command requires that a valid -Table or -View parameter value be specified.

    @@ -987,7 +987,7 @@
    -NoTableLock
    -CheckConstraints
    -

    If this switch is enabled, the SqlBulkCopy option to process check constraints will be enabled. +

    If this switch is enabled, the SqlBulkCopy option to process check constraints will be enabled.
    Per Microsoft "Check constraints while data is being inserted. By default, constraints are not checked."

    @@ -1016,7 +1016,7 @@
    -CheckConstraints
    -FireTriggers
    -

    If this switch is enabled, the SqlBulkCopy option to fire insert triggers will be enabled. +

    If this switch is enabled, the SqlBulkCopy option to fire insert triggers will be enabled.
    Per Microsoft "When specified, cause the server to fire the insert triggers for the rows being inserted into the Database."

    @@ -1045,7 +1045,7 @@
    -FireTriggers
    -KeepIdentity
    -

    If this switch is enabled, the SqlBulkCopy option to preserve source identity values will be enabled. +

    If this switch is enabled, the SqlBulkCopy option to preserve source identity values will be enabled.
    Per Microsoft "Preserve source identity values. When not specified, identity values are assigned by the destination."

    @@ -1074,7 +1074,7 @@
    -KeepIdentity
    -KeepNulls
    -

    If this switch is enabled, the SqlBulkCopy option to preserve NULL values will be enabled. +

    If this switch is enabled, the SqlBulkCopy option to preserve NULL values will be enabled.
    Per Microsoft "Preserve null values in the destination table regardless of the settings for default values. When not specified, null values are replaced by default values where applicable."

    @@ -1187,8 +1187,8 @@
    -CommandTimeout
    -UseDefaultFileGroup
    -

    By default, this command will use a filegroup of the same name between -source and target. Use this flag if you'd instead like to use the +

    By default, this command will use a filegroup of the same name between
    +source and target. Use this flag if you'd instead like to use the
    default filegroup in the target database.

    @@ -1245,8 +1245,8 @@
    -InputObject
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaDbViewData.html b/Copy-DbaDbViewData.html index 7f8261a9..a76ea37f 100644 --- a/Copy-DbaDbViewData.html +++ b/Copy-DbaDbViewData.html @@ -487,7 +487,7 @@

    Copy-DbaDbViewData

    Synopsis

    Copies data from a SQL Server view to a table.

    Description

    -

    Copies data from a SQL Server view to a table using SQL Bulk Copy. +

    Copies data from a SQL Server view to a table using SQL Bulk Copy.
    With this function, a streaming copy will be done in the most speedy and least resource-intensive way.

    Syntax

    Copy-DbaDbViewData
    @@ -606,8 +606,8 @@ 
    -SqlInstance
    -SqlCredential
    -

    Login to the source instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the source instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -664,8 +664,8 @@
    -Destination
    -DestinationSqlCredential
    -

    Login to the destination instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the destination instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -750,7 +750,7 @@
    -DestinationDatabase
    -View
    -

    Specify a view to use as a source. You can specify a 2 or 3 part name (see examples). +

    Specify a view to use as a source. You can specify a 2 or 3 part name (see examples).
    If the object has special characters please wrap them in square brackets.

    @@ -779,9 +779,9 @@
    -View
    -Query
    -

    Define a query to use as a source. Note: 3 or 4 part object names may be used (see examples) -Ensure to select all required columns. -Calculated Columns or columns with default values may be excluded. +

    Define a query to use as a source. Note: 3 or 4 part object names may be used (see examples)
    +Ensure to select all required columns.
    +Calculated Columns or columns with default values may be excluded.
    Note: The workflow in the command requires that a valid -Table or -View parameter value be specified.

    @@ -950,7 +950,7 @@
    -NoTableLock
    -CheckConstraints
    -

    If this switch is enabled, the SqlBulkCopy option to process check constraints will be enabled. +

    If this switch is enabled, the SqlBulkCopy option to process check constraints will be enabled.
    Per Microsoft "Check constraints while data is being inserted. By default, constraints are not checked."

    @@ -979,7 +979,7 @@
    -CheckConstraints
    -FireTriggers
    -

    If this switch is enabled, the SqlBulkCopy option to fire insert triggers will be enabled. +

    If this switch is enabled, the SqlBulkCopy option to fire insert triggers will be enabled.
    Per Microsoft "When specified, cause the server to fire the insert triggers for the rows being inserted into the Database."

    @@ -1008,7 +1008,7 @@
    -FireTriggers
    -KeepIdentity
    -

    If this switch is enabled, the SqlBulkCopy option to preserve source identity values will be enabled. +

    If this switch is enabled, the SqlBulkCopy option to preserve source identity values will be enabled.
    Per Microsoft "Preserve source identity values. When not specified, identity values are assigned by the destination."

    @@ -1037,7 +1037,7 @@
    -KeepIdentity
    -KeepNulls
    -

    If this switch is enabled, the SqlBulkCopy option to preserve NULL values will be enabled. +

    If this switch is enabled, the SqlBulkCopy option to preserve NULL values will be enabled.
    Per Microsoft "Preserve null values in the destination table regardless of the settings for default values. When not specified, null values are replaced by default values where applicable."

    @@ -1150,8 +1150,8 @@
    -InputObject
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaEndpoint.html b/Copy-DbaEndpoint.html index 1cdc7077..fba8aa69 100644 --- a/Copy-DbaEndpoint.html +++ b/Copy-DbaEndpoint.html @@ -522,7 +522,7 @@
    Example: 3

    Shows what would happen if the command were executed using force.

    Required Parameters

    -Source
    -

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    +

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    @@ -550,7 +550,7 @@
    -Source
    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    @@ -579,8 +579,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -609,8 +609,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -723,8 +723,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaInstanceAudit.html b/Copy-DbaInstanceAudit.html index c6ae7ab1..0d29cc56 100644 --- a/Copy-DbaInstanceAudit.html +++ b/Copy-DbaInstanceAudit.html @@ -527,7 +527,7 @@
    Example: 4

    Copies audit audit1 from sqlserver-0 to sqlserver-1. The file path on sqlserver-1 will be set to 'C:\audit1'.

    Required Parameters

    -Source
    -

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    +

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    @@ -555,7 +555,7 @@
    -Source
    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    @@ -584,8 +584,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -614,8 +614,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -756,8 +756,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaInstanceAuditSpecification.html b/Copy-DbaInstanceAuditSpecification.html index 84ba4024..706a69cd 100644 --- a/Copy-DbaInstanceAuditSpecification.html +++ b/Copy-DbaInstanceAuditSpecification.html @@ -522,7 +522,7 @@
    Example: 3

    Shows what would happen if the command were executed using force.

    Required Parameters

    -Source
    -

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    +

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    @@ -550,7 +550,7 @@
    -Source
    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    @@ -579,8 +579,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -609,8 +609,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -723,8 +723,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaInstanceTrigger.html b/Copy-DbaInstanceTrigger.html index 7772e802..6cf860be 100644 --- a/Copy-DbaInstanceTrigger.html +++ b/Copy-DbaInstanceTrigger.html @@ -522,7 +522,7 @@
    Example: 3

    Shows what would happen if the command were executed using force.

    Required Parameters

    -Source
    -

    Source SQL Server.You must have sysadmin access and server version must be SQL Server version 2000 or greater.

    +

    Source SQL Server.You must have sysadmin access and server version must be SQL Server version 2000 or greater.

    @@ -550,7 +550,7 @@
    -Source
    -Destination
    -

    Destination Sql Server. You must have sysadmin access and server version must be SQL Server version 2000 or greater.

    +

    Destination Sql Server. You must have sysadmin access and server version must be SQL Server version 2000 or greater.

    @@ -579,8 +579,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -609,8 +609,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -723,8 +723,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaLinkedServer.html b/Copy-DbaLinkedServer.html index d95cf29b..51f8c4df 100644 --- a/Copy-DbaLinkedServer.html +++ b/Copy-DbaLinkedServer.html @@ -519,7 +519,7 @@
    Example: 2

    Copies over two SQL Server Linked Servers (SQL2K and SQL2K2) from sqlserver to sqlcluster. If the credential already exists on the destination, it will be dropped.

    Required Parameters

    -Source
    -

    Source SQL Server (2005 and above). You must have sysadmin access to both SQL Server and Windows.

    +

    Source SQL Server (2005 and above). You must have sysadmin access to both SQL Server and Windows.

    @@ -547,7 +547,7 @@
    -Source
    -Destination
    -

    Destination SQL Server (2005 and above). You must have sysadmin access to both SQL Server and Windows.

    +

    Destination SQL Server (2005 and above). You must have sysadmin access to both SQL Server and Windows.

    @@ -576,8 +576,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -606,8 +606,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -776,8 +776,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaLogin.html b/Copy-DbaLogin.html index a69de59f..4b84d645 100644 --- a/Copy-DbaLogin.html +++ b/Copy-DbaLogin.html @@ -509,7 +509,8 @@

    Syntax

    [<CommonParameters>] Copy-DbaLogin -Source <DbaInstanceParameter> - [-SourceSqlCredential <PSCredential>] -Destination <DbaInstanceParameter[]> + [-SourceSqlCredential <PSCredential>] + -Destination <DbaInstanceParameter[]> [-DestinationSqlCredential <PSCredential>] [-Login <Object[]>] [-ExcludeLogin <Object[]>] @@ -531,7 +532,8 @@

    Syntax

    [-DestinationSqlCredential <PSCredential>] [-Login <Object[]>] [-ExcludeLogin <Object[]>] - [-ExcludeSystemLogins] -OutFile <String> + [-ExcludeSystemLogins] + -OutFile <String> [-LoginRenameHashtable <Hashtable>] [-KillActiveConnection] [-NewSid] @@ -544,7 +546,8 @@

    Syntax

    [<CommonParameters>] Copy-DbaLogin - [-SourceSqlCredential <PSCredential>] -Destination <DbaInstanceParameter[]> + [-SourceSqlCredential <PSCredential>] + -Destination <DbaInstanceParameter[]> [-DestinationSqlCredential <PSCredential>] [-Login <Object[]>] [-ExcludeLogin <Object[]>] @@ -631,7 +634,7 @@
    Example: 8

    Copies the three specified logins to 'localhost' and renames them according to the LoginRenameHashTable.

    Required Parameters

    -Source
    -

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    +

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    @@ -659,7 +662,7 @@
    -Source
    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    @@ -687,7 +690,7 @@
    -Destination
    -OutFile
    -

    Calls Export-DbaLogin and exports all logins to a T-SQL formatted file. This does not perform a copy, so no destination is required.

    +

    Calls Export-DbaLogin and exports all logins to a T-SQL formatted file. This does not perform a copy, so no destination is required.

    @@ -716,8 +719,8 @@
    -OutFile

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -746,8 +749,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -1084,8 +1087,8 @@
    -ExcludePermissionSync
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaPolicyManagement.html b/Copy-DbaPolicyManagement.html index 6e11db3b..1e996f4f 100644 --- a/Copy-DbaPolicyManagement.html +++ b/Copy-DbaPolicyManagement.html @@ -527,7 +527,7 @@
    Example: 4

    Copies only one policy, 'xp_cmdshell must be disabled' from sqlserver2014a to sqlcluster. No conditions are migrated.

    Required Parameters

    -Source
    -

    Source SQL Server.You must have sysadmin access and server version must be SQL Server version 2008 or higher.

    +

    Source SQL Server.You must have sysadmin access and server version must be SQL Server version 2008 or higher.

    @@ -555,7 +555,7 @@
    -Source
    -Destination
    -

    Destination Sql Server. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

    +

    Destination Sql Server. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

    @@ -584,8 +584,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -614,8 +614,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -784,8 +784,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaRegServer.html b/Copy-DbaRegServer.html index ce0fdf81..66dd72eb 100644 --- a/Copy-DbaRegServer.html +++ b/Copy-DbaRegServer.html @@ -523,7 +523,7 @@
    Example: 3
    If SwitchServerName is not specified, "sqlcluster" will be skipped.

    Required Parameters

    -Source
    -

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    +

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    @@ -551,7 +551,7 @@
    -Source
    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    @@ -580,8 +580,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -610,8 +610,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -640,7 +640,7 @@
    -DestinationSqlCredential
    -Group
    -

    This is an auto-populated array that contains your Central Management Server top-level groups on Source. You can specify one, many or none. +

    This is an auto-populated array that contains your Central Management Server top-level groups on Source. You can specify one, many or none.
    If Group is not specified, all groups in your Central Management Server will be copied.

    @@ -669,7 +669,7 @@
    -Group
    -SwitchServerName
    -

    If this switch is enabled, all instance names will be changed from Source to Destination. +

    If this switch is enabled, all instance names will be changed from Source to Destination.
    Central Management Server does not allow you to add a shared registered server with the same name as the Configuration Server.

    @@ -726,8 +726,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaResourceGovernor.html b/Copy-DbaResourceGovernor.html index 05989816..f7a10082 100644 --- a/Copy-DbaResourceGovernor.html +++ b/Copy-DbaResourceGovernor.html @@ -521,7 +521,7 @@
    Example: 3

    Shows what would happen if the command were executed.

    Required Parameters

    -Source
    -

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

    +

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

    @@ -549,7 +549,7 @@
    -Source
    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2008 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2008 or higher.

    @@ -578,8 +578,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -608,8 +608,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -722,8 +722,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaSpConfigure.html b/Copy-DbaSpConfigure.html index c1292d12..3f679f0d 100644 --- a/Copy-DbaSpConfigure.html +++ b/Copy-DbaSpConfigure.html @@ -524,7 +524,7 @@
    Example: 4

    Shows what would happen if the command were executed.

    Required Parameters

    -Source
    -

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    +

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    @@ -552,7 +552,7 @@
    -Source
    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    @@ -581,8 +581,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -611,8 +611,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -697,8 +697,8 @@
    -ExcludeConfigName
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaSsisCatalog.html b/Copy-DbaSsisCatalog.html index 42c3cd90..db8c0ad0 100644 --- a/Copy-DbaSsisCatalog.html +++ b/Copy-DbaSsisCatalog.html @@ -531,7 +531,7 @@
    Example: 4

    Deploy entire SSIS catalog to an instance without a destination catalog. User prompts for creating the catalog on Destination will be bypassed.

    Required Parameters

    -Source
    -

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2012 or higher.

    +

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2012 or higher.

    @@ -559,7 +559,7 @@
    -Source
    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2012 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2012 or higher.

    @@ -588,8 +588,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -618,8 +618,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -816,8 +816,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaStartupProcedure.html b/Copy-DbaStartupProcedure.html index f99b1b6b..05d3500f 100644 --- a/Copy-DbaStartupProcedure.html +++ b/Copy-DbaStartupProcedure.html @@ -526,7 +526,7 @@
    Example: 4

    Shows what would happen if the command were executed using force.

    Required Parameters

    -Source
    -

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    +

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    @@ -554,7 +554,7 @@
    -Source
    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    @@ -583,8 +583,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -613,8 +613,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -727,8 +727,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaSystemDbUserObject.html b/Copy-DbaSystemDbUserObject.html index 5de7463a..645455cb 100644 --- a/Copy-DbaSystemDbUserObject.html +++ b/Copy-DbaSystemDbUserObject.html @@ -513,7 +513,7 @@
    Example: 1

    Copies user objects found in system databases master, msdb and model from sqlserver2014a instance to the sqlcluster instance.

    Required Parameters

    -Source
    -

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    +

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    @@ -541,7 +541,7 @@
    -Source
    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    @@ -570,8 +570,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -600,8 +600,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -686,8 +686,8 @@
    -Classic
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaXESession.html b/Copy-DbaXESession.html index 1d952da1..f492fa11 100644 --- a/Copy-DbaXESession.html +++ b/Copy-DbaXESession.html @@ -525,7 +525,7 @@
    Example: 4

    Copies only the Extended Events named CheckQueries and MonitorUserDefinedException from sqlserver2014a to sqlcluster.

    Required Parameters

    -Source
    -

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    +

    Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

    @@ -553,7 +553,7 @@
    -Source
    -Destination
    -

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    +

    Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

    @@ -582,8 +582,8 @@
    -Destination

    Optional Parameters

    -SourceSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -612,8 +612,8 @@
    -SourceSqlCredential
    -DestinationSqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -726,8 +726,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Copy-DbaXESessionTemplate.html b/Copy-DbaXESessionTemplate.html index 032790a0..2f6e1bf0 100644 --- a/Copy-DbaXESessionTemplate.html +++ b/Copy-DbaXESessionTemplate.html @@ -566,8 +566,8 @@
    -Destination
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Disable-DbaAgHadr.html b/Disable-DbaAgHadr.html index b92b71e1..67b5426b 100644 --- a/Disable-DbaAgHadr.html +++ b/Disable-DbaAgHadr.html @@ -487,7 +487,7 @@

    Disable-DbaAgHadr

    Synopsis

    Disables the Hadr service setting on the specified SQL Server.

    Description

    -

    In order to build an AG a cluster has to be built and then the Hadr enabled for the SQL Server +

    In order to build an AG a cluster has to be built and then the Hadr enabled for the SQL Server
    service. This function disables that feature for the SQL Server service.

    Syntax

    Disable-DbaAgHadr
    @@ -517,7 +517,7 @@ 
    Example: 3

    Sets Hadr service to disabled for the instance dev1 on sq2012, and restart the service to apply the change.

    Required Parameters

    -SqlInstance
    -

    The target SQL Server instance or instances.

    +

    The target SQL Server instance or instances.

    @@ -602,8 +602,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Disable-DbaDbEncryption.html b/Disable-DbaDbEncryption.html index f2fbdb0a..b3923247 100644 --- a/Disable-DbaDbEncryption.html +++ b/Disable-DbaDbEncryption.html @@ -548,8 +548,8 @@
    -SqlInstance
    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -634,7 +634,7 @@
    -InputObject
    -NoEncryptionKeyDrop
    -

    Encryption is not fully disabled until the Encryption Key is dropped. Consequently, Disable-DbaDbEncryption will drop the key by default. +

    Encryption is not fully disabled until the Encryption Key is dropped. Consequently, Disable-DbaDbEncryption will drop the key by default.
    Use this to keep the encryption key. Note that if you keep your key, your database will not be fully decrypted.

    @@ -663,8 +663,8 @@
    -NoEncryptionKeyDrop
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and disables you to catch exceptions with your own try/catch.

    diff --git a/Disable-DbaFilestream.html b/Disable-DbaFilestream.html index b9a9775f..d4f81de6 100644 --- a/Disable-DbaFilestream.html +++ b/Disable-DbaFilestream.html @@ -518,7 +518,7 @@
    Example: 3

    Using this pipeline you can scan a range of SQL instances and disable filestream on only those on which it's enabled.

    Required Parameters

    -SqlInstance
    -

    The target SQL Server instance or instances. Defaults to localhost.

    +

    The target SQL Server instance or instances. Defaults to localhost.

    @@ -547,8 +547,8 @@
    -SqlInstance

    Optional Parameters

    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -633,8 +633,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Disable-DbaForceNetworkEncryption.html b/Disable-DbaForceNetworkEncryption.html index fc67393a..90c06880 100644 --- a/Disable-DbaForceNetworkEncryption.html +++ b/Disable-DbaForceNetworkEncryption.html @@ -572,8 +572,8 @@
    -Credential
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Disable-DbaHideInstance.html b/Disable-DbaHideInstance.html index ed5c3fee..f0f2f429 100644 --- a/Disable-DbaHideInstance.html +++ b/Disable-DbaHideInstance.html @@ -572,8 +572,8 @@
    -Credential
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Disable-DbaReplDistributor.html b/Disable-DbaReplDistributor.html index 58bde0ae..15df95e8 100644 --- a/Disable-DbaReplDistributor.html +++ b/Disable-DbaReplDistributor.html @@ -514,7 +514,7 @@
    Example: 2
    regardless of whether or not dependent publishing and distribution objects are uninstalled.

    Required Parameters

    -SqlInstance
    -

    The target SQL Server instance or instances.

    +

    The target SQL Server instance or instances.

    @@ -543,8 +543,8 @@
    -SqlInstance

    Optional Parameters

    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -573,8 +573,8 @@
    -SqlCredential
    -Force
    -

    Specify whether or not replication objects are removed from the server, even if a remote Distributor cannot be reached. -If true, the publishing and Distributor configuration at the current server is uninstalled regardless of whether or not dependent publishing and distribution objects are uninstalled. +

    Specify whether or not replication objects are removed from the server, even if a remote Distributor cannot be reached.
    +If true, the publishing and Distributor configuration at the current server is uninstalled regardless of whether or not dependent publishing and distribution objects are uninstalled.
    If false, the publisher and distribution databases must already be uninstalled, and no local databases are enabled for publishing.

    @@ -603,8 +603,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Disable-DbaReplPublishing.html b/Disable-DbaReplPublishing.html index 6a930b07..aceab56f 100644 --- a/Disable-DbaReplPublishing.html +++ b/Disable-DbaReplPublishing.html @@ -515,7 +515,7 @@
    Example: 2
    if the Publisher is on a remote server that cannot be reached.

    Required Parameters

    -SqlInstance
    -

    The target SQL Server instance or instances.

    +

    The target SQL Server instance or instances.

    @@ -544,8 +544,8 @@
    -SqlInstance

    Optional Parameters

    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -574,8 +574,8 @@
    -SqlCredential
    -Force
    -

    Specifies whether the Publisher is uninstalled from the Distributor without verifying that Publisher has also uninstalled the Distributor, if the Publisher is on a separate server. -If true, all the replication objects associated with the Publisher are dropped even if the Publisher is on a remote server that cannot be reached. +

    Specifies whether the Publisher is uninstalled from the Distributor without verifying that Publisher has also uninstalled the Distributor, if the Publisher is on a separate server.
    +If true, all the replication objects associated with the Publisher are dropped even if the Publisher is on a remote server that cannot be reached.
    If false, replication first verifies that the remote Publisher has uninstalled the Distributor.

    @@ -604,8 +604,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Disable-DbaStartupProcedure.html b/Disable-DbaStartupProcedure.html index ebb7ced6..4692031a 100644 --- a/Disable-DbaStartupProcedure.html +++ b/Disable-DbaStartupProcedure.html @@ -487,8 +487,8 @@

    Disable-DbaStartupProcedure

    Synopsis

    Disables the automatic execution of procedure(s) that are set to execute automatically each time the SQL Server service is started

    Description

    -

    Used to revoke the designation of one or more stored procedures to automatically execute when the SQL Server service is started. -Equivalent to running the system stored procedure sp_procoption with @OptionValue = off +

    Used to revoke the designation of one or more stored procedures to automatically execute when the SQL Server service is started.
    +Equivalent to running the system stored procedure sp_procoption with @OptionValue = off
    Returns the SMO StoredProcedure object for procedures affected.

    Syntax

    Disable-DbaStartupProcedure
    @@ -549,8 +549,8 @@ 
    -SqlInstance
    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -635,8 +635,8 @@
    -InputObject
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Disable-DbaTraceFlag.html b/Disable-DbaTraceFlag.html index cc9c7377..5dec2797 100644 --- a/Disable-DbaTraceFlag.html +++ b/Disable-DbaTraceFlag.html @@ -487,7 +487,7 @@

    Disable-DbaTraceFlag

    Synopsis

    Disable a Global Trace Flag that is currently running

    Description

    -

    The function will disable a Trace Flag that is currently running globally on the SQL Server instance(s) listed. +

    The function will disable a Trace Flag that is currently running globally on the SQL Server instance(s) listed.
    These are not persisted after a restart, use Set-DbaStartupParameter to set them to persist after restarts.

    Syntax

    Disable-DbaTraceFlag
    @@ -507,7 +507,7 @@ 
    Example: 1

    Disable the globally running trace flag 3226 on SQL Server instance sql2016

    Required Parameters

    -SqlInstance
    -

    The target SQL Server instance or instances.

    +

    The target SQL Server instance or instances.

    @@ -535,7 +535,7 @@
    -SqlInstance
    -TraceFlag
    -

    Trace flag number to enable globally

    +

    Trace flag number to enable globally

    @@ -564,8 +564,8 @@
    -TraceFlag

    Optional Parameters

    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -594,8 +594,8 @@
    -SqlCredential
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Disconnect-DbaInstance.html b/Disconnect-DbaInstance.html index f0faae18..26362528 100644 --- a/Disconnect-DbaInstance.html +++ b/Disconnect-DbaInstance.html @@ -544,8 +544,8 @@
    -InputObject
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Dismount-DbaDatabase.html b/Dismount-DbaDatabase.html index 30358dff..9a69e87d 100644 --- a/Dismount-DbaDatabase.html +++ b/Dismount-DbaDatabase.html @@ -500,7 +500,8 @@

    Syntax

    [<CommonParameters>] Dismount-DbaDatabase -SqlInstance <DbaInstanceParameter[]> - [-SqlCredential <PSCredential>] -Database <String[]> + [-SqlCredential <PSCredential>] + -Database <String[]> [-UpdateStatistics] [-Force] [-EnableException] @@ -509,7 +510,8 @@

    Syntax

    [<CommonParameters>] Dismount-DbaDatabase - [-SqlCredential <PSCredential>] -InputObject <Database[]> + [-SqlCredential <PSCredential>] + -InputObject <Database[]> [-UpdateStatistics] [-Force] [-EnableException] @@ -537,7 +539,7 @@
    Example: 3

    Shows what would happen if the command were to execute (without actually executing the detach/break/remove commands).

    Required Parameters

    -SqlInstance
    -

    The target SQL Server instance or instances.

    +

    The target SQL Server instance or instances.

    @@ -565,7 +567,7 @@
    -SqlInstance
    -Database
    -

    The database(s) to detach.

    +

    The database(s) to detach.

    @@ -593,7 +595,7 @@
    -Database
    -InputObject
    -

    A collection of databases (such as returned by Get-DbaDatabase), to be detached.

    +

    A collection of databases (such as returned by Get-DbaDatabase), to be detached.

    @@ -622,8 +624,8 @@
    -InputObject

    Optional Parameters

    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -708,8 +710,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Enable-DbaAgHadr.html b/Enable-DbaAgHadr.html index 266a6174..9db6302b 100644 --- a/Enable-DbaAgHadr.html +++ b/Enable-DbaAgHadr.html @@ -487,7 +487,7 @@

    Enable-DbaAgHadr

    Synopsis

    Enables the Hadr service setting on the specified SQL Server.

    Description

    -

    In order to build an AG a cluster has to be built and then the Hadr enabled for the SQL Server +

    In order to build an AG a cluster has to be built and then the Hadr enabled for the SQL Server
    service. This function enables that feature for the SQL Server service.

    Syntax

    Enable-DbaAgHadr
    @@ -517,7 +517,7 @@ 
    Example: 3

    Sets Hadr service to disabled for the instance dev1 on sq2012, and restart the service to apply the change.

    Required Parameters

    -SqlInstance
    -

    The target SQL Server instance or instances.

    +

    The target SQL Server instance or instances.

    @@ -602,8 +602,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Enable-DbaDbEncryption.html b/Enable-DbaDbEncryption.html index 8354e67d..0b3f5244 100644 --- a/Enable-DbaDbEncryption.html +++ b/Enable-DbaDbEncryption.html @@ -547,8 +547,8 @@
    -SqlInstance
    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -605,8 +605,8 @@
    -Database
    -EncryptorName
    -

    If an Encryption Key does not exist in the database, this command will attempt to create one. This parameter specifies the name of the certificate in master that should be used and tries to find one -if one is not specified. +

    If an Encryption Key does not exist in the database, this command will attempt to create one. This parameter specifies the name of the certificate in master that should be used and tries to find one
    +if one is not specified.
    In order to encrypt the database encryption key with an asymmetric key, you must use an asymmetric key that resides on an extensible key management provider.

    @@ -663,7 +663,7 @@
    -InputObject
    -Force
    -

    By default, this command will not encrypt a database unless the cert has been backed up +

    By default, this command will not encrypt a database unless the cert has been backed up
    Use Force to enable encryption even though the specified cert has not been backed up

    @@ -692,8 +692,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Enable-DbaFilestream.html b/Enable-DbaFilestream.html index f0511cd5..13d91504 100644 --- a/Enable-DbaFilestream.html +++ b/Enable-DbaFilestream.html @@ -517,7 +517,7 @@
    Example: 2

    Using this pipeline you can scan a range of SQL instances and enable filestream on only those on which it's disabled.

    Required Parameters

    -SqlInstance
    -

    The target SQL Server instance or instances. Defaults to localhost.

    +

    The target SQL Server instance or instances. Defaults to localhost.

    @@ -546,8 +546,8 @@
    -SqlInstance

    Optional Parameters

    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -604,9 +604,9 @@
    -Credential
    -FileStreamLevel
    -

    The level to of FileStream to be enabled: -1 or TSql - T-Sql Access Only -2 or TSqlIoStreaming - T-Sql and Win32 access enabled +

    The level to of FileStream to be enabled:
    +1 or TSql - T-Sql Access Only
    +2 or TSqlIoStreaming - T-Sql and Win32 access enabled
    3 or TSqlIoStreamingRemoteClient T-Sql, Win32 and Remote access enabled

    @@ -695,8 +695,8 @@
    -Force
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Enable-DbaForceNetworkEncryption.html b/Enable-DbaForceNetworkEncryption.html index 76141232..5c1c1f8d 100644 --- a/Enable-DbaForceNetworkEncryption.html +++ b/Enable-DbaForceNetworkEncryption.html @@ -572,8 +572,8 @@
    -Credential
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Enable-DbaHideInstance.html b/Enable-DbaHideInstance.html index e225e160..bf10fb36 100644 --- a/Enable-DbaHideInstance.html +++ b/Enable-DbaHideInstance.html @@ -572,8 +572,8 @@
    -Credential
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Enable-DbaReplDistributor.html b/Enable-DbaReplDistributor.html index a7b19253..5a77ebef 100644 --- a/Enable-DbaReplDistributor.html +++ b/Enable-DbaReplDistributor.html @@ -512,7 +512,7 @@
    Example: 2

    Enables distribution for the mssql1 instance and names the distribution database repDatabase.

    Required Parameters

    -SqlInstance
    -

    The target SQL Server instance or instances.

    +

    The target SQL Server instance or instances.

    @@ -541,8 +541,8 @@
    -SqlInstance

    Optional Parameters

    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -571,7 +571,7 @@
    -SqlCredential
    -DistributionDatabase
    -

    Name of the distribution database that will be created. +

    Name of the distribution database that will be created.
    Default is 'distribution'.

    @@ -600,8 +600,8 @@
    -DistributionDatabase
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Enable-DbaReplPublishing.html b/Enable-DbaReplPublishing.html index 60f076ec..84ca952f 100644 --- a/Enable-DbaReplPublishing.html +++ b/Enable-DbaReplPublishing.html @@ -509,7 +509,7 @@
    Example: 1

    Attempts to set the procedure '[dbo].[StartUpProc1]' in the master database of SqlBox1\Instance2 for automatic execution when the instance is started.

    Required Parameters

    -SqlInstance
    -

    The target SQL Server instance or instances.

    +

    The target SQL Server instance or instances.

    @@ -538,8 +538,8 @@
    -SqlInstance

    Optional Parameters

    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -568,7 +568,7 @@
    -SqlCredential
    -SnapshotShare
    -

    The share used to access snapshot files. +

    The share used to access snapshot files.
    The default is the ReplData folder within the InstallDataDirectory for the instance.

    @@ -597,7 +597,7 @@
    -SnapshotShare
    -PublisherSqlLogin
    -

    If this is used the PublisherSecurity will be set to use this. +

    If this is used the PublisherSecurity will be set to use this.
    If not specified WindowsAuthentication will be used - this is the default, and recommended method.

    @@ -626,8 +626,8 @@
    -PublisherSqlLogin
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Enable-DbaStartupProcedure.html b/Enable-DbaStartupProcedure.html index cb08c56b..c8135742 100644 --- a/Enable-DbaStartupProcedure.html +++ b/Enable-DbaStartupProcedure.html @@ -487,8 +487,8 @@

    Enable-DbaStartupProcedure

    Synopsis

    Sets a procedure to execute automatically each time the SQL Server service is started

    Description

    -

    Used to designate one or more stored procedures to automatically execute when the SQL Server service is started. -Equivalent to running the system stored procedure sp_procoption with @OptionValue = on +

    Used to designate one or more stored procedures to automatically execute when the SQL Server service is started.
    +Equivalent to running the system stored procedure sp_procoption with @OptionValue = on
    Returns the SMO StoredProcedure object for procedures affected.

    Syntax

    Enable-DbaStartupProcedure
    @@ -515,7 +515,7 @@ 
    Example: 2

    Attempts to set the procedure '[dbo].[StartUpProc1]' in the master database of winserver\sqlexpress and sql2016 for automatic execution when the instance is started. Connects using sqladmin credential

    Required Parameters

    -SqlInstance
    -

    The target SQL Server instance or instances.

    +

    The target SQL Server instance or instances.

    @@ -544,8 +544,8 @@
    -SqlInstance

    Optional Parameters

    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -602,8 +602,8 @@
    -StartupProcedure
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Enable-DbaTraceFlag.html b/Enable-DbaTraceFlag.html index f4f10daf..a143c758 100644 --- a/Enable-DbaTraceFlag.html +++ b/Enable-DbaTraceFlag.html @@ -487,7 +487,7 @@

    Enable-DbaTraceFlag

    Synopsis

    Enable Global Trace Flag(s)

    Description

    -

    The function will set one or multiple trace flags on the SQL Server instance(s) listed. +

    The function will set one or multiple trace flags on the SQL Server instance(s) listed.
    These are not persisted after a restart, use Set-DbaStartupParameter to set them to persist after restarts.

    Syntax

    Enable-DbaTraceFlag
    @@ -511,7 +511,7 @@ 
    Example: 2

    Enable multiple trace flags on SQL Server instance sql2016

    Required Parameters

    -SqlInstance
    -

    The target SQL Server instance or instances.

    +

    The target SQL Server instance or instances.

    @@ -539,7 +539,7 @@
    -SqlInstance
    -TraceFlag
    -

    Trace flag number(s) to enable globally

    +

    Trace flag number(s) to enable globally

    @@ -568,8 +568,8 @@
    -TraceFlag

    Optional Parameters

    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -598,8 +598,8 @@
    -SqlCredential
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Expand-DbaDbLogFile.html b/Expand-DbaDbLogFile.html index 9050e3a6..ab688a9a 100644 --- a/Expand-DbaDbLogFile.html +++ b/Expand-DbaDbLogFile.html @@ -488,35 +488,35 @@

    Synopsis

    This command will help you to automatically grow your transaction log file in a responsible way (preventing the generation of too many VLFs).

    Description

    As you may already know, having a transaction log file with too many Virtual Log Files (VLFs) can hurt your database performance in many ways.

    -

    Example: +

    Example:
    Too many VLFs can cause transaction log backups to slow down and can also slow down database recovery and, in extreme cases, even impact insert/update/delete performance.

    -

    References: -http://www.sqlskills.com/blogs/kimberly/transaction-log-vlfs-too-many-or-too-few/ -http://blogs.msdn.com/b/saponsqlserver/archive/2012/02/22/too-many-virtual-log-files-vlfs-can-cause-slow-database-recovery.aspx +

    References:
    +http://www.sqlskills.com/blogs/kimberly/transaction-log-vlfs-too-many-or-too-few/
    +http://blogs.msdn.com/b/saponsqlserver/archive/2012/02/22/too-many-virtual-log-files-vlfs-can-cause-slow-database-recovery.aspx
    http://www.brentozar.com/blitz/high-virtual-log-file-vlf-count/

    In order to get rid of this fragmentation we need to grow the file taking the following into consideration:

    • How many VLFs are created when we perform a grow operation or when an auto-grow is invoked?

    Note: In SQL Server 2014 this algorithm has changed (http://www.sqlskills.com/blogs/paul/important-change-vlf-creation-algorithm-sql-server-2014/)

    -

    Attention: -We are growing in MB instead of GB because of known issue prior to SQL 2012: -More detail here: -http://www.sqlskills.com/BLOGS/PAUL/post/Bug-log-file-growth-broken-for-multiples-of-4GB.aspx -and -http://connect.microsoft.com/SqlInstance/feedback/details/481594/log-growth-not-working-properly-with-specific-growth-sizes-vlfs-also-not-created-appropriately -or +

    Attention:
    +We are growing in MB instead of GB because of known issue prior to SQL 2012:
    +More detail here:
    +http://www.sqlskills.com/BLOGS/PAUL/post/Bug-log-file-growth-broken-for-multiples-of-4GB.aspx
    +and
    +http://connect.microsoft.com/SqlInstance/feedback/details/481594/log-growth-not-working-properly-with-specific-growth-sizes-vlfs-also-not-created-appropriately
    +or
    https://connect.microsoft.com/SqlInstance/feedback/details/357502/transaction-log-file-size-will-not-grow-exactly-4gb-when-filegrowth-4gb

    -

    Understanding related problems: -http://www.sqlskills.com/blogs/kimberly/transaction-log-vlfs-too-many-or-too-few/ -http://blogs.msdn.com/b/saponsqlserver/archive/2012/02/22/too-many-virtual-log-files-vlfs-can-cause-slow-database-recovery.aspx +

    Understanding related problems:
    +http://www.sqlskills.com/blogs/kimberly/transaction-log-vlfs-too-many-or-too-few/
    +http://blogs.msdn.com/b/saponsqlserver/archive/2012/02/22/too-many-virtual-log-files-vlfs-can-cause-slow-database-recovery.aspx
    http://www.brentozar.com/blitz/high-virtual-log-file-vlf-count/

    -

    Known bug before SQL Server 2012 -http://www.sqlskills.com/BLOGS/PAUL/post/Bug-log-file-growth-broken-for-multiples-of-4GB.aspx -http://connect.microsoft.com/SqlInstance/feedback/details/481594/log-growth-not-working-properly-with-specific-growth-sizes-vlfs-also-not-created-appropriately +

    Known bug before SQL Server 2012
    +http://www.sqlskills.com/BLOGS/PAUL/post/Bug-log-file-growth-broken-for-multiples-of-4GB.aspx
    +http://connect.microsoft.com/SqlInstance/feedback/details/481594/log-growth-not-working-properly-with-specific-growth-sizes-vlfs-also-not-created-appropriately
    https://connect.microsoft.com/SqlInstance/feedback/details/357502/transaction-log-file-size-will-not-grow-exactly-4gb-when-filegrowth-4gb

    -

    How it works? -The transaction log will grow in chunks until it reaches the desired size. +

    How it works?
    +The transaction log will grow in chunks until it reaches the desired size.
    Example: If you have a log file with 8192MB and you say that the target size is 81920MB (80GB) it will grow in chunks of 8192MB until it reaches 81920MB. 8192 -> 16384 -> 24576 ... 73728 -> 81920

    Syntax

    Expand-DbaDbLogFile
    @@ -577,7 +577,7 @@ 
    Example: 5
    R:\MSSQL\Backup for the required backups.

    Required Parameters

    -SqlInstance
    -

    The target SQL Server instance or instances.

    +

    The target SQL Server instance or instances.

    @@ -605,7 +605,7 @@
    -SqlInstance
    -TargetLogSize
    -

    Specifies the target size of the transaction log file in megabytes.

    +

    Specifies the target size of the transaction log file in megabytes.

    @@ -633,7 +633,7 @@
    -TargetLogSize
    -ShrinkLogFile
    -

    If this switch is enabled, your transaction log files will be shrunk.

    +

    If this switch is enabled, your transaction log files will be shrunk.

    @@ -661,7 +661,7 @@
    -ShrinkLogFile
    -ShrinkSize
    -

    Specifies the target size of the transaction log file for the shrink operation in megabytes.

    +

    Specifies the target size of the transaction log file for the shrink operation in megabytes.

    @@ -690,8 +690,8 @@
    -ShrinkSize

    Optional Parameters

    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -776,7 +776,7 @@
    -ExcludeDatabase
    -IncrementSize
    -

    Specifies the amount the transaction log should grow in megabytes. If this value differs from the suggested value based on your TargetLogSize, you will be prompted to confirm your choice. +

    Specifies the amount the transaction log should grow in megabytes. If this value differs from the suggested value based on your TargetLogSize, you will be prompted to confirm your choice.
    This value will be calculated if not specified.

    @@ -805,7 +805,7 @@
    -IncrementSize
    -LogFileId
    -

    Specifies the file number(s) of additional transaction log files to grow. +

    Specifies the file number(s) of additional transaction log files to grow.
    If this value is not specified, only the first transaction log file will be processed.

    @@ -834,7 +834,7 @@
    -LogFileId
    -BackupDirectory
    -

    Specifies the location of your backups. Backups must be performed to shrink the transaction log. +

    Specifies the location of your backups. Backups must be performed to shrink the transaction log.
    If this value is not specified, the SQL Server instance's default backup directory will be used.

    @@ -863,7 +863,7 @@
    -BackupDirectory
    -ExcludeDiskSpaceValidation
    -

    If this switch is enabled, the validation for enough disk space using Get-DbaDiskSpace command will be skipped. +

    If this switch is enabled, the validation for enough disk space using Get-DbaDiskSpace command will be skipped.
    This can be useful when you know that you have enough space to grow your TLog but you don't have PowerShell Remoting enabled to validate it.

    @@ -892,8 +892,8 @@
    -ExcludeDiskSpaceValidation
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Export-DbaBinaryFile.html b/Export-DbaBinaryFile.html index 1848c00c..f138c0ea 100644 --- a/Export-DbaBinaryFile.html +++ b/Export-DbaBinaryFile.html @@ -562,8 +562,8 @@
    -SqlInstance
    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -620,11 +620,11 @@
    -Database
    -Table
    -

    Define a specific table you would like to query. You can specify up to three-part name like db.sch.tbl. -If the object has special characters please wrap them in square brackets [ ]. -Using dbo.First.Table will try to find table named 'Table' on schema 'First' and database 'dbo'. -The correct way to find table named 'First.Table' on schema 'dbo' is by passing dbo.[First.Table] -Any actual usage of the ] must be escaped by duplicating the ] character. +

    Define a specific table you would like to query. You can specify up to three-part name like db.sch.tbl.
    +If the object has special characters please wrap them in square brackets [ ].
    +Using dbo.First.Table will try to find table named 'Table' on schema 'First' and database 'dbo'.
    +The correct way to find table named 'First.Table' on schema 'dbo' is by passing dbo.[First.Table]
    +Any actual usage of the ] must be escaped by duplicating the ] character.
    The correct way to find a table Name] in schema Schema.Name is by passing [Schema.Name].[Name]]]

    @@ -765,7 +765,7 @@
    -Path
    -Query
    -

    Allows you to specify a custom query to use to return the data. If not specified, we'll try out best to figure it out. +

    Allows you to specify a custom query to use to return the data. If not specified, we'll try out best to figure it out.
    Example query: "SELECT [fn], [data] FROM tempdb.dbo.files"

    @@ -850,8 +850,8 @@
    -InputObject
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Export-DbaCredential.html b/Export-DbaCredential.html index 6d1a8be9..aecdf6e7 100644 --- a/Export-DbaCredential.html +++ b/Export-DbaCredential.html @@ -569,8 +569,8 @@
    -Identity
    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -767,8 +767,8 @@
    -InputObject
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Export-DbaDacPackage.html b/Export-DbaDacPackage.html index 443795d8..d219c584 100644 --- a/Export-DbaDacPackage.html +++ b/Export-DbaDacPackage.html @@ -546,7 +546,7 @@
    Example: 4
    behind the scenes. As noted the generated filename will contain the server name, database name, and the current timestamp in the "%Y%m%d%H%M%S" format.

    Required Parameters

    -SqlInstance
    -

    The target SQL Server instance or instances.

    +

    The target SQL Server instance or instances.

    @@ -575,7 +575,7 @@
    -SqlInstance

    Optional Parameters

    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    Only SQL authentication is supported. When not specified, uses Trusted Authentication.

    @@ -772,7 +772,7 @@
    -DacOption
    -ExtendedParameters
    -

    Optional parameters used to extract the DACPAC. More information can be found at +

    Optional parameters used to extract the DACPAC. More information can be found at
    https://msdn.microsoft.com/en-us/library/hh550080.aspx

    @@ -801,7 +801,7 @@
    -ExtendedParameters
    -ExtendedProperties
    -

    Optional properties used to extract the DACPAC. More information can be found at +

    Optional properties used to extract the DACPAC. More information can be found at
    https://msdn.microsoft.com/en-us/library/hh550080.aspx

    @@ -890,8 +890,8 @@
    -Table
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Export-DbaDbRole.html b/Export-DbaDbRole.html index ca989ef6..526f85ee 100644 --- a/Export-DbaDbRole.html +++ b/Export-DbaDbRole.html @@ -488,7 +488,7 @@

    Synopsis

    Exports database roles to a T-SQL file. Export includes Role creation, object permissions and Schema ownership.

    Description

    Exports database roles to a T-SQL file. Export includes Role creation, object permissions and Schema ownership.

    -

    This command is based off of John Eisbrener's post "Fully Script out a MSSQL Database Role" +

    This command is based off of John Eisbrener's post "Fully Script out a MSSQL Database Role"
    Reference: https://dbaeyes.wordpress.com/2013/04/19/fully-script-out-a-mssql-database-role/

    Syntax

    Export-DbaDbRole
    @@ -556,7 +556,7 @@ 
    Example: 9

    Exports all roles from all databases on sqlserver2008, excludes all roles marked as as FixedRole

    Optional Parameters

    -SqlInstance
    -

    The target SQL Server instance or instances. SQL Server 2005 and above supported. +

    The target SQL Server instance or instances. SQL Server 2005 and above supported.
    Any databases in CompatibilityLevel 80 or lower will be skipped

    @@ -585,8 +585,8 @@
    -SqlInstance
    -SqlCredential
    -

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
    For MFA support, please use Connect-DbaInstance.

    @@ -811,7 +811,7 @@
    -IncludeRoleMember
    -Path
    -

    Specifies the directory where the file or files will be exported. +

    Specifies the directory where the file or files will be exported.
    Will default to Path.DbatoolsExport Configuration entry

    @@ -840,7 +840,7 @@
    -Path
    -FilePath
    -

    Specifies the full file path of the output file. If left blank then filename based on Instance name, Database name and date is created. +

    Specifies the full file path of the output file. If left blank then filename based on Instance name, Database name and date is created.
    If more than one database or instance is input then this parameter should normally be blank.

    @@ -1009,15 +1009,15 @@
    -NoPrefix
    -Encoding
    -

    Specifies the file encoding. The default is UTF8. -Valid values are: --- ASCII: Uses the encoding for the ASCII (7-bit) character set. --- BigEndianUnicode: Encodes in UTF-16 format using the big-endian byte order. --- Byte: Encodes a set of characters into a sequence of bytes. --- String: Uses the encoding type for a string. --- Unicode: Encodes in UTF-16 format using the little-endian byte order. --- UTF7: Encodes in UTF-7 format. --- UTF8: Encodes in UTF-8 format. +

    Specifies the file encoding. The default is UTF8.
    +Valid values are:
    +-- ASCII: Uses the encoding for the ASCII (7-bit) character set.
    +-- BigEndianUnicode: Encodes in UTF-16 format using the big-endian byte order.
    +-- Byte: Encodes a set of characters into a sequence of bytes.
    +-- String: Uses the encoding type for a string.
    +-- Unicode: Encodes in UTF-16 format using the little-endian byte order.
    +-- UTF7: Encodes in UTF-7 format.
    +-- UTF8: Encodes in UTF-8 format.
    -- Unknown: The encoding type is unknown or invalid. The data can be treated as binary.

    @@ -1050,8 +1050,8 @@
    -Encoding
    -EnableException
    -

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

    diff --git a/Export-DbaDbTableData.html b/Export-DbaDbTableData.html index 4ebdaa2f..4f13b359 100644 --- a/Export-DbaDbTableData.html +++ b/Export-DbaDbTableData.html @@ -523,7 +523,7 @@
    Example: 3

    Exports only data from 'dbo.Table1' and 'dbo.Table2' in MyDatabase to C:\temp\export.sql and uses the SQL login "sqladmin" to login to sql2016

    Required Parameters

    -InputObject
    -

    Pipeline input from Get-DbaDbTable

    +

    Pipeline input from Get-DbaDbTable

    @@ -608,7 +608,7 @@
    -FilePath
    -Encoding
    -

    Specifies the file encoding. The default is UTF8. +

    Specifies the file encoding. The default is UTF8.
    Valid values are:

    • ASCII: Uses the encoding for the ASCII (7-bit) character set.
    • @@ -791,8 +791,8 @@
      -Append
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      diff --git a/Export-DbaDiagnosticQuery.html b/Export-DbaDiagnosticQuery.html index 25dc912d..d395e2f1 100644 --- a/Export-DbaDiagnosticQuery.html +++ b/Export-DbaDiagnosticQuery.html @@ -487,8 +487,8 @@

      Export-DbaDiagnosticQuery

      Synopsis

      Export-DbaDiagnosticQuery can convert output generated by Invoke-DbaDiagnosticQuery to CSV or Excel

      Description

      -

      The default output format of Invoke-DbaDiagnosticQuery is a custom object. It can also output to CSV and Excel. -However, CSV output can generate a lot of files and Excel output depends on the ImportExcel module by Doug Finke (https://github.com/dfinke/ImportExcel) +

      The default output format of Invoke-DbaDiagnosticQuery is a custom object. It can also output to CSV and Excel.
      +However, CSV output can generate a lot of files and Excel output depends on the ImportExcel module by Doug Finke (https://github.com/dfinke/ImportExcel)
      Export-DbaDiagnosticQuery can be used to convert from the default export type to the other available export types.

      Syntax

      Export-DbaDiagnosticQuery
      @@ -516,7 +516,7 @@ 
      Example: 2

      Converts output from Invoke-DbaDiagnosticQuery to Excel worksheet(s) in the Documents folder

      Required Parameters

      -InputObject
      -

      Specifies the objects to convert

      +

      Specifies the objects to convert

      @@ -689,8 +689,8 @@
      -NoQueryExport
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      diff --git a/Export-DbaExecutionPlan.html b/Export-DbaExecutionPlan.html index 2cacb8a2..c5dd7266 100644 --- a/Export-DbaExecutionPlan.html +++ b/Export-DbaExecutionPlan.html @@ -488,10 +488,10 @@

      Synopsis

      Exports execution plans to disk.

      Description

      Exports execution plans to disk. Can pipe from Get-DbaExecutionPlan

      -

      Thanks to -https://www.simple-talk.com/sql/t-sql-programming/dmvs-for-query-plan-metadata/ -and -http://www.scarydba.com/2017/02/13/export-plans-cache-sqlplan-file/ +

      Thanks to
      +https://www.simple-talk.com/sql/t-sql-programming/dmvs-for-query-plan-metadata/
      +and
      +http://www.scarydba.com/2017/02/13/export-plans-cache-sqlplan-file/
      for the idea and query.

      Syntax

      Export-DbaExecutionPlan
      @@ -517,7 +517,8 @@ 

      Syntax

      Export-DbaExecutionPlan [-Database <Object[]>] [-ExcludeDatabase <Object[]>] - [-Path <String>] -InputObject <Object[]> + [-Path <String>] + -InputObject <Object[]> [-EnableException] [-WhatIf] [-Confirm] @@ -545,7 +546,7 @@
      Example: 4

      Gets all execution plans for sqlserver2014a. Then shows what would happen if the results where piped to Export-DbaExecutionPlan

      Required Parameters

      -SqlInstance
      -

      The target SQL Server instance or instances.

      +

      The target SQL Server instance or instances.

      @@ -573,7 +574,7 @@
      -SqlInstance
      -InputObject
      -

      Internal parameter

      +

      Internal parameter

      @@ -602,8 +603,8 @@
      -InputObject

      Optional Parameters

      -SqlCredential
      -

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
      For MFA support, please use Connect-DbaInstance.

      @@ -772,8 +773,8 @@
      -SinceLastExecution
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      diff --git a/Export-DbaInstance.html b/Export-DbaInstance.html index bcce5300..34d92ae9 100644 --- a/Export-DbaInstance.html +++ b/Export-DbaInstance.html @@ -485,39 +485,39 @@

      Export-DbaInstance


      Want to see the Bill Of Health for this command? Check out Export-DbaInstance.

      Synopsis

      -

      Exports SQL Server ALL database restore scripts, logins, database mail profiles/accounts, credentials, SQL Agent objects, linked servers, -Central Management Server objects, server configuration settings (sp_configure), user objects in systems databases, +

      Exports SQL Server ALL database restore scripts, logins, database mail profiles/accounts, credentials, SQL Agent objects, linked servers,
      +Central Management Server objects, server configuration settings (sp_configure), user objects in systems databases,
      system triggers and backup devices from one SQL Server to another.

      Description

      Export-DbaInstance consolidates most of the export scripts in dbatools into one command.

      -

      This is useful when you're looking to Export entire instances. It less flexible than using the underlying functions. +

      This is useful when you're looking to Export entire instances. It less flexible than using the underlying functions.
      Think of it as an easy button. Unless an -Exclude is specified, it exports:

      -

      All database 'restore from backup' scripts. Note: if a database does not have a backup the 'restore from backup' script won't be generated. -All logins. -All database mail objects. -All credentials. -All objects within the Job Server (SQL Agent). -All linked servers. -All groups and servers within Central Management Server. -All SQL Server configuration objects (everything in sp_configure). -All user objects in system databases. -All system triggers. -All system backup devices. -All Audits. -All Endpoints. -All Extended Events. -All Policy Management objects. -All Resource Governor objects. -All Server Audit Specifications. -All Custom Errors (User Defined Messages). -All Server Roles. -All Availability Groups. +

      All database 'restore from backup' scripts. Note: if a database does not have a backup the 'restore from backup' script won't be generated.
      +All logins.
      +All database mail objects.
      +All credentials.
      +All objects within the Job Server (SQL Agent).
      +All linked servers.
      +All groups and servers within Central Management Server.
      +All SQL Server configuration objects (everything in sp_configure).
      +All user objects in system databases.
      +All system triggers.
      +All system backup devices.
      +All Audits.
      +All Endpoints.
      +All Extended Events.
      +All Policy Management objects.
      +All Resource Governor objects.
      +All Server Audit Specifications.
      +All Custom Errors (User Defined Messages).
      +All Server Roles.
      +All Availability Groups.
      All OLEDB Providers.

      The exported files are written to a folder with a naming convention of "machinename$instance-yyyyMMddHHmmss".

      This command supports the following use cases related to the output files:

      1. Export files to a new timestamped folder. This is the default behavior and results in a simple historical archive within the local filesystem.
      2. -
      3. Export files to an existing folder and overwrite pre-existing files. This can be accomplished using the -Force parameter. +
      4. Export files to an existing folder and overwrite pre-existing files. This can be accomplished using the -Force parameter.
        This results in a single folder location with the latest exported files. These files can then be checked into a source control system if needed.

      For more granular control, please use one of the -Exclude parameters and use the other functions available within the dbatools module.

      @@ -563,7 +563,7 @@
      Example: 4
      include a timestamp. This supports the use case of running Export-DbaInstance on a schedule and writing to the same dir each time.

      Required Parameters

      -SqlInstance
      -

      The target SQL Server instances

      +

      The target SQL Server instances

      @@ -592,8 +592,8 @@
      -SqlInstance

      Optional Parameters

      -SqlCredential
      -

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
      For MFA support, please use Connect-DbaInstance.

      @@ -762,28 +762,28 @@
      -IncludeDbMasterKey
      -Exclude
      -

      Exclude one or more objects to export -Databases -Logins -AgentServer -Credentials -LinkedServers -SpConfigure -CentralManagementServer -DatabaseMail -SysDbUserObjects -SystemTriggers -BackupDevices -Audits -Endpoints -ExtendedEvents -PolicyManagement -ResourceGovernor -ServerAuditSpecifications -CustomErrors -ServerRoles -AvailabilityGroups -ReplicationSettings +

      Exclude one or more objects to export
      +Databases
      +Logins
      +AgentServer
      +Credentials
      +LinkedServers
      +SpConfigure
      +CentralManagementServer
      +DatabaseMail
      +SysDbUserObjects
      +SystemTriggers
      +BackupDevices
      +Audits
      +Endpoints
      +ExtendedEvents
      +PolicyManagement
      +ResourceGovernor
      +ServerAuditSpecifications
      +CustomErrors
      +ServerRoles
      +AvailabilityGroups
      +ReplicationSettings
      OleDbProvider

      @@ -956,8 +956,8 @@
      -Force
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      diff --git a/Export-DbaLinkedServer.html b/Export-DbaLinkedServer.html index b73b5631..83acf2e6 100644 --- a/Export-DbaLinkedServer.html +++ b/Export-DbaLinkedServer.html @@ -517,7 +517,7 @@
      Example: 2

      Exports the linked servers, without passwords, from sql2017 to the file C:\temp\ls.sql

      Required Parameters

      -SqlInstance
      -

      Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2005 or higher.

      +

      Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2005 or higher.

      @@ -574,8 +574,8 @@
      -LinkedServer
      -SqlCredential
      -

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
      For MFA support, please use Connect-DbaInstance.

      @@ -772,8 +772,8 @@
      -InputObject
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      diff --git a/Export-DbaLogin.html b/Export-DbaLogin.html index 610e6c0c..7f4b8b03 100644 --- a/Export-DbaLogin.html +++ b/Export-DbaLogin.html @@ -586,8 +586,8 @@
      -SqlInstance
      -SqlCredential
      -

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
      For MFA support, please use Connect-DbaInstance.

      @@ -812,7 +812,7 @@
      -ExcludePassword
      -DefaultDatabase
      -

      If this switch is enabled, all logins will be scripted with specified default database, +

      If this switch is enabled, all logins will be scripted with specified default database,
      that could help to successfully import logins on server that is missing default database for login.

      @@ -841,7 +841,7 @@
      -DefaultDatabase
      -Path
      -

      Specifies the directory where the file or files will be exported. +

      Specifies the directory where the file or files will be exported.
      Will default to Path.DbatoolsExport Configuration entry

      @@ -870,7 +870,7 @@
      -Path
      -FilePath
      -

      Specifies the full file path of the output file. If left blank then filename based on Instance name and date is created. +

      Specifies the full file path of the output file. If left blank then filename based on Instance name and date is created.
      If more than one instance is input then this parameter should be blank.

      @@ -899,15 +899,15 @@
      -FilePath
      -Encoding
      -

      Specifies the file encoding. The default is UTF8. -Valid values are: --- ASCII: Uses the encoding for the ASCII (7-bit) character set. --- BigEndianUnicode: Encodes in UTF-16 format using the big-endian byte order. --- Byte: Encodes a set of characters into a sequence of bytes. --- String: Uses the encoding type for a string. --- Unicode: Encodes in UTF-16 format using the little-endian byte order. --- UTF7: Encodes in UTF-7 format. --- UTF8: Encodes in UTF-8 format. +

      Specifies the file encoding. The default is UTF8.
      +Valid values are:
      +-- ASCII: Uses the encoding for the ASCII (7-bit) character set.
      +-- BigEndianUnicode: Encodes in UTF-16 format using the big-endian byte order.
      +-- Byte: Encodes a set of characters into a sequence of bytes.
      +-- String: Uses the encoding type for a string.
      +-- Unicode: Encodes in UTF-16 format using the little-endian byte order.
      +-- UTF7: Encodes in UTF-7 format.
      +-- UTF8: Encodes in UTF-8 format.
      -- Unknown: The encoding type is unknown or invalid. The data can be treated as binary.

      @@ -1140,8 +1140,8 @@
      -ObjectLevel
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      diff --git a/Export-DbaPfDataCollectorSetTemplate.html b/Export-DbaPfDataCollectorSetTemplate.html index c96b462f..3aab6571 100644 --- a/Export-DbaPfDataCollectorSetTemplate.html +++ b/Export-DbaPfDataCollectorSetTemplate.html @@ -541,7 +541,7 @@
      -ComputerName
      -Credential
      -

      Allows you to login to $ComputerName using alternative credentials. To use: +

      Allows you to login to $ComputerName using alternative credentials. To use:
      $cred = Get-Credential, then pass $cred object to the -Credential parameter.

      @@ -682,8 +682,8 @@
      -InputObject
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      diff --git a/Export-DbaRegServer.html b/Export-DbaRegServer.html index 532d2a04..98eadc27 100644 --- a/Export-DbaRegServer.html +++ b/Export-DbaRegServer.html @@ -548,8 +548,8 @@
      -SqlInstance
      -SqlCredential
      -

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
      For MFA support, please use Connect-DbaInstance.

      @@ -578,7 +578,7 @@
      -SqlCredential
      -InputObject
      -

      Enables piping from Get-DbaRegServer, Get-DbaRegServerGroup, CSVs and other objects. +

      Enables piping from Get-DbaRegServer, Get-DbaRegServerGroup, CSVs and other objects.
      If importing from CSV or other object, a column named ServerName is required. Optional columns include Name, Description and Group.

      @@ -779,8 +779,8 @@
      -Overwrite
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      diff --git a/Export-DbaReplServerSetting.html b/Export-DbaReplServerSetting.html index 25dc5057..f5ace509 100644 --- a/Export-DbaReplServerSetting.html +++ b/Export-DbaReplServerSetting.html @@ -489,7 +489,7 @@

      Synopsis

      Exports replication server settings to file.

      Description

      Exports replication server settings to file.

      -

      All replication commands need SQL Server Management Studio installed and are therefore currently not supported. +

      All replication commands need SQL Server Management Studio installed and are therefore currently not supported.
      Have a look at this issue to get more information: https://github.com/dataplat/dbatools/issues/7428

      Syntax

      Export-DbaReplServerSetting
      @@ -548,8 +548,8 @@ 
      -SqlInstance
      -SqlCredential
      -

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
      For MFA support, please use Connect-DbaInstance.

      @@ -690,15 +690,15 @@
      -InputObject
      -Encoding
      -

      Specifies the file encoding. The default is UTF8. -Valid values are: --- ASCII: Uses the encoding for the ASCII (7-bit) character set. --- BigEndianUnicode: Encodes in UTF-16 format using the big-endian byte order. --- Byte: Encodes a set of characters into a sequence of bytes. --- String: Uses the encoding type for a string. --- Unicode: Encodes in UTF-16 format using the little-endian byte order. --- UTF7: Encodes in UTF-7 format. --- UTF8: Encodes in UTF-8 format. +

      Specifies the file encoding. The default is UTF8.
      +Valid values are:
      +-- ASCII: Uses the encoding for the ASCII (7-bit) character set.
      +-- BigEndianUnicode: Encodes in UTF-16 format using the big-endian byte order.
      +-- Byte: Encodes a set of characters into a sequence of bytes.
      +-- String: Uses the encoding type for a string.
      +-- Unicode: Encodes in UTF-16 format using the little-endian byte order.
      +-- UTF7: Encodes in UTF-7 format.
      +-- UTF8: Encodes in UTF-8 format.
      -- Unknown: The encoding type is unknown or invalid. The data can be treated as binary.

      @@ -815,8 +815,8 @@
      -Append
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      diff --git a/Export-DbaScript.html b/Export-DbaScript.html index fe056b1d..79caee0c 100644 --- a/Export-DbaScript.html +++ b/Export-DbaScript.html @@ -561,7 +561,7 @@
      Example: 7
      Will append the output to the file C:\temp\export.sql if it already exists

      Required Parameters

      -InputObject
      -

      A SQL Management Object such as the one returned from Get-DbaLogin

      +

      A SQL Management Object such as the one returned from Get-DbaLogin

      @@ -590,7 +590,7 @@
      -InputObject

      Optional Parameters

      -ScriptingOptionsObject
      -

      An SMO Scripting Object that can be used to customize the output - see New-DbaScriptingOption +

      An SMO Scripting Object that can be used to customize the output - see New-DbaScriptingOption
      Options set in the ScriptingOptionsObject may override other parameter values

      @@ -619,7 +619,7 @@
      -ScriptingOptionsObject
      -Path
      -

      Specifies the directory where the file or files will be exported. +

      Specifies the directory where the file or files will be exported.
      Will default to Path.DbatoolsExport Configuration entry

      @@ -676,15 +676,15 @@
      -FilePath
      -Encoding
      -

      Specifies the file encoding. The default is UTF8. -Valid values are: --- ASCII: Uses the encoding for the ASCII (7-bit) character set. --- BigEndianUnicode: Encodes in UTF-16 format using the big-endian byte order. --- Byte: Encodes a set of characters into a sequence of bytes. --- String: Uses the encoding type for a string. --- Unicode: Encodes in UTF-16 format using the little-endian byte order. --- UTF7: Encodes in UTF-7 format. --- UTF8: Encodes in UTF-8 format. +

      Specifies the file encoding. The default is UTF8.
      +Valid values are:
      +-- ASCII: Uses the encoding for the ASCII (7-bit) character set.
      +-- BigEndianUnicode: Encodes in UTF-16 format using the big-endian byte order.
      +-- Byte: Encodes a set of characters into a sequence of bytes.
      +-- String: Uses the encoding type for a string.
      +-- Unicode: Encodes in UTF-16 format using the little-endian byte order.
      +-- UTF7: Encodes in UTF-7 format.
      +-- UTF8: Encodes in UTF-8 format.
      -- Unknown: The encoding type is unknown or invalid. The data can be treated as binary.

      @@ -857,8 +857,8 @@
      -Append
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      diff --git a/Export-DbaServerRole.html b/Export-DbaServerRole.html index 2a720bb8..174b9da3 100644 --- a/Export-DbaServerRole.html +++ b/Export-DbaServerRole.html @@ -488,8 +488,8 @@

      Synopsis

      Exports server roles to a T-SQL file. Export includes Role creation, object permissions and Schema ownership.

      Description

      Exports Server roles to a T-SQL file. Export includes Role creation, object permissions and Role Members

      -

      Applies mostly to SQL Server 2012 or Higher when user defined Server roles were added but can be used on earlier versions to get role members. -This command is an extension of John Eisbrener's post "Fully Script out a MSSQL Database Role" +

      Applies mostly to SQL Server 2012 or Higher when user defined Server roles were added but can be used on earlier versions to get role members.
      +This command is an extension of John Eisbrener's post "Fully Script out a MSSQL Database Role"
      Reference: https://dbaeyes.wordpress.com/2013/04/19/fully-script-out-a-mssql-database-role/

      Syntax

      Export-DbaServerRole
      @@ -578,8 +578,8 @@ 
      -SqlInstance
      -SqlCredential
      -

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
      For MFA support, please use Connect-DbaInstance.

      @@ -776,7 +776,7 @@
      -IncludeRoleMember
      -Path
      -

      Specifies the directory where the file or files will be exported. +

      Specifies the directory where the file or files will be exported.
      Will default to Path.DbatoolsExport Configuration entry

      @@ -805,7 +805,7 @@
      -Path
      -FilePath
      -

      Specifies the full file path of the output file. If left blank then filename based on Instance name, Database name and date is created. +

      Specifies the full file path of the output file. If left blank then filename based on Instance name, Database name and date is created.
      If more than one database or instance is input then this parameter should normally be blank.

      @@ -974,15 +974,15 @@
      -NoPrefix
      -Encoding
      -

      Specifies the file encoding. The default is UTF8. -Valid values are: --- ASCII: Uses the encoding for the ASCII (7-bit) character set. --- BigEndianUnicode: Encodes in UTF-16 format using the big-endian byte order. --- Byte: Encodes a set of characters into a sequence of bytes. --- String: Uses the encoding type for a string. --- Unicode: Encodes in UTF-16 format using the little-endian byte order. --- UTF7: Encodes in UTF-7 format. --- UTF8: Encodes in UTF-8 format. +

      Specifies the file encoding. The default is UTF8.
      +Valid values are:
      +-- ASCII: Uses the encoding for the ASCII (7-bit) character set.
      +-- BigEndianUnicode: Encodes in UTF-16 format using the big-endian byte order.
      +-- Byte: Encodes a set of characters into a sequence of bytes.
      +-- String: Uses the encoding type for a string.
      +-- Unicode: Encodes in UTF-16 format using the little-endian byte order.
      +-- UTF7: Encodes in UTF-7 format.
      +-- UTF8: Encodes in UTF-8 format.
      -- Unknown: The encoding type is unknown or invalid. The data can be treated as binary.

      @@ -1015,8 +1015,8 @@
      -Encoding
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      diff --git a/Export-DbaSpConfigure.html b/Export-DbaSpConfigure.html index 5f23ddc3..f08a954b 100644 --- a/Export-DbaSpConfigure.html +++ b/Export-DbaSpConfigure.html @@ -521,8 +521,8 @@
      Example: 4
      C:\temp\Servername-MMDDYYYYhhmmss-configure.sql

      Required Parameters

      -SqlInstance
      -

      The target SQL Server instance or instances. This can be a collection and receive pipeline input. -You must have sysadmin access if needs to set 'show advanced options' to 1 and server version must be SQL Server version 2005 or higher.

      +

      The target SQL Server instance or instances. This can be a collection and receive pipeline input.
      +You must have sysadmin access if needs to set 'show advanced options' to 1 and server version must be SQL Server version 2005 or higher.

      @@ -551,8 +551,8 @@
      -SqlInstance

      Optional Parameters

      -SqlCredential
      -

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
      For MFA support, please use Connect-DbaInstance.

      @@ -637,8 +637,8 @@
      -FilePath
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      diff --git a/Export-DbaSysDbUserObject.html b/Export-DbaSysDbUserObject.html index 061b6b54..b31f0fb2 100644 --- a/Export-DbaSysDbUserObject.html +++ b/Export-DbaSysDbUserObject.html @@ -513,8 +513,8 @@
      Example: 1

      Exports any user objects that are in the system database to the default location.

      Required Parameters

      -SqlInstance
      -

      The target SQL Server instance or instances. -This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

      +

      The target SQL Server instance or instances.
      +This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

      @@ -543,7 +543,7 @@
      -SqlInstance

      Optional Parameters

      -SqlCredential
      -

      Login to the target instance using alternative credentials. +

      Login to the target instance using alternative credentials.
      Windows and SQL Authentication supported. Accepts credential objects (Get-Credential)

      @@ -796,8 +796,8 @@
      -PassThru
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      diff --git a/Export-DbaUser.html b/Export-DbaUser.html index 45c29ce1..ef125fec 100644 --- a/Export-DbaUser.html +++ b/Export-DbaUser.html @@ -611,8 +611,8 @@
      -InputObject
      -SqlCredential
      -

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
      For MFA support, please use Connect-DbaInstance.

      @@ -813,15 +813,15 @@
      -FilePath
      -Encoding
      -

      Specifies the file encoding. The default is UTF8. -Valid values are: --- ASCII: Uses the encoding for the ASCII (7-bit) character set. --- BigEndianUnicode: Encodes in UTF-16 format using the big-endian byte order. --- Byte: Encodes a set of characters into a sequence of bytes. --- String: Uses the encoding type for a string. --- Unicode: Encodes in UTF-16 format using the little-endian byte order. --- UTF7: Encodes in UTF-7 format. --- UTF8: Encodes in UTF-8 format. +

      Specifies the file encoding. The default is UTF8.
      +Valid values are:
      +-- ASCII: Uses the encoding for the ASCII (7-bit) character set.
      +-- BigEndianUnicode: Encodes in UTF-16 format using the big-endian byte order.
      +-- Byte: Encodes a set of characters into a sequence of bytes.
      +-- String: Uses the encoding type for a string.
      +-- Unicode: Encodes in UTF-16 format using the little-endian byte order.
      +-- UTF7: Encodes in UTF-7 format.
      +-- UTF8: Encodes in UTF-8 format.
      -- Unknown: The encoding type is unknown or invalid. The data can be treated as binary.

      @@ -966,8 +966,8 @@
      -Template
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      @@ -996,7 +996,7 @@
      -EnableException
      -ScriptingOptionsObject
      -

      A Microsoft.SqlServer.Management.Smo.ScriptingOptions object with the options that you want to use to generate the t-sql script. +

      A Microsoft.SqlServer.Management.Smo.ScriptingOptions object with the options that you want to use to generate the t-sql script.
      You can use the New-DbaScriptingOption to generate it.

      diff --git a/Export-DbaXECsv.html b/Export-DbaXECsv.html index 7a66a663..d64bb464 100644 --- a/Export-DbaXECsv.html +++ b/Export-DbaXECsv.html @@ -510,7 +510,7 @@
      Example: 2

      Writes Extended Events data to the file "C:\temp\events.csv".

      Required Parameters

      -InputObject
      -

      Allows Piping

      +

      Allows Piping

      @@ -595,8 +595,8 @@
      -FilePath
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      diff --git a/Export-DbaXESession.html b/Export-DbaXESession.html index edaec37c..6590b8fd 100644 --- a/Export-DbaXESession.html +++ b/Export-DbaXESession.html @@ -545,7 +545,7 @@
      Example: 6
      Will include prefix information containing creator and datetime. and uses the default value for BatchSeparator value from configuration Formatting.BatchSeparator

      Optional Parameters

      -SqlInstance
      -

      The target SQL Server instance or instances. This can be a collection and receive pipeline input. +

      The target SQL Server instance or instances. This can be a collection and receive pipeline input.
      Server version must be SQL Server version 2008 or higher.

      @@ -574,8 +574,8 @@
      -SqlInstance
      -SqlCredential
      -

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
      For MFA support, please use Connect-DbaInstance.

      @@ -688,7 +688,7 @@
      -Path
      -FilePath
      -

      Specifies the full file path of the output file. +

      Specifies the full file path of the output file.
      If FilePath is specified and more than one Server is in input then -Append parameter is required to avoid overwriting data

      @@ -717,15 +717,15 @@
      -FilePath
      -Encoding
      -

      Specifies the file encoding. The default is UTF8. -Valid values are: --- ASCII: Uses the encoding for the ASCII (7-bit) character set. --- BigEndianUnicode: Encodes in UTF-16 format using the big-endian byte order. --- Byte: Encodes a set of characters into a sequence of bytes. --- String: Uses the encoding type for a string. --- Unicode: Encodes in UTF-16 format using the little-endian byte order. --- UTF7: Encodes in UTF-7 format. --- UTF8: Encodes in UTF-8 format. +

      Specifies the file encoding. The default is UTF8.
      +Valid values are:
      +-- ASCII: Uses the encoding for the ASCII (7-bit) character set.
      +-- BigEndianUnicode: Encodes in UTF-16 format using the big-endian byte order.
      +-- Byte: Encodes a set of characters into a sequence of bytes.
      +-- String: Uses the encoding type for a string.
      +-- Unicode: Encodes in UTF-16 format using the little-endian byte order.
      +-- UTF7: Encodes in UTF-7 format.
      +-- UTF8: Encodes in UTF-8 format.
      -- Unknown: The encoding type is unknown or invalid. The data can be treated as binary.

      @@ -898,8 +898,8 @@
      -Append
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      diff --git a/Export-DbaXESessionTemplate.html b/Export-DbaXESessionTemplate.html index dca31038..b673d57f 100644 --- a/Export-DbaXESessionTemplate.html +++ b/Export-DbaXESessionTemplate.html @@ -541,8 +541,8 @@
      -SqlInstance
      -SqlCredential
      -

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
      For MFA support, please use Connect-DbaInstance.

      @@ -683,8 +683,8 @@
      -InputObject
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      diff --git a/Export-DbatoolsConfig.html b/Export-DbatoolsConfig.html index cb417a0b..61bc36c4 100644 --- a/Export-DbatoolsConfig.html +++ b/Export-DbatoolsConfig.html @@ -529,7 +529,7 @@
      Example: 2

      Exports all settings of the module 'message' that are no longer the original default values to json.

      Required Parameters

      -FullName
      -

      Select the configuration objects to export by filtering by their full name.

      +

      Select the configuration objects to export by filtering by their full name.

      @@ -557,7 +557,7 @@
      -FullName
      -Module
      -

      Select the configuration objects to export by filtering by their module name.

      +

      Select the configuration objects to export by filtering by their module name.

      @@ -585,8 +585,8 @@
      -Module
      -Config
      -

      The configuration object(s) to export. -Returned by Get-DbatoolsConfig.

      +

      The configuration object(s) to export.
      +Returned by Get-DbatoolsConfig.

      @@ -614,8 +614,8 @@
      -Config
      -ModuleName
      -

      Exports all configuration pertinent to a module to a predefined path. -Exported configuration items include all settings marked as 'ModuleExport' that have been changed from the default value.

      +

      Exports all configuration pertinent to a module to a predefined path.
      +Exported configuration items include all settings marked as 'ModuleExport' that have been changed from the default value.

      @@ -643,8 +643,8 @@
      -ModuleName
      -OutPath
      -

      The path (filename included) to export to. -Will fail if the folder does not exist, will overwrite the file if it exists.

      +

      The path (filename included) to export to.
      +Will fail if the folder does not exist, will overwrite the file if it exists.

      @@ -729,8 +729,8 @@
      -ModuleVersion
      -Scope
      -

      Which predefined path to write module specific settings to. -Only file scopes are considered. +

      Which predefined path to write module specific settings to.
      +Only file scopes are considered.
      By default it writes to the suer profile.

      @@ -759,7 +759,7 @@
      -Scope
      -SkipUnchanged
      -

      If set, configuration objects whose value was not changed from its original value will not be exported. +

      If set, configuration objects whose value was not changed from its original value will not be exported.
      (Note: Settings that were updated with the same value as the original default will still be considered changed)

      @@ -788,7 +788,7 @@
      -SkipUnchanged
      -EnableException
      -

      This parameters disables user-friendly warnings and enables the throwing of exceptions. +

      This parameters disables user-friendly warnings and enables the throwing of exceptions.
      This is less user friendly, but allows catching exceptions in calling scripts.

      diff --git a/Find-DbaAgentJob.html b/Find-DbaAgentJob.html index ac0997e4..01771119 100644 --- a/Find-DbaAgentJob.html +++ b/Find-DbaAgentJob.html @@ -553,7 +553,7 @@
      Example: 10
      Returns all agent job(s) wiht backup in the name, that don't have a schedule on 'SQL2017N5','SQL2019N5','SQL2019N20','SQL2019N21','SQL2019N22'

      Required Parameters

      -SqlInstance
      -

      The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

      +

      The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

      @@ -582,8 +582,8 @@
      -SqlInstance

      Optional Parameters

      -SqlCredential
      -

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
      For MFA support, please use Connect-DbaInstance.

      @@ -612,7 +612,7 @@
      -SqlCredential
      -JobName
      -

      Filter agent jobs to only the name(s) you list. +

      Filter agent jobs to only the name(s) you list.
      Supports regular expression (e.g. MyJob*) being passed in.

      @@ -669,7 +669,7 @@
      -ExcludeJobName
      -StepName
      -

      Filter based on StepName. +

      Filter based on StepName.
      Supports regular expression (e.g. MyJob*) being passed in.

      @@ -922,8 +922,8 @@
      -Since
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      diff --git a/Find-DbaBackup.html b/Find-DbaBackup.html index 5a2dec9f..c6c06d28 100644 --- a/Find-DbaBackup.html +++ b/Find-DbaBackup.html @@ -517,7 +517,7 @@
      Example: 3

      Searches for all bak files in \SQL2014\Backup\ and all subdirectories that are more than 24 hours old and deletes only those files with verbose message.

      Required Parameters

      -Path
      -

      Specifies the name of the base level folder to search for backup files.

      +

      Specifies the name of the base level folder to search for backup files.

      @@ -545,7 +545,7 @@
      -Path
      -BackupFileExtension
      -

      Specifies the filename extension of the backup files you wish to find (typically 'bak', 'trn' or 'log'). Do not include the period.

      +

      Specifies the filename extension of the backup files you wish to find (typically 'bak', 'trn' or 'log'). Do not include the period.

      @@ -575,16 +575,16 @@
      -BackupFileExtension
      -RetentionPeriod

      Specifies the retention period for backup files. Correct format is ##U.

      is the retention value and must be an integer value

      -

      U signifies the units where the valid units are: -h = hours -d = days -w = weeks -m = months -Formatting Examples: -'48h' = 48 hours -'7d' = 7 days -'4w' = 4 weeks -'1m' = 1 month

      +

      U signifies the units where the valid units are:
      +h = hours
      +d = days
      +w = weeks
      +m = months
      +Formatting Examples:
      +'48h' = 48 hours
      +'7d' = 7 days
      +'4w' = 4 weeks
      +'1m' = 1 month

      @@ -613,7 +613,7 @@

      is the retention va

      Optional Parameters

      -CheckArchiveBit
      -

      If this switch is enabled, the filesystem Archive bit is checked. +

      If this switch is enabled, the filesystem Archive bit is checked.
      If this bit is set (which translates to "it has not been backed up to another location yet"), the file won't be included.

      @@ -642,8 +642,8 @@
      -CheckArchiveBit
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      diff --git a/Find-DbaCommand.html b/Find-DbaCommand.html index fe4ead79..aa513a0b 100644 --- a/Find-DbaCommand.html +++ b/Find-DbaCommand.html @@ -703,8 +703,8 @@
      -Rebuild
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      diff --git a/Find-DbaDatabase.html b/Find-DbaDatabase.html index 0f3291c7..798f05c6 100644 --- a/Find-DbaDatabase.html +++ b/Find-DbaDatabase.html @@ -517,7 +517,7 @@
      Example: 3

      Returns all database from the SqlInstances that have the same Service Broker GUID with a detailed output

      Required Parameters

      -SqlInstance
      -

      The target SQL Server instance or instances.

      +

      The target SQL Server instance or instances.

      @@ -545,7 +545,7 @@
      -SqlInstance
      -Pattern
      -

      Value that is searched for. This is a regular expression match but you can just use a plain ol string like 'dbareports'

      +

      Value that is searched for. This is a regular expression match but you can just use a plain ol string like 'dbareports'

      @@ -574,8 +574,8 @@
      -Pattern

      Optional Parameters

      -SqlCredential
      -

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
      For MFA support, please use Connect-DbaInstance.

      @@ -664,8 +664,8 @@
      -Exact
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      diff --git a/Find-DbaDbDisabledIndex.html b/Find-DbaDbDisabledIndex.html index c1328d03..6d8357a4 100644 --- a/Find-DbaDbDisabledIndex.html +++ b/Find-DbaDbDisabledIndex.html @@ -523,7 +523,7 @@
      Example: 4

      Generates the SQL statements to drop selected indexes on all user databases.

      Required Parameters

      -SqlInstance
      -

      The target SQL Server instance or instances.

      +

      The target SQL Server instance or instances.

      @@ -552,8 +552,8 @@
      -SqlInstance

      Optional Parameters

      -SqlCredential
      -

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
      For MFA support, please use Connect-DbaInstance.

      @@ -694,8 +694,8 @@
      -Append
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      diff --git a/Find-DbaDbDuplicateIndex.html b/Find-DbaDbDuplicateIndex.html index 8eccfe87..e7eebc59 100644 --- a/Find-DbaDbDuplicateIndex.html +++ b/Find-DbaDbDuplicateIndex.html @@ -490,16 +490,16 @@

      Description

      This command will help you to find duplicate and overlapping indexes on a database or a list of databases.

      On SQL Server 2008 and higher, the IsFiltered property will also be checked

      Only supports CLUSTERED and NONCLUSTERED indexes.

      -

      Output: -TableName -IndexName -KeyColumns -IncludedColumns -IndexSizeMB -IndexType -CompressionDescription (When 2008+) -[RowCount] -IsDisabled +

      Output:
      +TableName
      +IndexName
      +KeyColumns
      +IncludedColumns
      +IndexSizeMB
      +IndexType
      +CompressionDescription (When 2008+)
      +[RowCount]
      +IsDisabled
      IsFiltered (When 2008+)

      Syntax

      Find-DbaDbDuplicateIndex
      @@ -532,7 +532,7 @@ 
      Example: 4

      Finds both duplicate and overlapping indexes on all user databases.

      Required Parameters

      -SqlInstance
      -

      The target SQL Server instance or instances.

      +

      The target SQL Server instance or instances.

      @@ -561,8 +561,8 @@
      -SqlInstance

      Optional Parameters

      -SqlCredential
      -

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
      For MFA support, please use Connect-DbaInstance.

      @@ -619,7 +619,7 @@
      -Database
      -IncludeOverlapping
      -

      If this switch is enabled, indexes which are partially duplicated will be returned. +

      If this switch is enabled, indexes which are partially duplicated will be returned.
      Example: If the first key column is the same between two indexes, but one has included columns and the other not, this will be shown.

      @@ -648,8 +648,8 @@
      -IncludeOverlapping
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      diff --git a/Find-DbaDbGrowthEvent.html b/Find-DbaDbGrowthEvent.html index 85e06183..a5689fa4 100644 --- a/Find-DbaDbGrowthEvent.html +++ b/Find-DbaDbGrowthEvent.html @@ -488,10 +488,10 @@

      Synopsis

      Finds any database AutoGrow events in the Default Trace.

      Description

      Finds any database AutoGrow events in the Default Trace.

      -

      The following events are included: -92 - Data File Auto Grow -93 - Log File Auto Grow -94 - Data File Auto Shrink +

      The following events are included:
      +92 - Data File Auto Grow
      +93 - Log File Auto Grow
      +94 - Data File Auto Shrink
      95 - Log File Auto Shrink

      Syntax

      Find-DbaDbGrowthEvent
      @@ -535,7 +535,7 @@ 
      Example: 6

      Returns any database Auto Growth events on data files in the Default Trace for every database on the ServerA\SQL2016 instance.

      Required Parameters

      -SqlInstance
      -

      The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

      +

      The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

      @@ -564,8 +564,8 @@
      -SqlInstance

      Optional Parameters

      -SqlCredential
      -

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
      For MFA support, please use Connect-DbaInstance.

      @@ -650,7 +650,7 @@
      -ExcludeDatabase
      -EventType
      -

      Provide a filter on growth event type to filter the results. +

      Provide a filter on growth event type to filter the results.
      Allowed values: Growth, Shrink

      @@ -683,7 +683,7 @@
      -EventType
      -FileType
      -

      Provide a filter on file type to filter the results. +

      Provide a filter on file type to filter the results.
      Allowed values: Data, Log

      @@ -744,8 +744,8 @@
      -UseLocalTime
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      diff --git a/Find-DbaDbUnusedIndex.html b/Find-DbaDbUnusedIndex.html index b01eaa3a..afae0a76 100644 --- a/Find-DbaDbUnusedIndex.html +++ b/Find-DbaDbUnusedIndex.html @@ -554,8 +554,8 @@
      -SqlInstance
      -SqlCredential
      -

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
      For MFA support, please use Connect-DbaInstance.

      @@ -640,7 +640,7 @@
      -ExcludeDatabase
      -IgnoreUptime
      -

      Less than 7 days uptime can mean that analysis of unused indexes is unreliable, and normally no results will be returned. By setting this option results will be returned even if the Instance has been +

      Less than 7 days uptime can mean that analysis of unused indexes is unreliable, and normally no results will be returned. By setting this option results will be returned even if the Instance has been
      running for less than 7 days.

      @@ -669,11 +669,11 @@
      -IgnoreUptime
      -Seeks
      -

      Specify a custom threshold for user seeks. The default for this parameter is 1. -The valid values are between 1 and 1000000 to provide flexibility on the definition of 'unused' indexes. -Note: The resulting WHERE clause uses the AND operator: -user_seeks < $Seeks -AND user_scans < $Scans +

      Specify a custom threshold for user seeks. The default for this parameter is 1.
      +The valid values are between 1 and 1000000 to provide flexibility on the definition of 'unused' indexes.
      +Note: The resulting WHERE clause uses the AND operator:
      +user_seeks < $Seeks
      +AND user_scans < $Scans
      AND user_lookups < $Lookups

      @@ -702,11 +702,11 @@
      -Seeks
      -Scans
      -

      Specify a custom threshold for user scans. The default for this parameter is 1. -The valid values are between 1 and 1000000 to provide flexibility on the definition of 'unused' indexes. -Note: The resulting WHERE clause uses the AND operator: -user_seeks < $Seeks -AND user_scans < $Scans +

      Specify a custom threshold for user scans. The default for this parameter is 1.
      +The valid values are between 1 and 1000000 to provide flexibility on the definition of 'unused' indexes.
      +Note: The resulting WHERE clause uses the AND operator:
      +user_seeks < $Seeks
      +AND user_scans < $Scans
      AND user_lookups < $Lookups

      @@ -735,11 +735,11 @@
      -Scans
      -Lookups
      -

      Specify a custom threshold for user lookups. The default for this parameter is 1. -The valid values are between 1 and 1000000 to provide flexibility on the definition of 'unused' indexes. -Note: The resulting WHERE clause uses the AND operator: -user_seeks < $Seeks -AND user_scans < $Scans +

      Specify a custom threshold for user lookups. The default for this parameter is 1.
      +The valid values are between 1 and 1000000 to provide flexibility on the definition of 'unused' indexes.
      +Note: The resulting WHERE clause uses the AND operator:
      +user_seeks < $Seeks
      +AND user_scans < $Scans
      AND user_lookups < $Lookups

      @@ -796,8 +796,8 @@
      -InputObject
      -EnableException
      -

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

      diff --git a/Find-DbaInstance.html b/Find-DbaInstance.html index 61a0fc19..da2d1a36 100644 --- a/Find-DbaInstance.html +++ b/Find-DbaInstance.html @@ -493,21 +493,21 @@

      Description

    • Discovery
    • Scan
    • -

      Discovery: -This is where it compiles a list of computers / addresses to check. +

      Discovery:
      +This is where it compiles a list of computers / addresses to check.
      It supports several methods of generating such lists (including Active Directory lookup or IP Ranges), but also supports specifying a list of computers to check.

      • For details on discovery, see the documentation on the '-DiscoveryType' parameter
      • For details on explicitly providing a list, see the documentation on the '-ComputerName' parameter
      -

      Scan: -Once a list of computers has been provided, this command will execute a variety of actions to determine any instances present for each of them. -This is described in more detail in the documentation on the '-ScanType' parameter. +

      Scan:
      +Once a list of computers has been provided, this command will execute a variety of actions to determine any instances present for each of them.
      +This is described in more detail in the documentation on the '-ScanType' parameter.
      Additional parameters allow more granular control over individual scans (e.g. Credentials to use).

      -

      Note on logging and auditing: -The Discovery phase is un-problematic since it is non-intrusive, however during the scan phase, all targeted computers may be accessed repeatedly. -This may cause issues with security teams, due to many logon events and possibly failed authentication. -This action constitutes a network scan, which may be illegal depending on the nation you are in and whether you own the network you scan. +

      Note on logging and auditing:
      +The Discovery phase is un-problematic since it is non-intrusive, however during the scan phase, all targeted computers may be accessed repeatedly.
      +This may cause issues with security teams, due to many logon events and possibly failed authentication.
      +This action constitutes a network scan, which may be illegal depending on the nation you are in and whether you own the network you scan.
      If you are unsure whether you may use this command in your environment, check the detailed description on the '-ScanType' parameter and contact your IT security team for advice.

      Syntax

      Find-DbaInstance
      @@ -598,8 +598,8 @@ 
      Example: 6
      Using this method regularly is not recommended. Use Get-DbaService or Get-DbaRegServer instead.

      Required Parameters

      -ComputerName
      -

      The computer to scan. Can be a variety of input types, including text or the output of Get-ADComputer. -Any extra instance information (such as connection strings or live sql server connections) beyond the computername will be discarded.

      +

      The computer to scan. Can be a variety of input types, including text or the output of Get-ADComputer.
      +Any extra instance information (such as connection strings or live sql server connections) beyond the computername will be discarded.

      @@ -627,7 +627,7 @@
      -ComputerName
      -DiscoveryType
      -

      The mechanisms to be used to discover instances. +

      The mechanisms to be used to discover instances.
      Supports any combination of:

      • Service Principal Name lookup ('DomainSPN'; from Active Directory)
      • @@ -638,28 +638,28 @@
        -DiscoveryType

        • SPN Lookup

          -

          The function tries to connect active directory to look up all computers with registered SQL Instances. -Not all instances need to be registered properly, making this not 100% reliable. -By default, your nearest Domain Controller is contacted for this scan. -However it is possible to explicitly state the DC to contact using its DistinguishedName and the '-DomainController' parameter. +

          The function tries to connect active directory to look up all computers with registered SQL Instances.
          +Not all instances need to be registered properly, making this not 100% reliable.
          +By default, your nearest Domain Controller is contacted for this scan.
          +However it is possible to explicitly state the DC to contact using its DistinguishedName and the '-DomainController' parameter.
          If credentials were specified using the '-Credential' parameter, those same credentials are used to perform this lookup, allowing the scan of other domains.

        • SQL Instance Enumeration

          -

          This uses the default UDP Broadcast based instance enumeration used by SSMS to detect instances. -Note that the result from this is not used in the actual scan, but only to compile a list of computers to scan. +

          This uses the default UDP Broadcast based instance enumeration used by SSMS to detect instances.
          +Note that the result from this is not used in the actual scan, but only to compile a list of computers to scan.
          To enable the same results for the scan, ensure that the 'Browser' scan is enabled.

        • IP Address range:

          -

          This 'Discovery' uses a range of IPAddresses and simply passes them on to be tested. -See the 'Description' part of help on security issues of network scanning. -By default, it will enumerate all ethernet network adapters on the local computer and scan the entire subnet they are on. +

          This 'Discovery' uses a range of IPAddresses and simply passes them on to be tested.
          +See the 'Description' part of help on security issues of network scanning.
          +By default, it will enumerate all ethernet network adapters on the local computer and scan the entire subnet they are on.
          By using the '-IpAddress' parameter, custom network ranges can be specified.

        • Domain Server:

          -

          This will discover every single computer in Active Directory that is a Windows Server and enabled. -By default, your nearest Domain Controller is contacted for this scan. -However it is possible to explicitly state the DC to contact using its DistinguishedName and the '-DomainController' parameter. -If credentials were specified using the '-Credential' parameter, those same credentials are used to perform this lookup, allowing the scan of other domains.

          +

          This will discover every single computer in Active Directory that is a Windows Server and enabled.
          +By default, your nearest Domain Controller is contacted for this scan.
          +However it is possible to explicitly state the DC to contact using its DistinguishedName and the '-DomainController' parameter.
          +If credentials were specified using the '-Credential' parameter, those same credentials are used to perform this lookup, allowing the scan of other domains.

        @@ -690,7 +690,7 @@
        -DiscoveryType

        Optional Parameters

        -Credential
        -

        The credentials to use on windows network connection. +

        The credentials to use on windows network connection.
        These credentials are used for:

        • Contact to domain controllers for SPN lookups (only if explicit Domain Controller is specified)
        • @@ -723,7 +723,7 @@
          -Credential
          -SqlCredential
          -

          The credentials used to connect to SqlInstances to during the scan phase. +

          The credentials used to connect to SqlInstances to during the scan phase.
          See the '-ScanType' parameter documentation on affected scans.

          @@ -752,9 +752,9 @@
          -SqlCredential
          -ScanType
          -

          The scans are the individual methods used to retrieve information about the scanned computer and any potentially installed instances. -This parameter is optional, by default all scans except for establishing an actual SQL connection are performed. -Scans can be specified in any arbitrary combination, however at least one instance detecting scan needs to be specified in order for data to be returned. +

          The scans are the individual methods used to retrieve information about the scanned computer and any potentially installed instances.
          +This parameter is optional, by default all scans except for establishing an actual SQL connection are performed.
          +Scans can be specified in any arbitrary combination, however at least one instance detecting scan needs to be specified in order for data to be returned.
          Scans:

          • Browser @@ -844,13 +844,13 @@
            -ScanType
            -IpAddress
            -

            This parameter can be used to override the defaults for the IPRange discovery. +

            This parameter can be used to override the defaults for the IPRange discovery.
            This parameter accepts a list of strings supporting any combination of:

            • Plain IP Addresses (e.g.: "10.1.1.1")
            • IP Address Ranges (e.g.: "10.1.1.1-10.1.1.5")
            • IP Address & Subnet Mask (e.g.: "10.1.1.1/255.255.255.0")
            • -
            • IP Address & Subnet Length: (e.g.: "10.1.1.1/24) +
            • IP Address & Subnet Length: (e.g.: "10.1.1.1/24)
              Overlapping addresses will not result in duplicate scans.
            @@ -880,7 +880,7 @@
            -IpAddress
            -DomainController
            -

            The domain controller to contact for SPN lookups / searches. +

            The domain controller to contact for SPN lookups / searches.
            Uses the credentials from the '-Credential' parameter if specified.

            @@ -909,7 +909,7 @@
            -DomainController
            -TCPPort
            -

            The ports to scan in the TCP Port Scan method. +

            The ports to scan in the TCP Port Scan method.
            Defaults to 1433.

            @@ -938,9 +938,9 @@
            -TCPPort
            -MinimumConfidence
            -

            This command tries to discover instances, which isn't always a sure thing. -Depending on the number and type of scans completed, we have different levels of confidence in our results. -By default, we will return anything that we have at least a low confidence of being an instance. +

            This command tries to discover instances, which isn't always a sure thing.
            +Depending on the number and type of scans completed, we have different levels of confidence in our results.
            +By default, we will return anything that we have at least a low confidence of being an instance.
            These are the confidence levels we support and how they are determined:

            • High: Established SQL Connection (including rejection for bad credentials) or service scan.
            • @@ -975,8 +975,8 @@
              -MinimumConfidence
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Find-DbaLoginInGroup.html b/Find-DbaLoginInGroup.html index 36b475d6..55145872 100644 --- a/Find-DbaLoginInGroup.html +++ b/Find-DbaLoginInGroup.html @@ -514,7 +514,7 @@
              Example: 3

              Returns all active directory users within all windows AD groups that have logins on the instance whose login contains "stephen"

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input.

              @@ -599,8 +599,8 @@
              -Login
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Find-DbaOrphanedFile.html b/Find-DbaOrphanedFile.html index a45df473..79056072 100644 --- a/Find-DbaOrphanedFile.html +++ b/Find-DbaOrphanedFile.html @@ -543,7 +543,7 @@
              Example: 7

              Finds the orphaned ending with ".fsf" and ".mld" in addition to the default filetypes ".mdf", ".ldf", ".ndf" for both the servers sql2014 and sql2016.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

              +

              The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

              @@ -572,8 +572,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -714,8 +714,8 @@
              -RemoteOnly
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Find-DbaSimilarTable.html b/Find-DbaSimilarTable.html index af8173ab..a7b177da 100644 --- a/Find-DbaSimilarTable.html +++ b/Find-DbaSimilarTable.html @@ -487,8 +487,8 @@

              Find-DbaSimilarTable

              Synopsis

              Returns all tables/views that are similar in structure by comparing the column names of matching and matched tables/views

              Description

              -

              This function can either run against specific databases or all databases searching all/specific tables and views including in system databases. -Typically one would use this to find for example archive version(s) of a table whose structures are similar. +

              This function can either run against specific databases or all databases searching all/specific tables and views including in system databases.
              +Typically one would use this to find for example archive version(s) of a table whose structures are similar.
              This can also be used to find tables/views that are very similar to a given table/view structure to see where a table/view might be used.

              More information can be found here: https://sqljana.wordpress.com/2017/03/31/sql-server-find-tables-with-similar-table-structure/

              Syntax

              @@ -531,7 +531,7 @@
              Example: 5

              Searches AdventureWorks database and lists all tables/views with its corresponding matching tables/views with match percent greater than or equal to 60

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input

              @@ -560,8 +560,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -646,7 +646,7 @@
              -ExcludeDatabase
              -SchemaName
              -

              If you are looking in a specific schema whose table structures is to be used as reference structure, provide the name of the schema. +

              If you are looking in a specific schema whose table structures is to be used as reference structure, provide the name of the schema.
              If no schema is provided, looks at all schemas

              @@ -675,8 +675,8 @@
              -SchemaName
              -TableName
              -

              If you are looking in a specific table whose structure is to be used as reference structure, provide the name of the table. -If no table is provided, looks at all tables +

              If you are looking in a specific table whose structure is to be used as reference structure, provide the name of the table.
              +If no table is provided, looks at all tables
              If the table name exists in multiple schemas, all of them would qualify

              @@ -705,7 +705,7 @@
              -TableName
              -ExcludeViews
              -

              By default, views are included. You can exclude them by setting this switch to $false +

              By default, views are included. You can exclude them by setting this switch to $false
              This excludes views in both matching and matched list

              @@ -762,7 +762,7 @@
              -IncludeSystemDatabases
              -MatchPercentThreshold
              -

              The minimum percentage of column names that should match between the matching and matched objects. +

              The minimum percentage of column names that should match between the matching and matched objects.
              Entries with no matches are eliminated

              @@ -791,8 +791,8 @@
              -MatchPercentThreshold
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Find-DbaStoredProcedure.html b/Find-DbaStoredProcedure.html index 9d947548..f352953e 100644 --- a/Find-DbaStoredProcedure.html +++ b/Find-DbaStoredProcedure.html @@ -522,7 +522,7 @@
              Example: 4

              Searches in "mydb" database stored procedures for "runtime" in the text body

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input

              @@ -550,7 +550,7 @@
              -SqlInstance
              -Pattern
              -

              String pattern that you want to search for in the stored procedure text body

              +

              String pattern that you want to search for in the stored procedure text body

              @@ -579,8 +579,8 @@
              -Pattern

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -665,7 +665,7 @@
              -ExcludeDatabase
              -IncludeSystemObjects
              -

              By default, system stored procedures are ignored but you can include them within the search using this parameter. +

              By default, system stored procedures are ignored but you can include them within the search using this parameter.
              Warning - this will likely make it super slow if you run it on all databases.

              @@ -722,8 +722,8 @@
              -IncludeSystemDatabases
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Find-DbaTrigger.html b/Find-DbaTrigger.html index b83027dd..45bc6d25 100644 --- a/Find-DbaTrigger.html +++ b/Find-DbaTrigger.html @@ -487,7 +487,7 @@

              Find-DbaTrigger

              Synopsis

              Returns all triggers that contain a specific case-insensitive string or regex pattern.

              Description

              -

              This function search on Instance, Database and Object level. +

              This function search on Instance, Database and Object level.
              If you specify one or more databases, search on Server level will not be preformed.

              Syntax

              Find-DbaTrigger
              @@ -524,7 +524,7 @@ 
              Example: 4

              Searches in "mydb" database triggers for "runtime" in the text body

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input

              @@ -552,7 +552,7 @@
              -SqlInstance
              -Pattern
              -

              String pattern that you want to search for in the trigger text body

              +

              String pattern that you want to search for in the trigger text body

              @@ -581,8 +581,8 @@
              -Pattern

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -699,7 +699,7 @@
              -TriggerLevel
              -IncludeSystemObjects
              -

              By default, system triggers are ignored but you can include them within the search using this parameter. +

              By default, system triggers are ignored but you can include them within the search using this parameter.
              Warning - this will likely make it super slow if you run it on all databases.

              @@ -756,8 +756,8 @@
              -IncludeSystemDatabases
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Find-DbaUserObject.html b/Find-DbaUserObject.html index bf7b8b20..a3b08fe5 100644 --- a/Find-DbaUserObject.html +++ b/Find-DbaUserObject.html @@ -487,17 +487,17 @@

              Find-DbaUserObject

              Synopsis

              Searches SQL Server to find user-owned objects (i.e. not dbo or sa) or for any object owned by a specific user specified by the Pattern parameter.

              Description

              -

              Looks at the below list of objects to see if they are either owned by a user or a specific user (using the parameter -Pattern) -Database Owner -Agent Job Owner -Used in Credential -USed in Proxy -SQL Agent Steps using a Proxy -Endpoints -Server Roles -Database Schemas -Database Roles -Database Assembles +

              Looks at the below list of objects to see if they are either owned by a user or a specific user (using the parameter -Pattern)
              +Database Owner
              +Agent Job Owner
              +Used in Credential
              +USed in Proxy
              +SQL Agent Steps using a Proxy
              +Endpoints
              +Server Roles
              +Database Schemas
              +Database Roles
              +Database Assembles
              Database Synonyms

              Syntax

              Find-DbaUserObject
              @@ -521,7 +521,7 @@ 
              Example: 2

              Shows all user owned (non-sa, non-dbo) objects and verbose output

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input

              @@ -550,8 +550,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -608,8 +608,8 @@
              -Pattern
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Find-DbaView.html b/Find-DbaView.html index 5088c323..31a1e825 100644 --- a/Find-DbaView.html +++ b/Find-DbaView.html @@ -522,7 +522,7 @@
              Example: 4

              Searches in "mydb" database views for "runtime" in the text body

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input

              @@ -550,7 +550,7 @@
              -SqlInstance
              -Pattern
              -

              String pattern that you want to search for in the view text body

              +

              String pattern that you want to search for in the view text body

              @@ -579,8 +579,8 @@
              -Pattern

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -665,7 +665,7 @@
              -ExcludeDatabase
              -IncludeSystemObjects
              -

              By default, system views are ignored but you can include them within the search using this parameter. +

              By default, system views are ignored but you can include them within the search using this parameter.
              Warning - this will likely make it super slow if you run it on all databases.

              @@ -722,8 +722,8 @@
              -IncludeSystemDatabases
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Format-DbaBackupInformation.html b/Format-DbaBackupInformation.html index 69290b8b..d1c22534 100644 --- a/Format-DbaBackupInformation.html +++ b/Format-DbaBackupInformation.html @@ -487,7 +487,7 @@

              Format-DbaBackupInformation

              Synopsis

              Transforms the data in a dbatools BackupHistory object for a restore

              Description

              -

              Performs various mapping on Backup History, ready restoring +

              Performs various mapping on Backup History, ready restoring
              Options include changing restore paths, backup paths, database name and many others

              Syntax

              Format-DbaBackupInformation
              @@ -531,7 +531,7 @@ 
              Example: 4

              This example changes the location that SQL Server will look for the backups. This is useful if you've moved the backups to a different location

              Required Parameters

              -BackupHistory
              -

              A dbatools backupHistory object, normally this will have been created using Select-DbaBackupInformation

              +

              A dbatools backupHistory object, normally this will have been created using Select-DbaBackupInformation

              @@ -560,9 +560,9 @@
              -BackupHistory

              Optional Parameters

              -ReplaceDatabaseName
              -

              If a single value is provided, this will be replaced do all occurrences a database name -If a Hashtable is passed in, each database name mention will be replaced as specified. If a database's name does not appear it will not be replace -DatabaseName will also be replaced where it occurs in the file paths of data and log files. +

              If a single value is provided, this will be replaced do all occurrences a database name
              +If a Hashtable is passed in, each database name mention will be replaced as specified. If a database's name does not appear it will not be replace
              +DatabaseName will also be replaced where it occurs in the file paths of data and log files.
              Please note, that this won't change the Logical Names of data files, that has to be done with a separate Alter DB call

              @@ -843,10 +843,10 @@
              -Continue
              -FileMapping
              -

              A hashtable that can be used to move specific files to a location. -$FileMapping = @{'DataFile1'='c:\restoredfiles\Datafile1.mdf';'DataFile3'='d:\DataFile3.mdf'} -And files not specified in the mapping will be restored to their original location -This Parameter is exclusive with DestinationDataDirectory +

              A hashtable that can be used to move specific files to a location.
              +$FileMapping = @{'DataFile1'='c:\restoredfiles\Datafile1.mdf';'DataFile3'='d:\DataFile3.mdf'}
              +And files not specified in the mapping will be restored to their original location
              +This Parameter is exclusive with DestinationDataDirectory
              If specified, this will override any other file renaming/relocation options.

              @@ -903,8 +903,8 @@
              -PathSep
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaAgBackupHistory.html b/Get-DbaAgBackupHistory.html index b4a90c5f..dded76d9 100644 --- a/Get-DbaAgBackupHistory.html +++ b/Get-DbaAgBackupHistory.html @@ -488,12 +488,13 @@

              Synopsis

              Returns backup history details for databases on a SQL Server Availability Group.

              Description

              Returns backup history details for some or all databases on a SQL Server Availability Group.

              -

              You can even get detailed information (including file path) for latest full, differential and log files. +

              You can even get detailed information (including file path) for latest full, differential and log files.
              For detailed examples of the various parameters see the documentation of Get-DbaDbBackupHistory.

              Reference: http://www.sqlhub.com/2011/07/find-your-backup-history-in-sql-server.html

              Syntax

              Get-DbaAgBackupHistory -SqlInstance <DbaInstanceParameter[]>
              -    [-SqlCredential <PSCredential>] -AvailabilityGroup <String>
              +    [-SqlCredential <PSCredential>]
              +    -AvailabilityGroup <String>
                   [-Database <String[]>]
                   [-ExcludeDatabase <String[]>]
                   [-IncludeCopyOnly]
              @@ -513,7 +514,8 @@ 

              Syntax

              [<CommonParameters>] Get-DbaAgBackupHistory -SqlInstance <DbaInstanceParameter[]> - [-SqlCredential <PSCredential>] -AvailabilityGroup <String> + [-SqlCredential <PSCredential>] + -AvailabilityGroup <String> [-Database <String[]>] [-ExcludeDatabase <String[]>] [-IncludeCopyOnly] @@ -564,9 +566,9 @@
              Example: 5

              Returns information for all database backups on all replicas for all availability groups on SQL instance MyServer.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances. -If you pass in one availability group listener, all replicas are automatically determined and queried. -If you pass in a list of individual replicas, they will be queried. This enables you to use custom ports for the replicas.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.
              +If you pass in one availability group listener, all replicas are automatically determined and queried.
              +If you pass in a list of individual replicas, they will be queried. This enables you to use custom ports for the replicas.

              @@ -594,7 +596,7 @@
              -SqlInstance
              -AvailabilityGroup
              -

              Specify the availability group to process.

              +

              Specify the availability group to process.

              @@ -623,7 +625,7 @@
              -AvailabilityGroup

              Optional Parameters

              -SqlCredential
              -

              Credential object used to connect to the SQL Server instance as a different user. This can be a Windows or SQL Server account. Windows users are determined by the existence of a backslash, so if you +

              Credential object used to connect to the SQL Server instance as a different user. This can be a Windows or SQL Server account. Windows users are determined by the existence of a backslash, so if you
              are intending to use an alternative Windows connection instead of a SQL login, ensure it contains a backslash.

              @@ -932,7 +934,7 @@
              -LastLog
              -DeviceType
              -

              Specifies a filter for backup sets based on DeviceType. Valid options are 'Disk','Permanent Disk Device', 'Tape', 'Permanent Tape Device','Pipe','Permanent Pipe Device','Virtual Device','URL', in +

              Specifies a filter for backup sets based on DeviceType. Valid options are 'Disk','Permanent Disk Device', 'Tape', 'Permanent Tape Device','Pipe','Permanent Pipe Device','Virtual Device','URL', in
              addition to custom integers for your own DeviceType.

              @@ -1045,7 +1047,7 @@
              -IncludeMirror
              -Type
              -

              Specifies one or more types of backups to return. Valid options are 'Full', 'Log', 'Differential', 'File', 'Differential File', 'Partial Full', and 'Partial Differential'. Otherwise, all types of +

              Specifies one or more types of backups to return. Valid options are 'Full', 'Log', 'Differential', 'File', 'Differential File', 'Partial Full', and 'Partial Differential'. Otherwise, all types of
              backups will be returned unless one of the -Last* switches is enabled.

              @@ -1110,8 +1112,8 @@
              -LsnSort
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaAgDatabase.html b/Get-DbaAgDatabase.html index 0bec3e54..c758f0ec 100644 --- a/Get-DbaAgDatabase.html +++ b/Get-DbaAgDatabase.html @@ -546,8 +546,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -660,8 +660,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaAgHadr.html b/Get-DbaAgHadr.html index c950bcc6..91cc4572 100644 --- a/Get-DbaAgHadr.html +++ b/Get-DbaAgHadr.html @@ -505,7 +505,7 @@
              Example: 1

              Returns a status of the Hadr setting for sql2016 SQL Server instance.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -534,8 +534,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -564,8 +564,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaAgListener.html b/Get-DbaAgListener.html index 9d3023f2..c63c55ce 100644 --- a/Get-DbaAgListener.html +++ b/Get-DbaAgListener.html @@ -544,8 +544,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -658,8 +658,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaAgReplica.html b/Get-DbaAgReplica.html index cc8c6a1a..43942269 100644 --- a/Get-DbaAgReplica.html +++ b/Get-DbaAgReplica.html @@ -544,8 +544,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -658,8 +658,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaAgentAlert.html b/Get-DbaAgentAlert.html index dd76d84a..f613a0e1 100644 --- a/Get-DbaAgentAlert.html +++ b/Get-DbaAgentAlert.html @@ -515,7 +515,7 @@
              Example: 3

              Returns all SQL Agent alerts on serverA and serverB\instanceB

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              @@ -544,8 +544,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -630,8 +630,8 @@
              -ExcludeAlert
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaAgentAlertCategory.html b/Get-DbaAgentAlertCategory.html index c9ee9876..a1182378 100644 --- a/Get-DbaAgentAlertCategory.html +++ b/Get-DbaAgentAlertCategory.html @@ -510,7 +510,7 @@
              Example: 2

              Return all the agent alert categories that have the name 'Severity Alert'.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              @@ -539,8 +539,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -597,8 +597,8 @@
              -Category
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaAgentJob.html b/Get-DbaAgentJob.html index 9aef9602..fa762bc0 100644 --- a/Get-DbaAgentJob.html +++ b/Get-DbaAgentJob.html @@ -541,7 +541,7 @@
              Example: 8

              Finds all jobs on sqlserver2014a that T-SQL job steps associated with msdb database

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              @@ -570,8 +570,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -828,8 +828,8 @@
              -Type
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaAgentJobCategory.html b/Get-DbaAgentJobCategory.html index 091a9009..a5b08dbc 100644 --- a/Get-DbaAgentJobCategory.html +++ b/Get-DbaAgentJobCategory.html @@ -515,7 +515,7 @@
              Example: 3

              Return all the job categories that have a type MultiServerJob.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              @@ -544,8 +544,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -602,7 +602,7 @@
              -Category
              -CategoryType
              -

              The type of category. This can be "LocalJob", "MultiServerJob" or "None". +

              The type of category. This can be "LocalJob", "MultiServerJob" or "None".
              If no category is used all categories types will be returned.

              @@ -635,8 +635,8 @@
              -CategoryType
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaAgentJobHistory.html b/Get-DbaAgentJobHistory.html index 4bbef938..6f064db6 100644 --- a/Get-DbaAgentJobHistory.html +++ b/Get-DbaAgentJobHistory.html @@ -487,9 +487,9 @@

              Get-DbaAgentJobHistory

              Synopsis

              Gets execution history of SQL Agent Job on instance(s) of SQL Server.

              Description

              -

              Get-DbaAgentJobHistory returns all information on the executions still available on each instance(s) of SQL Server submitted. +

              Get-DbaAgentJobHistory returns all information on the executions still available on each instance(s) of SQL Server submitted.
              The cleanup of SQL Agent history determines how many records are kept.

              -

              https://msdn.microsoft.com/en-us/library/ms201680.aspx +

              https://msdn.microsoft.com/en-us/library/ms201680.aspx
              https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.management.smo.agent.jobhistoryfilter(v=sql.120).aspx

              Syntax

              Get-DbaAgentJobHistory
              @@ -524,7 +524,8 @@ 

              Syntax

              [-EndDate <DateTime>] [-OutcomeType {Failed | Succeeded | Retry | Cancelled | InProgress | Unknown}] [-ExcludeJobSteps] - [-WithOutputFile] -JobCollection <Job> + [-WithOutputFile] + -JobCollection <Job> [-EnableException] [<CommonParameters>] @@ -575,7 +576,7 @@
              Example: 10

              Returns only the failed SQL Agent Job execution results for the sql2016 SQL Server instance.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              @@ -603,7 +604,7 @@
              -SqlInstance
              -JobCollection
              -

              An array of SMO jobs

              +

              An array of SMO jobs

              @@ -632,8 +633,8 @@
              -JobCollection

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -834,7 +835,7 @@
              -ExcludeJobSteps
              -WithOutputFile
              -

              Use this switch to retrieve the output file (only if you want step details). Bonus points, we handle the quirks +

              Use this switch to retrieve the output file (only if you want step details). Bonus points, we handle the quirks
              of SQL Agent tokens to the best of our knowledge (https://technet.microsoft.com/it-it/library/ms175575(v=sql.110).aspx)

              @@ -863,8 +864,8 @@
              -WithOutputFile
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaAgentJobOutputFile.html b/Get-DbaAgentJobOutputFile.html index 21f7b8fd..28e271da 100644 --- a/Get-DbaAgentJobOutputFile.html +++ b/Get-DbaAgentJobOutputFile.html @@ -485,10 +485,10 @@

              Get-DbaAgentJobOutputFile


              Want to see the Bill Of Health for this command? Check out Get-DbaAgentJobOutputFile.

              Synopsis

              -

              Returns the Output File for each step of one or many agent job with the Job Names provided dynamically if +

              Returns the Output File for each step of one or many agent job with the Job Names provided dynamically if
              required for one or more SQL Instances

              Description

              -

              This function returns for one or more SQL Instances the output file value for each step of one or many agent job with the Job Names +

              This function returns for one or more SQL Instances the output file value for each step of one or many agent job with the Job Names
              provided dynamically. It will not return anything if there is no Output File

              Syntax

              Get-DbaAgentJobOutputFile
              @@ -530,7 +530,7 @@ 
              Example: 5
              on the SERVERNAME instance and also show the job steps without an output file

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              @@ -559,9 +559,9 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. -For MFA support, please use Connect-DbaInstance. be it Windows or SQL Server. Windows users are determined by the existence of a backslash, so if you are intending to use an alternative Windows +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              +For MFA support, please use Connect-DbaInstance. be it Windows or SQL Server. Windows users are determined by the existence of a backslash, so if you are intending to use an alternative Windows
              connection instead of a SQL login, ensure it contains a backslash.

              @@ -646,8 +646,8 @@
              -ExcludeJob
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaAgentJobStep.html b/Get-DbaAgentJobStep.html index 0482a363..3637d1ce 100644 --- a/Get-DbaAgentJobStep.html +++ b/Get-DbaAgentJobStep.html @@ -557,8 +557,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -699,8 +699,8 @@
              -ExcludeDisabledJobs
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaAgentLog.html b/Get-DbaAgentLog.html index 35904a1e..55092b94 100644 --- a/Get-DbaAgentLog.html +++ b/Get-DbaAgentLog.html @@ -543,8 +543,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -601,8 +601,8 @@
              -LogNumber
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaAgentOperator.html b/Get-DbaAgentOperator.html index ef3aec7a..2d8a7576 100644 --- a/Get-DbaAgentOperator.html +++ b/Get-DbaAgentOperator.html @@ -519,7 +519,7 @@
              Example: 4

              Returns all the SQL Agent operators on ServerA and ServerB, except the Dba3 operator.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              @@ -548,8 +548,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -634,8 +634,8 @@
              -ExcludeOperator
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaAgentProxy.html b/Get-DbaAgentProxy.html index 178c9d2a..109965b3 100644 --- a/Get-DbaAgentProxy.html +++ b/Get-DbaAgentProxy.html @@ -511,7 +511,7 @@
              Example: 2

              Returns all SQL Agent proxies on serverA and serverB\instanceB

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              @@ -540,8 +540,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -626,8 +626,8 @@
              -ExcludeProxy
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaAgentSchedule.html b/Get-DbaAgentSchedule.html index 149b9448..950de626 100644 --- a/Get-DbaAgentSchedule.html +++ b/Get-DbaAgentSchedule.html @@ -524,7 +524,7 @@
              Example: 5

              Returns the "Maintenance10min" & "Maintenance60min" schedules from the sql2016 SQL Server instance

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              @@ -553,8 +553,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -667,8 +667,8 @@
              -Id
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaAgentServer.html b/Get-DbaAgentServer.html index 5d00b98f..f83ff336 100644 --- a/Get-DbaAgentServer.html +++ b/Get-DbaAgentServer.html @@ -509,7 +509,7 @@
              Example: 2

              Returns SQL Agent Servers for the localhost and sql2016 SQL Server instances

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              @@ -538,8 +538,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -568,8 +568,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaAvailabilityGroup.html b/Get-DbaAvailabilityGroup.html index 1b5ddfe2..f9f052d9 100644 --- a/Get-DbaAvailabilityGroup.html +++ b/Get-DbaAvailabilityGroup.html @@ -524,7 +524,7 @@
              Example: 5

              Returns true/false if the server, sqlserver2014a, is the primary replica for AG-a Availability Group.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2012 or higher.

              +

              The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2012 or higher.

              @@ -553,8 +553,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -639,8 +639,8 @@
              -IsPrimary
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaAvailableCollation.html b/Get-DbaAvailableCollation.html index 045c9e55..215b77a0 100644 --- a/Get-DbaAvailableCollation.html +++ b/Get-DbaAvailableCollation.html @@ -487,7 +487,7 @@

              Get-DbaAvailableCollation

              Synopsis

              Return available collations for a given SQL Server

              Description

              -

              Returns the list of collations available on each SQL Server. +

              Returns the list of collations available on each SQL Server.
              Only the connect permission is required to get this information.

              Syntax

              Get-DbaAvailableCollation
              @@ -506,7 +506,7 @@ 
              Example: 1

              Gets all the collations from server sql2016 using NT authentication

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. Only connect permission is required.

              +

              The target SQL Server instance or instances. Only connect permission is required.

              @@ -535,8 +535,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -565,8 +565,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaBackupDevice.html b/Get-DbaBackupDevice.html index ecd74f82..4f506ec2 100644 --- a/Get-DbaBackupDevice.html +++ b/Get-DbaBackupDevice.html @@ -509,8 +509,8 @@
              Example: 2

              Returns all Backup Devices for the local and sql2016 SQL Server instances

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function -to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
              +to be executed against multiple SQL Server instances.

              @@ -539,8 +539,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -569,8 +569,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaBackupInformation.html b/Get-DbaBackupInformation.html index 5180778b..b71c6b0e 100644 --- a/Get-DbaBackupInformation.html +++ b/Get-DbaBackupInformation.html @@ -487,11 +487,11 @@

              Get-DbaBackupInformation

              Synopsis

              Scan backup files and creates a set, compatible with Restore-DbaDatabase

              Description

              -

              Upon being passed a list of potential backups files this command will scan the files, select those that contain SQL Server +

              Upon being passed a list of potential backups files this command will scan the files, select those that contain SQL Server
              backup sets. It will then filter those files down to a set

              -

              The function defaults to working on a remote instance. This means that all paths passed in must be relative to the remote instance. +

              The function defaults to working on a remote instance. This means that all paths passed in must be relative to the remote instance.
              XpDirTree will be used to perform the file scans

              -

              Various means can be used to pass in a list of files to be considered. The default is to non recursively scan the folder +

              Various means can be used to pass in a list of files to be considered. The default is to non recursively scan the folder
              passed in.

              Syntax

              Get-DbaBackupInformation -Path <Object[]> -SqlInstance <DbaInstanceParameter>
              @@ -570,11 +570,11 @@ 
              Example: 7
              log backups. Note this also means they WON'T be restored

              Required Parameters

              -Path
              -

              Path to SQL Server backup files. -Paths passed in as strings will be scanned using the desired method, default is a non recursive folder scan -Accepts multiple paths separated by ',' -Or it can consist of FileInfo objects, such as the output of Get-ChildItem or Get-Item. This allows you to work with -your own file structures as needed

              +

              Path to SQL Server backup files.
              +Paths passed in as strings will be scanned using the desired method, default is a non recursive folder scan
              +Accepts multiple paths separated by ','
              +Or it can consist of FileInfo objects, such as the output of Get-ChildItem or Get-Item. This allows you to work with
              +your own file structures as needed

              @@ -602,7 +602,7 @@
              -Path
              -SqlInstance
              -

              The SQL Server instance to be used to read the headers of the backup files

              +

              The SQL Server instance to be used to read the headers of the backup files

              @@ -631,8 +631,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -717,7 +717,7 @@
              -SourceInstance
              -NoXpDirTree
              -

              If specified, this switch will cause the files to be parsed as local files to the SQL Server Instance provided. Errors may be observed when the SQL Server Instance cannot access the files being +

              If specified, this switch will cause the files to be parsed as local files to the SQL Server Instance provided. Errors may be observed when the SQL Server Instance cannot access the files being
              parsed.

              @@ -802,7 +802,7 @@
              -DirectoryRecurse
              -EnableException
              -

              Replaces user friendly yellow warnings with bloody red exceptions of doom! +

              Replaces user friendly yellow warnings with bloody red exceptions of doom!
              Use this if you want the function to throw terminating errors you want to catch.

              @@ -859,7 +859,7 @@
              -MaintenanceSolution
              -IgnoreLogBackup
              -

              This switch only works with the MaintenanceSolution switch. With an Ola Hallengren style backup we can be sure that the LOG folder contains only log backups and skip it. +

              This switch only works with the MaintenanceSolution switch. With an Ola Hallengren style backup we can be sure that the LOG folder contains only log backups and skip it.
              For all other scenarios we need to read the file headers to be sure.

              @@ -888,7 +888,7 @@
              -IgnoreLogBackup
              -IgnoreDiffBackup
              -

              This switch only works with the MaintenanceSolution switch. With an Ola Hallengren style backup we can be sure that the DIFF folder contains only differential backups and skip it. +

              This switch only works with the MaintenanceSolution switch. With an Ola Hallengren style backup we can be sure that the DIFF folder contains only differential backups and skip it.
              For all other scenarios we need to read the file headers to be sure.

              @@ -1001,7 +1001,7 @@
              -Import
              -Anonymise
              -

              If specified we will output the results with ComputerName, InstanceName, Database, UserName, Paths, and Logical and Physical Names hashed out +

              If specified we will output the results with ComputerName, InstanceName, Database, UserName, Paths, and Logical and Physical Names hashed out
              This options is mainly for use if we need you to submit details for fault finding to the dbatools team

              diff --git a/Get-DbaBinaryFileTable.html b/Get-DbaBinaryFileTable.html index b43a6224..5750553c 100644 --- a/Get-DbaBinaryFileTable.html +++ b/Get-DbaBinaryFileTable.html @@ -541,8 +541,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -599,11 +599,11 @@
              -Database
              -Table
              -

              Define a specific table you would like to query. You can specify up to three-part name like db.sch.tbl. -If the object has special characters please wrap them in square brackets [ ]. -Using dbo.First.Table will try to find table named 'Table' on schema 'First' and database 'dbo'. -The correct way to find table named 'First.Table' on schema 'dbo' is by passing dbo.[First.Table] -Any actual usage of the ] must be escaped by duplicating the ] character. +

              Define a specific table you would like to query. You can specify up to three-part name like db.sch.tbl.
              +If the object has special characters please wrap them in square brackets [ ].
              +Using dbo.First.Table will try to find table named 'Table' on schema 'First' and database 'dbo'.
              +The correct way to find table named 'First.Table' on schema 'dbo' is by passing dbo.[First.Table]
              +Any actual usage of the ] must be escaped by duplicating the ] character.
              The correct way to find a table Name] in schema Schema.Name is by passing [Schema.Name].[Name]]]

              @@ -688,8 +688,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaBuild.html b/Get-DbaBuild.html index f4ab6929..e877ffbc 100644 --- a/Get-DbaBuild.html +++ b/Get-DbaBuild.html @@ -488,7 +488,7 @@

              Get-DbaBuild

              Synopsis

              Returns SQL Server Build infos on a SQL instance

              Description

              -

              Returns info about the specific build of a SQL instance, including the SP, the CU and the reference KB, wherever possible. +

              Returns info about the specific build of a SQL instance, including the SP, the CU and the reference KB, wherever possible.
              It also includes End Of Support dates as specified on Microsoft Life Cycle Policy

              Syntax

              Get-DbaBuild
              @@ -581,7 +581,7 @@ 
              -Kb
              -MajorVersion
              -

              Get a KB information based on SQL Server version. Can be refined further by -ServicePack and -CumulativeUpdate parameters. +

              Get a KB information based on SQL Server version. Can be refined further by -ServicePack and -CumulativeUpdate parameters.
              Examples: SQL2008 | 2008R2 | 2016

              @@ -610,7 +610,7 @@
              -MajorVersion
              -ServicePack
              -

              Get a KB information based on SQL Server Service Pack version. Can be refined further by -CumulativeUpdate parameter. +

              Get a KB information based on SQL Server Service Pack version. Can be refined further by -CumulativeUpdate parameter.
              Examples: SP0 | 2 | RTM

              @@ -639,7 +639,7 @@
              -ServicePack
              -CumulativeUpdate
              -

              Get a KB information based on SQL Server Cumulative Update version. +

              Get a KB information based on SQL Server Cumulative Update version.
              Examples: CU0 | CU13 | CU0

              @@ -696,8 +696,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -754,8 +754,8 @@
              -Update
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaClientAlias.html b/Get-DbaClientAlias.html index 66145bda..0687eee3 100644 --- a/Get-DbaClientAlias.html +++ b/Get-DbaClientAlias.html @@ -573,8 +573,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaClientProtocol.html b/Get-DbaClientProtocol.html index 542f476c..04a23d52 100644 --- a/Get-DbaClientProtocol.html +++ b/Get-DbaClientProtocol.html @@ -488,7 +488,7 @@

              Synopsis

              Gets the SQL Server related client protocols on a computer.

              Description

              Gets the SQL Server related client protocols on one or more computers.

              -

              Requires Local Admin rights on destination computer(s). +

              Requires Local Admin rights on destination computer(s).
              The client protocols can be enabled and disabled when retrieved via WSMan.

              Syntax

              Get-DbaClientProtocol
              @@ -576,8 +576,8 @@ 
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaCmConnection.html b/Get-DbaCmConnection.html index 5385e399..6f320f91 100644 --- a/Get-DbaCmConnection.html +++ b/Get-DbaCmConnection.html @@ -569,8 +569,8 @@
              -UserName
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaCmObject.html b/Get-DbaCmObject.html index 8adb3d1a..876e5da7 100644 --- a/Get-DbaCmObject.html +++ b/Get-DbaCmObject.html @@ -487,14 +487,14 @@

              Get-DbaCmObject

              Synopsis

              Retrieves Wmi/Cim-Style information from computers.

              Description

              -

              This function centralizes all requests for information retrieved from Get-WmiObject or Get-CimInstance. +

              This function centralizes all requests for information retrieved from Get-WmiObject or Get-CimInstance.
              It uses different protocols as available in this order:

              • Cim over WinRM
              • Cim over DCOM
              • Wmi
              • -
              • Wmi over PowerShell Remoting -It remembers channels that didn't work and will henceforth avoid them. It remembers invalid credentials and will avoid reusing them. +
              • Wmi over PowerShell Remoting
                +It remembers channels that didn't work and will henceforth avoid them. It remembers invalid credentials and will avoid reusing them.
                Much of its behavior can be configured using Test-DbaCmConnection.

              Syntax

              @@ -534,7 +534,7 @@
              Example: 2
              It will use the Credentials stored in $cred to connect, unless they are known to not work, in which case they will default to windows credentials (unless another default has been set).

              Required Parameters

              -ClassName
              -

              The name of the class to retrieve.

              +

              The name of the class to retrieve.

              @@ -562,7 +562,7 @@
              -ClassName
              -Query
              -

              The Wmi/Cim query to run against the server.

              +

              The Wmi/Cim query to run against the server.

              @@ -734,8 +734,8 @@
              -Force
              -SilentlyContinue
              -

              Use in conjunction with the -EnableException switch. -By default, Get-DbaCmObject will throw a terminating exception when connecting to a target is impossible in exception enabled mode. +

              Use in conjunction with the -EnableException switch.
              +By default, Get-DbaCmObject will throw a terminating exception when connecting to a target is impossible in exception enabled mode.
              Setting this switch will cause it write a non-terminating exception and continue with the next computer.

              @@ -764,8 +764,8 @@
              -SilentlyContinue
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaComputerCertificate.html b/Get-DbaComputerCertificate.html index 039566af..a2b65358 100644 --- a/Get-DbaComputerCertificate.html +++ b/Get-DbaComputerCertificate.html @@ -718,8 +718,8 @@
              -Thumbprint
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaComputerSystem.html b/Get-DbaComputerSystem.html index 830cf84b..e642c422 100644 --- a/Get-DbaComputerSystem.html +++ b/Get-DbaComputerSystem.html @@ -598,8 +598,8 @@
              -IncludeAws
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaConnection.html b/Get-DbaConnection.html index b79ce656..d9317d50 100644 --- a/Get-DbaConnection.html +++ b/Get-DbaConnection.html @@ -487,7 +487,7 @@

              Get-DbaConnection

              Synopsis

              Returns a bunch of information from dm_exec_connections.

              Description

              -

              Returns a bunch of information from dm_exec_connections which, according to Microsoft: +

              Returns a bunch of information from dm_exec_connections which, according to Microsoft:
              "Returns information about the connections established to this instance of SQL Server and the details of each connection. Returns server wide connection information for SQL Server. Returns current database connection information for SQL Database."

              Syntax

              Get-DbaConnection
              @@ -506,7 +506,7 @@ 
              Example: 1

              Returns client connection information from sql2016 and sql2017

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. Server(s) must be SQL Server 2005 or higher.

              +

              The target SQL Server instance or instances. Server(s) must be SQL Server 2005 or higher.

              @@ -535,8 +535,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -565,8 +565,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaCpuRingBuffer.html b/Get-DbaCpuRingBuffer.html index d01b43e0..46fc2aff 100644 --- a/Get-DbaCpuRingBuffer.html +++ b/Get-DbaCpuRingBuffer.html @@ -488,9 +488,9 @@

              Synopsis

              Collects CPU data from sys.dm_os_ring_buffers. Works on SQL Server 2005 and above.

              Description

              This command is based off of Glen Berry's diagnostic query for average CPU

              -

              The sys.dm_os_ring_buffers stores the average CPU utilization history -by the current instance of SQL Server, plus the summed average CPU utilization -by all other processes on your machine are captured in one minute increments +

              The sys.dm_os_ring_buffers stores the average CPU utilization history
              +by the current instance of SQL Server, plus the summed average CPU utilization
              +by all other processes on your machine are captured in one minute increments
              for the past 256 minutes.

              Reference: https://www.sqlskills.com/blogs/glenn/sql-server-diagnostic-information-queries-detailed-day-16//

              Syntax

              @@ -528,7 +528,7 @@
              Example: 5

              Connects using sqladmin credential and returns CPU Statistics from sys.dm_os_ring_buffers from sql2008

              Required Parameters

              -SqlInstance
              -

              Allows you to specify a comma separated list of servers to query.

              +

              Allows you to specify a comma separated list of servers to query.

              @@ -557,10 +557,10 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. -For MFA support, please use Connect-DbaInstance. To use: -$cred = Get-Credential, this pass this $cred to the param. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              +For MFA support, please use Connect-DbaInstance. To use:
              +$cred = Get-Credential, this pass this $cred to the param.
              Windows Authentication will be used if DestinationSqlCredential is not specified. To connect as a different Windows user, run PowerShell as that user.

              @@ -617,8 +617,8 @@
              -CollectionMinutes
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaCpuUsage.html b/Get-DbaCpuUsage.html index 5f95647f..2e758e19 100644 --- a/Get-DbaCpuUsage.html +++ b/Get-DbaCpuUsage.html @@ -487,13 +487,13 @@

              Get-DbaCpuUsage

              Synopsis

              Provides detailed CPU usage information about a SQL Server's process

              Description

              -

              "If there are a lot of processes running on your instance and the CPU is very high, -then it's hard to find the exact process eating up your CPU using just the SQL Server -tools. One way to correlate the data between what is running within SQL Server and at +

              "If there are a lot of processes running on your instance and the CPU is very high,
              +then it's hard to find the exact process eating up your CPU using just the SQL Server
              +tools. One way to correlate the data between what is running within SQL Server and at
              the Windows level is to use SPID and KPID values to get the exact process."

              This command automates that process.

              References: https://www.mssqltips.com/sqlservertip/2454/how-to-find-out-how-much-cpu-a-sql-server-process-is-really-using/

              -

              Note: This command returns results from all SQL instances on the destination server but the process +

              Note: This command returns results from all SQL instances on the destination server but the process
              column is specific to -SqlInstance passed.

              Syntax

              Get-DbaCpuUsage
              @@ -523,7 +523,7 @@ 
              Example: 3

              Logs into the SQL instance using the SQL Login 'sqladmin' and then Windows instance as 'ad\sqldba'

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -552,8 +552,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -638,8 +638,8 @@
              -Threshold
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaCredential.html b/Get-DbaCredential.html index d19c6c85..caf0f24e 100644 --- a/Get-DbaCredential.html +++ b/Get-DbaCredential.html @@ -517,8 +517,8 @@
              Example: 3

              Returns the SQL Credentials for the account 'ad\powershell' on the local and sql2016 SQL Server instances

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function -to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
              +to be executed against multiple SQL Server instances.

              @@ -547,8 +547,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -577,7 +577,7 @@
              -SqlCredential
              -Credential
              -

              Only include specific names +

              Only include specific names
              Note: if spaces exist in the credential name, you will have to type "" or '' around it.

              @@ -634,7 +634,7 @@
              -ExcludeCredential
              -Identity
              -

              Only include specific identities +

              Only include specific identities
              Note: if spaces exist in the credential identity, you will have to type "" or '' around it.

              @@ -691,8 +691,8 @@
              -ExcludeIdentity
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaCustomError.html b/Get-DbaCustomError.html index 6cc3cf88..fddb4456 100644 --- a/Get-DbaCustomError.html +++ b/Get-DbaCustomError.html @@ -509,8 +509,8 @@
              Example: 2

              Returns all Custom Error Message(s) for the local and sql2016 SQL Server instances

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function -to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
              +to be executed against multiple SQL Server instances.

              @@ -539,8 +539,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -569,8 +569,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDatabase.html b/Get-DbaDatabase.html index 5a5b293f..9acfad9a 100644 --- a/Get-DbaDatabase.html +++ b/Get-DbaDatabase.html @@ -487,7 +487,7 @@

              Get-DbaDatabase

              Synopsis

              Gets SQL Database information for each database that is present on the target instance(s) of SQL Server.

              Description

              -

              The Get-DbaDatabase command gets SQL database information for each database that is present on the target instance(s) of +

              The Get-DbaDatabase command gets SQL database information for each database that is present on the target instance(s) of
              SQL Server. If the name of the database is provided, the command will return only the specific database information.

              Syntax

              Get-DbaDatabase
              @@ -562,7 +562,7 @@ 
              Example: 11

              Returns databases 'OneDb' and 'OtherDB' from SQL Server instances SQL2 and SQL3 if databases by those names exist on those instances.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -591,8 +591,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -677,7 +677,7 @@
              -ExcludeDatabase
              -ExcludeUser
              -

              If this switch is enabled, only databases which are not User databases will be processed. +

              If this switch is enabled, only databases which are not User databases will be processed.
              This parameter cannot be used with -ExcludeSystem.

              @@ -706,7 +706,7 @@
              -ExcludeUser
              -ExcludeSystem
              -

              If this switch is enabled, only databases which are not System databases will be processed. +

              If this switch is enabled, only databases which are not System databases will be processed.
              This parameter cannot be used with -ExcludeUser.

              @@ -791,7 +791,7 @@
              -Encrypted
              -Status
              -

              Specifies one or more database statuses to filter on. Only databases in the status(es) listed will be returned. Valid options for this parameter are 'EmergencyMode', 'Normal', 'Offline', +

              Specifies one or more database statuses to filter on. Only databases in the status(es) listed will be returned. Valid options for this parameter are 'EmergencyMode', 'Normal', 'Offline',
              'Recovering', 'RecoveryPending', 'Restoring', 'Standby', and 'Suspect'.

              @@ -1000,8 +1000,8 @@
              -NoLogBackupSince
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbAssembly.html b/Get-DbaDbAssembly.html index af1162a3..35ef8d03 100644 --- a/Get-DbaDbAssembly.html +++ b/Get-DbaDbAssembly.html @@ -515,8 +515,8 @@
              Example: 3

              Will fetch details for the MyTechCo.Houids.SQLCLR assembly in the MyDb Database on the Server1 instance

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function -to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
              +to be executed against multiple SQL Server instances.

              @@ -545,8 +545,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -631,8 +631,8 @@
              -Name
              -EnableException
              -

              By default, when something goes wrong, we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong, we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbAsymmetricKey.html b/Get-DbaDbAsymmetricKey.html index 644daa39..18777317 100644 --- a/Get-DbaDbAsymmetricKey.html +++ b/Get-DbaDbAsymmetricKey.html @@ -545,8 +545,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -687,8 +687,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbBackupHistory.html b/Get-DbaDbBackupHistory.html index 95c1f042..f39538b5 100644 --- a/Get-DbaDbBackupHistory.html +++ b/Get-DbaDbBackupHistory.html @@ -593,7 +593,7 @@
              Example: 12

              If db1 has multiple recovery forks, specifying the RecoveryFork GUID will restrict the search to that fork.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              @@ -622,7 +622,7 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Credential object used to connect to the SQL Server instance as a different user. This can be a Windows or SQL Server account. Windows users are determined by the existence of a backslash, so if you +

              Credential object used to connect to the SQL Server instance as a different user. This can be a Windows or SQL Server account. Windows users are determined by the existence of a backslash, so if you
              are intending to use an alternative Windows connection instead of a SQL login, ensure it contains a backslash.

              @@ -763,7 +763,7 @@
              -Force
              -Since
              -

              Specifies a starting point for the search for backups. If a DateTime object is passed, that will be used. If a TimeSpan object is passed, that will be added to Get-Date and the resulting value will +

              Specifies a starting point for the search for backups. If a DateTime object is passed, that will be used. If a TimeSpan object is passed, that will be added to Get-Date and the resulting value will
              be used.

              @@ -932,7 +932,7 @@
              -LastLog
              -DeviceType
              -

              Specifies a filter for backup sets based on DeviceType. Valid options are 'Disk','Permanent Disk Device', 'Tape', 'Permanent Tape Device','Pipe','Permanent Pipe Device','Virtual Device','URL', in +

              Specifies a filter for backup sets based on DeviceType. Valid options are 'Disk','Permanent Disk Device', 'Tape', 'Permanent Tape Device','Pipe','Permanent Pipe Device','Virtual Device','URL', in
              addition to custom integers for your own DeviceType.

              @@ -1045,7 +1045,7 @@
              -IncludeMirror
              -Type
              -

              Specifies one or more types of backups to return. Valid options are 'Full', 'Log', 'Differential', 'File', 'Differential File', 'Partial Full', and 'Partial Differential'. Otherwise, all types of +

              Specifies one or more types of backups to return. Valid options are 'Full', 'Log', 'Differential', 'File', 'Differential File', 'Partial Full', and 'Partial Differential'. Otherwise, all types of
              backups will be returned unless one of the -Last* switches is enabled.

              @@ -1166,8 +1166,8 @@
              -LsnSort
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbCertificate.html b/Get-DbaDbCertificate.html index f077d101..c27ada6e 100644 --- a/Get-DbaDbCertificate.html +++ b/Get-DbaDbCertificate.html @@ -550,8 +550,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -720,8 +720,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbCheckConstraint.html b/Get-DbaDbCheckConstraint.html index b23f5c03..7044fb0e 100644 --- a/Get-DbaDbCheckConstraint.html +++ b/Get-DbaDbCheckConstraint.html @@ -524,7 +524,7 @@
              Example: 5

              Gets the check constraints for the databases on Sql1 and Sql2/sqlexpress.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances

              +

              The target SQL Server instance or instances

              @@ -553,8 +553,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -667,8 +667,8 @@
              -ExcludeSystemTable
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbCompatibility.html b/Get-DbaDbCompatibility.html index 42c4d099..b46a4554 100644 --- a/Get-DbaDbCompatibility.html +++ b/Get-DbaDbCompatibility.html @@ -539,8 +539,8 @@
              -SqlInstance
              -SqlCredential
              -

              SqlLogin to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              SqlLogin to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance..

              @@ -625,8 +625,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbCompression.html b/Get-DbaDbCompression.html index 3028fd7a..9878432d 100644 --- a/Get-DbaDbCompression.html +++ b/Get-DbaDbCompression.html @@ -520,7 +520,7 @@
              Example: 4

              Returns objects size and current compression level for table1 and table2 in all databases except the TestDatabase database.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              @@ -549,8 +549,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -663,8 +663,8 @@
              -Table
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbDbccOpenTran.html b/Get-DbaDbDbccOpenTran.html index ee591bca..bf05729a 100644 --- a/Get-DbaDbDbccOpenTran.html +++ b/Get-DbaDbDbccOpenTran.html @@ -488,10 +488,10 @@

              Synopsis

              Execution of Database Console Command DBCC OPENTRAN

              Description

              Executes the command DBCC OPENTRAN against the requested databases

              -

              Displays information about the oldest active transaction and -the oldest distributed and nondistributed replicated transactions, if any, +

              Displays information about the oldest active transaction and
              +the oldest distributed and nondistributed replicated transactions, if any,
              within the transaction log of the specified database

              -

              Read more: +

              Read more:
              - https://docs.microsoft.com/en-us/sql/t-sql/database-console-commands/dbcc-opentran-transact-sql

              Syntax

              Get-DbaDbDbccOpenTran
              @@ -520,7 +520,7 @@ 
              Example: 3

              Connects to instances Sql1 and Sql2/sqlexpress using sqladmin credential and runs the command DBCC OPENTRAN WITH TABLERESULTS, NO_INFOMSGS against each database.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -549,8 +549,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -579,8 +579,8 @@
              -SqlCredential
              -Database
              -

              The database(s) to process. If unspecified, all databases will be processed. -The Name or Id of a database can be specified +

              The database(s) to process. If unspecified, all databases will be processed.
              +The Name or Id of a database can be specified
              Database names must comply with the rules for identifiers.

              @@ -609,8 +609,8 @@
              -Database
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbDetachedFileInfo.html b/Get-DbaDbDetachedFileInfo.html index 69c95909..0d7c1e6c 100644 --- a/Get-DbaDbDetachedFileInfo.html +++ b/Get-DbaDbDetachedFileInfo.html @@ -508,8 +508,8 @@
              Example: 1

              Returns information about the detached database file M:\Archive\mydb.mdf using the SQL Server instance sql2016. The M drive is relative to the SQL Server instance.

              Required Parameters

              -SqlInstance
              -

              Source SQL Server. This instance must be online and is required to parse the information contained with in the detached database file. -This function will not attach the database file, it will only use SQL Server to read its contents.

              +

              Source SQL Server. This instance must be online and is required to parse the information contained with in the detached database file.
              +This function will not attach the database file, it will only use SQL Server to read its contents.

              @@ -537,8 +537,8 @@
              -SqlInstance
              -Path
              -

              Specifies the path to the MDF file to be read. This path must be readable by the SQL Server service account. Ideally, the MDF will be located on the SQL Server itself, or on a network share to which -the SQL Server service account has access.

              +

              Specifies the path to the MDF file to be read. This path must be readable by the SQL Server service account. Ideally, the MDF will be located on the SQL Server itself, or on a network share to which
              +the SQL Server service account has access.

              @@ -567,8 +567,8 @@
              -Path

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -597,8 +597,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbEncryption.html b/Get-DbaDbEncryption.html index 9a6fed48..9d464ae8 100644 --- a/Get-DbaDbEncryption.html +++ b/Get-DbaDbEncryption.html @@ -520,7 +520,7 @@
              Example: 4

              List all encryption found for all databases including the system databases.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input.

              @@ -549,8 +549,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -663,8 +663,8 @@
              -IncludeSystemDBs
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbEncryptionKey.html b/Get-DbaDbEncryptionKey.html index 4fa89ef5..cc1450e1 100644 --- a/Get-DbaDbEncryptionKey.html +++ b/Get-DbaDbEncryptionKey.html @@ -548,8 +548,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -662,8 +662,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbExtentDiff.html b/Get-DbaDbExtentDiff.html index 6e088d70..d4e02eb4 100644 --- a/Get-DbaDbExtentDiff.html +++ b/Get-DbaDbExtentDiff.html @@ -487,7 +487,7 @@

              Get-DbaDbExtentDiff

              Synopsis

              What percentage of a database has changed since the last full backup

              Description

              -

              This is only an implementation of the script created by Paul S. Randal to find what percentage of a database has changed since the last full backup. +

              This is only an implementation of the script created by Paul S. Randal to find what percentage of a database has changed since the last full backup.
              https://www.sqlskills.com/blogs/paul/new-script-how-much-of-the-database-has-changed-since-the-last-full-backup/

              Syntax

              Get-DbaDbExtentDiff
              @@ -513,7 +513,7 @@ 
              Example: 2

              Get the changes for the DB01 database on multiple servers.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance

              +

              The target SQL Server instance

              @@ -542,8 +542,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -628,8 +628,8 @@
              -ExcludeDatabase
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbFeatureUsage.html b/Get-DbaDbFeatureUsage.html index 40e37fec..a62b49f4 100644 --- a/Get-DbaDbFeatureUsage.html +++ b/Get-DbaDbFeatureUsage.html @@ -539,8 +539,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -653,8 +653,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbFile.html b/Get-DbaDbFile.html index 54913162..9af04e55 100644 --- a/Get-DbaDbFile.html +++ b/Get-DbaDbFile.html @@ -553,8 +553,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -695,8 +695,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbFileGroup.html b/Get-DbaDbFileGroup.html index 556dcf88..80da7144 100644 --- a/Get-DbaDbFileGroup.html +++ b/Get-DbaDbFileGroup.html @@ -556,8 +556,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -670,8 +670,8 @@
              -FileGroup
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbFileGrowth.html b/Get-DbaDbFileGrowth.html index 720fe37b..498a3e38 100644 --- a/Get-DbaDbFileGrowth.html +++ b/Get-DbaDbFileGrowth.html @@ -543,8 +543,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -629,8 +629,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbFileMapping.html b/Get-DbaDbFileMapping.html index 9ebd6a28..31f7191f 100644 --- a/Get-DbaDbFileMapping.html +++ b/Get-DbaDbFileMapping.html @@ -536,8 +536,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -622,8 +622,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbForeignKey.html b/Get-DbaDbForeignKey.html index 954b7078..2ad44d0d 100644 --- a/Get-DbaDbForeignKey.html +++ b/Get-DbaDbForeignKey.html @@ -524,7 +524,7 @@
              Example: 5

              Gets the Foreign Keys for the databases on Sql1 and Sql2/sqlexpress.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances

              +

              The target SQL Server instance or instances

              @@ -553,8 +553,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -667,8 +667,8 @@
              -ExcludeSystemTable
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbIdentity.html b/Get-DbaDbIdentity.html index 4fee29f7..7dc82f25 100644 --- a/Get-DbaDbIdentity.html +++ b/Get-DbaDbIdentity.html @@ -488,7 +488,7 @@

              Synopsis

              Checks the current identity value via DBCC CHECKIDENT with NORESEED optuin

              Description

              Use the command DBCC CHECKIDENT with NORESEED option to checks the current identity value of a table and return results

              -

              Read more: +

              Read more:
              - https://docs.microsoft.com/en-us/sql/t-sql/database-console-commands/dbcc-checkident-transact-sql

              Syntax

              Get-DbaDbIdentity
              @@ -525,7 +525,7 @@ 
              Example: 3

              Checks the current identity value for all non memory optimized tables with an Identity in the AdventureWorks2014 database on the SQLServer2017 instance.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -554,8 +554,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -640,8 +640,8 @@
              -Table
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbLogShipError.html b/Get-DbaDbLogShipError.html index 9aba4ab3..a76f41d2 100644 --- a/Get-DbaDbLogShipError.html +++ b/Get-DbaDbLogShipError.html @@ -487,7 +487,7 @@

              Get-DbaDbLogShipError

              Synopsis

              Get-DbaDbLogShipError returns all the log shipping errors that occurred

              Description

              -

              When your log shipping fails it's sometimes hard to see why is fails. +

              When your log shipping fails it's sometimes hard to see why is fails.
              Using this function you'll be able to find out what went wrong in a short amount of time.

              Syntax

              Get-DbaDbLogShipError
              @@ -531,7 +531,7 @@ 
              Example: 5
              See that is doesn't matter how the date is represented.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or greater.

              +

              The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or greater.

              @@ -560,8 +560,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -590,7 +590,7 @@
              -SqlCredential
              -Database
              -

              Allows you to filter the results to only return the databases you're interested in. This can be one or more values separated by commas. +

              Allows you to filter the results to only return the databases you're interested in. This can be one or more values separated by commas.
              This is not a wildcard and should be the exact database name. See examples for more info.

              @@ -619,7 +619,7 @@
              -Database
              -ExcludeDatabase
              -

              Allows you to filter the results to only return the databases you're not interested in. This can be one or more values separated by commas. +

              Allows you to filter the results to only return the databases you're not interested in. This can be one or more values separated by commas.
              This is not a wildcard and should be the exact database name.

              @@ -648,7 +648,7 @@
              -ExcludeDatabase
              -Action
              -

              Filter to get the log shipping action that has occurred like Backup, Copy, Restore. +

              Filter to get the log shipping action that has occurred like Backup, Copy, Restore.
              By default all the actions are returned.

              @@ -793,8 +793,8 @@
              -Secondary
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbLogSpace.html b/Get-DbaDbLogSpace.html index 192ed604..159fb83f 100644 --- a/Get-DbaDbLogSpace.html +++ b/Get-DbaDbLogSpace.html @@ -525,7 +525,7 @@
              Example: 5

              Returns the transaction log usage information for Database1 for a group of servers from SQL Server Central Management Server (CMS).

              Required Parameters

              -SqlInstance
              -

              SQL Server name or SMO object representing the SQL Server to connect to. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              +

              SQL Server name or SMO object representing the SQL Server to connect to. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              @@ -554,8 +554,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -668,8 +668,8 @@
              -ExcludeSystemDatabase
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbMail.html b/Get-DbaDbMail.html index f7032934..a90f8119 100644 --- a/Get-DbaDbMail.html +++ b/Get-DbaDbMail.html @@ -514,7 +514,7 @@
              Example: 3

              Returns the db mail server object for "sql2014","sql2016" and "sqlcluster\sharepoint"

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -543,8 +543,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -573,8 +573,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbMailAccount.html b/Get-DbaDbMailAccount.html index d9d6df8a..e49e9980 100644 --- a/Get-DbaDbMailAccount.html +++ b/Get-DbaDbMailAccount.html @@ -549,8 +549,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -663,8 +663,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbMailConfig.html b/Get-DbaDbMailConfig.html index 9c3042c3..8031c471 100644 --- a/Get-DbaDbMailConfig.html +++ b/Get-DbaDbMailConfig.html @@ -548,8 +548,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -634,8 +634,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbMailHistory.html b/Get-DbaDbMailHistory.html index 3dff61ae..99dfd380 100644 --- a/Get-DbaDbMailHistory.html +++ b/Get-DbaDbMailHistory.html @@ -544,8 +544,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -634,8 +634,8 @@
              -Status
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbMailLog.html b/Get-DbaDbMailLog.html index df067793..0023b7a9 100644 --- a/Get-DbaDbMailLog.html +++ b/Get-DbaDbMailLog.html @@ -544,8 +544,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -634,8 +634,8 @@
              -Type
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbMailProfile.html b/Get-DbaDbMailProfile.html index 39bd70c8..c97f0746 100644 --- a/Get-DbaDbMailProfile.html +++ b/Get-DbaDbMailProfile.html @@ -554,8 +554,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -668,8 +668,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbMailServer.html b/Get-DbaDbMailServer.html index d63726c3..ef2d90b6 100644 --- a/Get-DbaDbMailServer.html +++ b/Get-DbaDbMailServer.html @@ -549,8 +549,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -663,8 +663,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbMasterKey.html b/Get-DbaDbMasterKey.html index b5b4b53a..32e41d12 100644 --- a/Get-DbaDbMasterKey.html +++ b/Get-DbaDbMasterKey.html @@ -540,8 +540,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -654,8 +654,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbMemoryUsage.html b/Get-DbaDbMemoryUsage.html index bb80ef46..78a8b3f7 100644 --- a/Get-DbaDbMemoryUsage.html +++ b/Get-DbaDbMemoryUsage.html @@ -488,7 +488,7 @@

              Synopsis

              Determine buffer pool usage by database.

              Description

              This command can be utilized to determine which databases on a given instance are consuming buffer pool memory.

              -

              This command is based on query provided by Aaron Bertrand. +

              This command is based on query provided by Aaron Bertrand.
              Reference: https://www.mssqltips.com/sqlservertip/2393/determine-sql-server-memory-use-by-database-and-object/

              Syntax

              Get-DbaDbMemoryUsage
              @@ -522,7 +522,7 @@ 
              Example: 4

              Returns the buffer pool consumption for all user databases and tempdb database

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -551,8 +551,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance..

              @@ -665,8 +665,8 @@
              -IncludeSystemDb
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbMirror.html b/Get-DbaDbMirror.html index 9f11dcf0..483d9551 100644 --- a/Get-DbaDbMirror.html +++ b/Get-DbaDbMirror.html @@ -514,8 +514,8 @@
              Example: 3

              Gets properties of database mirrors and mirror witnesses on localhost and sql2016 SQL Server instances for databases named mymirror

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function -to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
              +to be executed against multiple SQL Server instances.

              @@ -544,8 +544,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -602,8 +602,8 @@
              -Database
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbMirrorMonitor.html b/Get-DbaDbMirrorMonitor.html index af396a93..a4f9d57d 100644 --- a/Get-DbaDbMirrorMonitor.html +++ b/Get-DbaDbMirrorMonitor.html @@ -542,8 +542,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -628,7 +628,7 @@
              -InputObject
              -Update
              -

              Updates the status for the database by calling sp_dbmmonitorupdate before computing the results. +

              Updates the status for the database by calling sp_dbmmonitorupdate before computing the results.
              However, if the status table has been updated within the previous 15 seconds, or the user is not a member of the sysadmin fixed server role, the command runs without updating the status.

              @@ -657,17 +657,17 @@
              -Update
              -LimitResults
              -

              Limit results. Defaults to last two hours. -Options include: -LastRow -LastTwoHours -LastFourHours -LastEightHours -LastDay -LastTwoDays -Last100Rows -Last500Rows -Last1000Rows +

              Limit results. Defaults to last two hours.
              +Options include:
              +LastRow
              +LastTwoHours
              +LastFourHours
              +LastEightHours
              +LastDay
              +LastTwoDays
              +Last100Rows
              +Last500Rows
              +Last1000Rows
              Last1000000Rows

              @@ -700,8 +700,8 @@
              -LimitResults
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbObjectTrigger.html b/Get-DbaDbObjectTrigger.html index 81ba44aa..b48e65bd 100644 --- a/Get-DbaDbObjectTrigger.html +++ b/Get-DbaDbObjectTrigger.html @@ -545,8 +545,8 @@
              -SqlInstance
              -SqlCredential
              -

              SqlLogin to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              SqlLogin to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance..

              @@ -691,8 +691,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/ca

              diff --git a/Get-DbaDbOrphanUser.html b/Get-DbaDbOrphanUser.html index a52f15dc..5925145b 100644 --- a/Get-DbaDbOrphanUser.html +++ b/Get-DbaDbOrphanUser.html @@ -515,7 +515,7 @@
              Example: 3

              Finds orphan users without matching Logins in the db1 database present on server 'localhost\sql2016'.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -544,8 +544,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -630,8 +630,8 @@
              -ExcludeDatabase
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbPageInfo.html b/Get-DbaDbPageInfo.html index 1bdf8c48..31a4a1e7 100644 --- a/Get-DbaDbPageInfo.html +++ b/Get-DbaDbPageInfo.html @@ -487,7 +487,7 @@

              Get-DbaDbPageInfo

              Synopsis

              Get-DbaDbPageInfo will return page information for a database

              Description

              -

              Get-DbaDbPageInfo is able to return information about the pages in a database. +

              Get-DbaDbPageInfo is able to return information about the pages in a database.
              It's possible to return the information for multiple databases and filter on specific databases, schemas and tables.

              Syntax

              Get-DbaDbPageInfo
              @@ -546,8 +546,8 @@ 
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -688,8 +688,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbPartitionFunction.html b/Get-DbaDbPartitionFunction.html index bb26fc36..69d458e6 100644 --- a/Get-DbaDbPartitionFunction.html +++ b/Get-DbaDbPartitionFunction.html @@ -524,7 +524,7 @@
              Example: 5

              Gets the partition function partFun01 for the TestDB on localhost.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -553,8 +553,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -667,8 +667,8 @@
              -PartitionFunction
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbPartitionScheme.html b/Get-DbaDbPartitionScheme.html index f7521e2d..bf995ff7 100644 --- a/Get-DbaDbPartitionScheme.html +++ b/Get-DbaDbPartitionScheme.html @@ -524,7 +524,7 @@
              Example: 5

              Gets the partition scheme partSch01 for the TestDB on localhost.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances

              +

              The target SQL Server instance or instances

              @@ -553,8 +553,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -667,8 +667,8 @@
              -PartitionScheme
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbQueryStoreOption.html b/Get-DbaDbQueryStoreOption.html index 7d5d26d4..5dda6f69 100644 --- a/Get-DbaDbQueryStoreOption.html +++ b/Get-DbaDbQueryStoreOption.html @@ -516,7 +516,7 @@
              Example: 3

              Returns Query Store configuration settings for every database on the ServerA\sql instance inside a table format.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -545,8 +545,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              SqlLogin to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              SqlLogin to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -631,8 +631,8 @@
              -ExcludeDatabase
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbRecoveryModel.html b/Get-DbaDbRecoveryModel.html index 2f3d8835..c144f133 100644 --- a/Get-DbaDbRecoveryModel.html +++ b/Get-DbaDbRecoveryModel.html @@ -512,7 +512,7 @@
              Example: 2

              Gets recovery model information for TestDB. If TestDB does not exist on the instance nothing is returned.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -541,8 +541,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -571,8 +571,8 @@
              -SqlCredential
              -RecoveryModel
              -

              Filters the output based on Recovery Model. Valid options are Simple, Full and BulkLogged -Details about the recovery models can be found here: +

              Filters the output based on Recovery Model. Valid options are Simple, Full and BulkLogged
              +Details about the recovery models can be found here:
              https://docs.microsoft.com/en-us/sql/relational-databases/backup-restore/recovery-models-sql-server

              @@ -661,8 +661,8 @@
              -ExcludeDatabase
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbRestoreHistory.html b/Get-DbaDbRestoreHistory.html index 1b74dd8b..bf4ee8e8 100644 --- a/Get-DbaDbRestoreHistory.html +++ b/Get-DbaDbRestoreHistory.html @@ -533,7 +533,7 @@
              Example: 6

              Returns log restore information for every database on the sql2016 instance.

              Required Parameters

              -SqlInstance
              -

              Specifies the SQL Server instance(s) to operate on. Requires SQL Server 2005 or higher.

              +

              Specifies the SQL Server instance(s) to operate on. Requires SQL Server 2005 or higher.

              @@ -562,8 +562,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -732,7 +732,7 @@
              -Last
              -RestoreType
              -

              Return the history for a specific type of restore. The possible values are 'Database', 'File', 'Filegroup', 'Differential', 'Log', 'Verifyonly', 'Revert'. This is an optional parameter so there is no +

              Return the history for a specific type of restore. The possible values are 'Database', 'File', 'Filegroup', 'Differential', 'Log', 'Verifyonly', 'Revert'. This is an optional parameter so there is no
              default value.

              @@ -765,8 +765,8 @@
              -RestoreType
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbRole.html b/Get-DbaDbRole.html index 4153458a..80b75b54 100644 --- a/Get-DbaDbRole.html +++ b/Get-DbaDbRole.html @@ -560,8 +560,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -758,8 +758,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbRoleMember.html b/Get-DbaDbRoleMember.html index c84b5b1f..9bd0370c 100644 --- a/Get-DbaDbRoleMember.html +++ b/Get-DbaDbRoleMember.html @@ -566,8 +566,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -792,8 +792,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbSchema.html b/Get-DbaDbSchema.html index a62a6077..0c15d66b 100644 --- a/Get-DbaDbSchema.html +++ b/Get-DbaDbSchema.html @@ -550,7 +550,7 @@
              Example: 9

              Finds the TestSchema in the TestDB which is passed via pipeline into the Get-DbaDbSchema command.

              Optional Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
              to be executed against multiple SQL Server instances.

              @@ -579,8 +579,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -777,8 +777,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbSequence.html b/Get-DbaDbSequence.html index 6bf11003..bdb193b6 100644 --- a/Get-DbaDbSequence.html +++ b/Get-DbaDbSequence.html @@ -529,7 +529,7 @@
              Example: 6

              Finds all the sequences in the sch schema on the localhost instance.

              Optional Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
              to be executed against multiple SQL Server instances.

              @@ -558,8 +558,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -700,8 +700,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbServiceBrokerQueue.html b/Get-DbaDbServiceBrokerQueue.html index 2c61480e..e15d3194 100644 --- a/Get-DbaDbServiceBrokerQueue.html +++ b/Get-DbaDbServiceBrokerQueue.html @@ -548,8 +548,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -662,8 +662,8 @@
              -ExcludeSystemQueue
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbServiceBrokerService.html b/Get-DbaDbServiceBrokerService.html index 3dc1edea..950111f4 100644 --- a/Get-DbaDbServiceBrokerService.html +++ b/Get-DbaDbServiceBrokerService.html @@ -548,8 +548,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -662,8 +662,8 @@
              -ExcludeSystemService
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbSharePoint.html b/Get-DbaDbSharePoint.html index 6b3affa7..7cd4385e 100644 --- a/Get-DbaDbSharePoint.html +++ b/Get-DbaDbSharePoint.html @@ -540,8 +540,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -626,8 +626,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbSnapshot.html b/Get-DbaDbSnapshot.html index 15abd068..8f7aaebe 100644 --- a/Get-DbaDbSnapshot.html +++ b/Get-DbaDbSnapshot.html @@ -517,7 +517,7 @@
              Example: 3

              Returns information for database snapshots HR_snapshot and Accounting_snapshot

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -546,8 +546,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -688,8 +688,8 @@
              -ExcludeSnapshot
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbSpace.html b/Get-DbaDbSpace.html index 4e6e892f..5ee0815e 100644 --- a/Get-DbaDbSpace.html +++ b/Get-DbaDbSpace.html @@ -554,8 +554,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -696,8 +696,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbState.html b/Get-DbaDbState.html index 939b8734..8d51c1ea 100644 --- a/Get-DbaDbState.html +++ b/Get-DbaDbState.html @@ -525,7 +525,7 @@
              Example: 4

              Gets options for all databases of sqlserver2014a and sqlserver2014b instances

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances

              +

              The target SQL Server instance or instances

              @@ -554,8 +554,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -640,8 +640,8 @@
              -ExcludeDatabase
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbStoredProcedure.html b/Get-DbaDbStoredProcedure.html index cca0c42b..e52b0113 100644 --- a/Get-DbaDbStoredProcedure.html +++ b/Get-DbaDbStoredProcedure.html @@ -575,8 +575,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -773,8 +773,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbSynonym.html b/Get-DbaDbSynonym.html index 53a9ff90..5d3732aa 100644 --- a/Get-DbaDbSynonym.html +++ b/Get-DbaDbSynonym.html @@ -559,8 +559,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -785,8 +785,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbTable.html b/Get-DbaDbTable.html index b8cadeb9..0ed35bc4 100644 --- a/Get-DbaDbTable.html +++ b/Get-DbaDbTable.html @@ -563,8 +563,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -677,10 +677,10 @@
              -IncludeSystemDBs
              -Table
              -

              Define a specific table you would like to query. You can specify up to three-part name such as db.sch.tbl. -If the object has special characters wrap them in square brackets [ ]. -The correct way to find table named 'First.Table' on schema 'dbo' is by passing dbo.[First.Table] -Any actual usage of the ] must be escaped by duplicating the ] character. +

              Define a specific table you would like to query. You can specify up to three-part name such as db.sch.tbl.
              +If the object has special characters wrap them in square brackets [ ].
              +The correct way to find table named 'First.Table' on schema 'dbo' is by passing dbo.[First.Table]
              +Any actual usage of the ] must be escaped by duplicating the ] character.
              The correct way to find a table Name] in schema Schema.Name is by passing [Schema.Name].[Name]]]

              @@ -765,8 +765,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbTrigger.html b/Get-DbaDbTrigger.html index 69e27e3b..4c862a56 100644 --- a/Get-DbaDbTrigger.html +++ b/Get-DbaDbTrigger.html @@ -544,8 +544,8 @@
              -SqlInstance
              -SqlCredential
              -

              SqlLogin to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              SqlLogin to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance..

              @@ -658,8 +658,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/ca

              diff --git a/Get-DbaDbUdf.html b/Get-DbaDbUdf.html index e8b2fe1b..d8394566 100644 --- a/Get-DbaDbUdf.html +++ b/Get-DbaDbUdf.html @@ -528,7 +528,7 @@
              Example: 5

              Gets the User Defined Functions for the databases on Sql1 and Sql2/sqlexpress

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances

              +

              The target SQL Server instance or instances

              @@ -557,8 +557,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -783,8 +783,8 @@
              -ExcludeName
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbUser.html b/Get-DbaDbUser.html index 489fcc17..58f31458 100644 --- a/Get-DbaDbUser.html +++ b/Get-DbaDbUser.html @@ -534,7 +534,7 @@
              Example: 7

              Gets the users associated with the logins 'login1' and 'login2'

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances

              +

              The target SQL Server instance or instances

              @@ -563,8 +563,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -733,8 +733,8 @@
              -Login
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbUserDefinedTableType.html b/Get-DbaDbUserDefinedTableType.html index 34fc4224..1443c8ec 100644 --- a/Get-DbaDbUserDefinedTableType.html +++ b/Get-DbaDbUserDefinedTableType.html @@ -544,8 +544,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -658,8 +658,8 @@
              -Type
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbView.html b/Get-DbaDbView.html index 08770d09..d6a53f9c 100644 --- a/Get-DbaDbView.html +++ b/Get-DbaDbView.html @@ -562,8 +562,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -732,8 +732,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbVirtualLogFile.html b/Get-DbaDbVirtualLogFile.html index 47431405..aede6c2d 100644 --- a/Get-DbaDbVirtualLogFile.html +++ b/Get-DbaDbVirtualLogFile.html @@ -489,8 +489,8 @@

              Synopsis

              Description

              Having a transaction log file with too many virtual log files (VLFs) can hurt database performance.

              Too many VLFs can cause transaction log backups to slow down and can also slow down database recovery and, in extreme cases, even affect insert/update/delete performance.

              -

              References: -http://www.sqlskills.com/blogs/kimberly/transaction-log-vlfs-too-many-or-too-few/ +

              References:
              +http://www.sqlskills.com/blogs/kimberly/transaction-log-vlfs-too-many-or-too-few/
              http://blogs.msdn.com/b/saponsqlserver/archive/2012/02/22/too-many-virtual-log-files-vlfs-can-cause-slow-database-recovery.aspx

              If you've got a high number of VLFs, you can use Expand-DbaDbLogFile to reduce the number.

              Syntax

              @@ -525,7 +525,7 @@
              Example: 4

              Returns the VLF counts for the db1 and db2 databases on sqlcluster.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -554,8 +554,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -668,8 +668,8 @@
              -IncludeSystemDBs
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbccHelp.html b/Get-DbaDbccHelp.html index cf706f64..1adcbf3f 100644 --- a/Get-DbaDbccHelp.html +++ b/Get-DbaDbccHelp.html @@ -488,7 +488,7 @@

              Synopsis

              Execution of Database Console Command DBCC HELP

              Description

              Returns the results of DBCC HELP

              -

              Read more: +

              Read more:
              - https://docs.microsoft.com/en-us/sql/t-sql/database-console-commands/dbcc-help-transact-sql

              Syntax

              Get-DbaDbccHelp
              @@ -513,7 +513,7 @@ 
              Example: 2

              Sets TraeFlag 2588 on for session and then runs the command DBCC HELP(WritePage) WITH NO_INFOMSGS against the SQL Server instance SQLInstance

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -542,8 +542,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -572,8 +572,8 @@
              -SqlCredential
              -Statement
              -

              Is the name of the DBCC command for which to receive syntax information. -Provide only the part of the DBCC command that follows DBCC, +

              Is the name of the DBCC command for which to receive syntax information.
              +Provide only the part of the DBCC command that follows DBCC,
              for example, CHECKDB instead of DBCC CHECKDB.

              @@ -602,7 +602,7 @@
              -Statement
              -IncludeUndocumented
              -

              Allows getting help for undocumented DBCC commands. Requires Traceflag 2588 +

              Allows getting help for undocumented DBCC commands. Requires Traceflag 2588
              This only works for SQL Server 2005 or Higher

              @@ -631,8 +631,8 @@
              -IncludeUndocumented
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbccMemoryStatus.html b/Get-DbaDbccMemoryStatus.html index 744dbb24..eb858d8f 100644 --- a/Get-DbaDbccMemoryStatus.html +++ b/Get-DbaDbccMemoryStatus.html @@ -488,8 +488,8 @@

              Synopsis

              Gets the results of DBCC MEMORYSTATUS. Works on SQL Server 2000-2019.

              Description

              This command is used to run the DBCC MEMORYSTATUS comand and collect results in a single usable recordset

              -

              Reference: -- https://blogs.msdn.microsoft.com/timchapman/2012/08/16/how-to-parse-dbcc-memorystatus-via-powershell/ +

              Reference:
              +- https://blogs.msdn.microsoft.com/timchapman/2012/08/16/how-to-parse-dbcc-memorystatus-via-powershell/
              - https://support.microsoft.com/en-us/help/907877/how-to-use-the-dbcc-memorystatus-command-to-monitor-memory-usage-on-sq

              Syntax

              Get-DbaDbccMemoryStatus
              @@ -512,7 +512,7 @@ 
              Example: 2

              Get output of DBCC MEMORYSTATUS for all servers in Server Central Management Server

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -541,8 +541,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -571,8 +571,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbccProcCache.html b/Get-DbaDbccProcCache.html index 82874694..c1243919 100644 --- a/Get-DbaDbccProcCache.html +++ b/Get-DbaDbccProcCache.html @@ -488,7 +488,7 @@

              Synopsis

              Execution of Database Console Command DBCC PROCCACHE

              Description

              Returns the results of DBCC PROCCACHE

              -

              Read more: +

              Read more:
              - https://docs.microsoft.com/en-us/sql/t-sql/database-console-commands/dbcc-proccache-transact-sql

              Syntax

              Get-DbaDbccProcCache
              @@ -516,7 +516,7 @@ 
              Example: 3

              Connects using sqladmin credential and gets results of DBCC PROCCACHE for Instance Server1

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -545,8 +545,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -575,8 +575,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbccSessionBuffer.html b/Get-DbaDbccSessionBuffer.html index 83757869..0e145d52 100644 --- a/Get-DbaDbccSessionBuffer.html +++ b/Get-DbaDbccSessionBuffer.html @@ -488,8 +488,8 @@

              Synopsis

              Gets result of Database Console Command DBCC INPUTBUFFER or DBCC OUTPUTBUFFER

              Description

              Returns the results of DBCC INPUTBUFFER or DBCC OUTPUTBUFFER for input sessions

              -

              Read more: -- https://docs.microsoft.com/en-us/sql/t-sql/database-console-commands/dbcc-inputbuffer-transact-sql +

              Read more:
              +- https://docs.microsoft.com/en-us/sql/t-sql/database-console-commands/dbcc-inputbuffer-transact-sql
              - https://docs.microsoft.com/en-us/sql/t-sql/database-console-commands/dbcc-outputbuffer-transact-sql

              Syntax

              Get-DbaDbccSessionBuffer
              @@ -542,7 +542,7 @@ 
              Example: 8

              Connects using sqladmin credential and gets results of DBCC OUTPUTBUFFER(51,0) for Instance Server1

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -571,8 +571,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -661,10 +661,10 @@
              -SessionId
              -RequestId
              -

              Is the exact request (batch) to search for within the current session -The following query returns request_id: -SELECT request_id -FROM sys.dm_exec_requests +

              Is the exact request (batch) to search for within the current session
              +The following query returns request_id:
              +SELECT request_id
              +FROM sys.dm_exec_requests
              WHERE session_id = @@spid;

              @@ -693,7 +693,7 @@
              -RequestId
              -All
              -

              If this switch is enabled, results for all User Sessions will be retreived +

              If this switch is enabled, results for all User Sessions will be retreived
              This overides any values for SessionId or RequestId

              @@ -722,8 +722,8 @@
              -All
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbccStatistic.html b/Get-DbaDbccStatistic.html index 93d6b277..d213b664 100644 --- a/Get-DbaDbccStatistic.html +++ b/Get-DbaDbccStatistic.html @@ -489,7 +489,7 @@

              Synopsis

              Description

              Executes the command DBCC SHOW_STATISTICS against defined objects and returns results

              Reclaims space from dropped variable-length columns in tables or indexed views

              -

              Read more: +

              Read more:
              - https://docs.microsoft.com/en-us/sql/t-sql/database-console-commands/dbcc-cleantable-transact-sql

              Syntax

              Get-DbaDbccStatistic
              @@ -527,7 +527,7 @@ 
              Example: 4

              Runs the statement SHOW_STATISTICS('dbo.UserTable', 'MyStatistic') WITH STATS_STREAM against database MyDb on instances Sql1 and Sql2/sqlexpress. Connects using Windows Authentication.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -556,8 +556,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -614,7 +614,7 @@
              -Database
              -Object
              -

              The table or indexed view for which to display statistics information. +

              The table or indexed view for which to display statistics information.
              Any two part object name should be formatted as 'Schema.ObjectName'

              @@ -643,7 +643,7 @@
              -Object
              -Target
              -

              Name of the index, statistics, or column for which to display statistics information. +

              Name of the index, statistics, or column for which to display statistics information.
              Target can be enclosed in brackets, single quotes, double quotes, or no quotes

              @@ -672,8 +672,8 @@
              -Target
              -Option
              -

              Used to limit the result sets returned by the statement to the specified option. -Options are 'StatHeader', 'DensityVector', 'Histogram', 'StatsStream' +

              Used to limit the result sets returned by the statement to the specified option.
              +Options are 'StatHeader', 'DensityVector', 'Histogram', 'StatsStream'
              Default of StatHeader

              @@ -734,8 +734,8 @@
              -NoInformationalMessages
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDbccUserOption.html b/Get-DbaDbccUserOption.html index 512951a9..473d4069 100644 --- a/Get-DbaDbccUserOption.html +++ b/Get-DbaDbccUserOption.html @@ -488,7 +488,7 @@

              Synopsis

              Execution of Database Console Command DBCC USEROPTIONS

              Description

              Returns the results of DBCC USEROPTIONS

              -

              Read more: +

              Read more:
              - https://docs.microsoft.com/en-us/sql/t-sql/database-console-commands/dbcc-useroptions-transact-sql

              Syntax

              Get-DbaDbccUserOption
              @@ -521,7 +521,7 @@ 
              Example: 4

              Gets results of DBCC USEROPTIONS for Instance Server1. Only display results for the options ansi_nulls, ansi_warnings, datefirst

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -550,8 +550,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -580,8 +580,8 @@
              -SqlCredential
              -Option
              -

              Return only specific options. Returns all results if not specified. -Accepts any values in set 'ansi_null_dflt_on', 'ansi_nulls', 'ansi_padding', 'ansi_warnings', 'arithabort', 'concat_null_yields_null', 'datefirst', 'dateformat', 'isolation level', 'language', +

              Return only specific options. Returns all results if not specified.
              +Accepts any values in set 'ansi_null_dflt_on', 'ansi_nulls', 'ansi_padding', 'ansi_warnings', 'arithabort', 'concat_null_yields_null', 'datefirst', 'dateformat', 'isolation level', 'language',
              'lock_timeout', 'quoted_identifier', 'textsize'

              @@ -614,8 +614,8 @@
              -Option
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDefaultPath.html b/Get-DbaDefaultPath.html index 63d2df54..bcbb56c0 100644 --- a/Get-DbaDefaultPath.html +++ b/Get-DbaDefaultPath.html @@ -510,7 +510,7 @@
              Example: 2

              Returns the default file paths for "sql2014","sql2016" and "sqlcluster\sharepoint"

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -539,8 +539,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -569,8 +569,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDependency.html b/Get-DbaDependency.html index 4babe4e1..ac88ca82 100644 --- a/Get-DbaDependency.html +++ b/Get-DbaDependency.html @@ -487,10 +487,10 @@

              Get-DbaDependency

              Synopsis

              Finds object dependencies and their relevant creation scripts.

              Description

              -

              This function recursively finds all objects that depends on the input. +

              This function recursively finds all objects that depends on the input.
              It will then retrieve rich information from them, including their creation scripts and the order in which it should be applied.

              By using the 'Parents' switch, the function will instead retrieve all items that the input depends on (including their creation scripts).

              -

              For more details on dependency, see: +

              For more details on dependency, see:
              https://technet.microsoft.com/en-us/library/ms345449(v=sql.105).aspx

              Syntax

              Get-DbaDependency
              @@ -540,7 +540,7 @@ 
              -InputObject
              -AllowSystemObjects
              -

              Normally, system objects are ignored by this function as dependencies. +

              Normally, system objects are ignored by this function as dependencies.
              This switch overrides that behavior.

              @@ -597,7 +597,7 @@
              -Parents
              -IncludeSelf
              -

              Includes the object whose dependencies are retrieves itself. +

              Includes the object whose dependencies are retrieves itself.
              Useful when exporting an entire logic structure in order to recreate it in another database.

              @@ -626,8 +626,8 @@
              -IncludeSelf
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDeprecatedFeature.html b/Get-DbaDeprecatedFeature.html index 7c9c31a1..5714591e 100644 --- a/Get-DbaDeprecatedFeature.html +++ b/Get-DbaDeprecatedFeature.html @@ -509,7 +509,7 @@
              Example: 2

              Check deprecated features on server sql2008.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance

              +

              The target SQL Server instance

              @@ -538,8 +538,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -568,8 +568,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDiskSpace.html b/Get-DbaDiskSpace.html index 7ae814ec..b1abdcc8 100644 --- a/Get-DbaDiskSpace.html +++ b/Get-DbaDiskSpace.html @@ -584,7 +584,7 @@
              -Credential
              -Unit
              -

              This parameter has been deprecated and will be removed in 1.0.0 +

              This parameter has been deprecated and will be removed in 1.0.0
              All properties previously generated through this command are present at the same time, but hidden by default.

              @@ -617,8 +617,8 @@
              -Unit
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -675,7 +675,7 @@
              -ExcludeDrive
              -CheckFragmentation
              -

              If this switch is enabled, fragmentation of all file systems will be checked. +

              If this switch is enabled, fragmentation of all file systems will be checked.
              This will increase the runtime of the function by seconds or even minutes per volume.

              @@ -704,7 +704,7 @@
              -CheckFragmentation
              -Force
              -

              Enabling this switch will cause the command to include ALL drives. +

              Enabling this switch will cause the command to include ALL drives.
              By default, only local disks and removable disks are shown, and hidden volumes are excluded.

              @@ -733,8 +733,8 @@
              -Force
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaDump.html b/Get-DbaDump.html index 81734dde..66bf1a78 100644 --- a/Get-DbaDump.html +++ b/Get-DbaDump.html @@ -509,7 +509,7 @@
              Example: 2

              Shows the detailed information for memory dump(s) located on sql2016 instance. Logs into the SQL Server using the SQL login 'sqladmin'

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              @@ -538,8 +538,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -568,8 +568,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaEndpoint.html b/Get-DbaEndpoint.html index 10720833..234f4a1e 100644 --- a/Get-DbaEndpoint.html +++ b/Get-DbaEndpoint.html @@ -511,7 +511,7 @@
              Example: 2

              Returns all endpoints for the local and sql2016 SQL Server instances

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -540,8 +540,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -630,8 +630,8 @@
              -Type
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaErrorLog.html b/Get-DbaErrorLog.html index 0b9f8f32..3174767a 100644 --- a/Get-DbaErrorLog.html +++ b/Get-DbaErrorLog.html @@ -563,8 +563,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -593,8 +593,8 @@
              -SqlCredential
              -LogNumber
              -

              An Int32 value that specifies the index number of the error log required. -Error logs are listed 0 through 99, where 0 is the current error log and 99 is potential oldest log file. +

              An Int32 value that specifies the index number of the error log required.
              +Error logs are listed 0 through 99, where 0 is the current error log and 99 is potential oldest log file.
              SQL Server errorlog rollover defaults to 6, but can be increased to 99. https://docs.microsoft.com/en-us/sql/database-engine/configure-windows/scm-services-configure-sql-server-error-logs

              @@ -735,8 +735,8 @@
              -Before
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaErrorLogConfig.html b/Get-DbaErrorLogConfig.html index e65c1da3..1e1a44ce 100644 --- a/Get-DbaErrorLogConfig.html +++ b/Get-DbaErrorLogConfig.html @@ -506,7 +506,7 @@
              Example: 1

              Returns error log configuration for server2017 and server2014

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances

              +

              The target SQL Server instance or instances

              @@ -535,8 +535,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -565,8 +565,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaEstimatedCompletionTime.html b/Get-DbaEstimatedCompletionTime.html index 17e936e5..23268392 100644 --- a/Get-DbaEstimatedCompletionTime.html +++ b/Get-DbaEstimatedCompletionTime.html @@ -489,18 +489,18 @@

              Synopsis

              Description

              Gets execution and estimated completion time information for queries

              Percent complete will show for the following commands

              -

              ALTER INDEX REORGANIZE -AUTO_SHRINK option with ALTER DATABASE -BACKUP DATABASE -DBCC CHECKDB -DBCC CHECKFILEGROUP -DBCC CHECKTABLE -DBCC INDEXDEFRAG -DBCC SHRINKDATABASE -DBCC SHRINKFILE -RECOVERY -RESTORE DATABASE -ROLLBACK +

              ALTER INDEX REORGANIZE
              +AUTO_SHRINK option with ALTER DATABASE
              +BACKUP DATABASE
              +DBCC CHECKDB
              +DBCC CHECKFILEGROUP
              +DBCC CHECKTABLE
              +DBCC INDEXDEFRAG
              +DBCC SHRINKDATABASE
              +DBCC SHRINKFILE
              +RECOVERY
              +RESTORE DATABASE
              +ROLLBACK
              TDE ENCRYPTION

              For additional information, check out https://blogs.sentryone.com/loriedwards/patience-dm-exec-requests/ and https://docs.microsoft.com/en-us/sql/relational-databases/system-dynamic-management-views/sys-dm-exec-requests-transact-sql

              The command will only return queries that provide estimated completion time, all other running queries will be filtered out.

              @@ -535,7 +535,7 @@
              Example: 4

              Gets estimated completion times for queries performed against the Northwind, pubs, and Adventureworks2014 databases

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -564,8 +564,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              SqlLogin to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              SqlLogin to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance..

              @@ -650,8 +650,8 @@
              -ExcludeDatabase
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaExecutionPlan.html b/Get-DbaExecutionPlan.html index 81830732..5c647f69 100644 --- a/Get-DbaExecutionPlan.html +++ b/Get-DbaExecutionPlan.html @@ -488,8 +488,8 @@

              Synopsis

              Gets execution plans and metadata

              Description

              Gets execution plans and metadata. Can pipe to Export-DbaExecutionPlan

              -

              Thanks to following for the queries: -https://www.simple-talk.com/sql/t-sql-programming/dmvs-for-query-plan-metadata/ +

              Thanks to following for the queries:
              +https://www.simple-talk.com/sql/t-sql-programming/dmvs-for-query-plan-metadata/
              http://www.scarydba.com/2017/02/13/export-plans-cache-sqlplan-file/

              Syntax

              Get-DbaExecutionPlan
              @@ -531,7 +531,7 @@ 
              Example: 5

              Gets super detailed information for execution plans on sqlserver2014a and sql2016

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -560,8 +560,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -758,8 +758,8 @@
              -Force
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaExtendedProperty.html b/Get-DbaExtendedProperty.html index 6166199c..4ddeb868 100644 --- a/Get-DbaExtendedProperty.html +++ b/Get-DbaExtendedProperty.html @@ -490,33 +490,33 @@

              Description

              Gets extended properties

              This command works out of the box with databases but you can add or get extended properties from any object. Just pipe it in it'll grab the properties and print them out.

              You can get extended properties on all these different types of objects:

              -

              Aggregate -Assembly -Column -Constraint -Contract -Database -Event Notification -Filegroup -Function -Index -Logical File Name -Message Type -Parameter -Partition Function -Partition Scheme -Procedure -Queue -Remote Service Binding -Route -Rule -Schema -Service -Synonym -Table -Trigger -Type -View +

              Aggregate
              +Assembly
              +Column
              +Constraint
              +Contract
              +Database
              +Event Notification
              +Filegroup
              +Function
              +Index
              +Logical File Name
              +Message Type
              +Parameter
              +Partition Function
              +Partition Scheme
              +Procedure
              +Queue
              +Remote Service Binding
              +Route
              +Rule
              +Schema
              +Service
              +Synonym
              +Table
              +Trigger
              +Type
              +View
              Xml Schema Collection

              Syntax

              Get-DbaExtendedProperty
              @@ -582,8 +582,8 @@ 
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -696,8 +696,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaExtendedProtection.html b/Get-DbaExtendedProtection.html index 9d1344e7..c9a3c520 100644 --- a/Get-DbaExtendedProtection.html +++ b/Get-DbaExtendedProtection.html @@ -569,8 +569,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaExternalProcess.html b/Get-DbaExternalProcess.html index 11ae16c1..6c45ae86 100644 --- a/Get-DbaExternalProcess.html +++ b/Get-DbaExternalProcess.html @@ -507,7 +507,7 @@
              Example: 1

              Gets OS processes created by SQL Server on SERVER01 and SERVER02

              Required Parameters

              -ComputerName
              -

              The target SQL Server host computer

              +

              The target SQL Server host computer

              @@ -564,8 +564,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaFeature.html b/Get-DbaFeature.html index eb313700..e6e9a295 100644 --- a/Get-DbaFeature.html +++ b/Get-DbaFeature.html @@ -488,15 +488,15 @@

              Synopsis

              Runs the SQL Server feature discovery report (setup.exe /Action=RunDiscovery)

              Description

              Runs the SQL Server feature discovery report (setup.exe /Action=RunDiscovery)

              -

              Inspired by Dave Mason's (@BeginTry) post at +

              Inspired by Dave Mason's (@BeginTry) post at
              https://itsalljustelectrons.blogspot.be/2018/04/SQL-Server-Discovery-Report.html

              Assumptions:

                -
              1. The sub-folder "Microsoft SQL Server" exists in [System.Environment]::GetFolderPath("ProgramFiles"), -even if SQL was installed to a non-default path. This has been +
              2. The sub-folder "Microsoft SQL Server" exists in [System.Environment]::GetFolderPath("ProgramFiles"),
                +even if SQL was installed to a non-default path. This has been
                verified on SQL 2008R2 and SQL 2012. Further verification may be needed.
              3. -
              4. The discovery report displays installed components for the version of SQL -Server associated with setup.exe, along with installed components of all +
              5. The discovery report displays installed components for the version of SQL
                +Server associated with setup.exe, along with installed components of all
                lesser versions of SQL Server that are installed.

              Syntax

              @@ -524,7 +524,7 @@
              Example: 3

              Gets all SQL Server features for all instances on sql2017 using the ad\sqladmin credential (which has access to the Windows Server).

              Optional Parameters

              -ComputerName
              -

              The target computer. If the target is not localhost, it must have PowerShell remoting enabled. +

              The target computer. If the target is not localhost, it must have PowerShell remoting enabled.
              Note that this is not the SqlInstance, but rather the ComputerName

              @@ -553,7 +553,7 @@
              -ComputerName
              -Credential
              -

              Allows you to login to servers using alternative credentials. To use: +

              Allows you to login to servers using alternative credentials. To use:
              $cred = Get-Credential, then pass $cred object to the -Credential parameter.

              @@ -582,8 +582,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaFile.html b/Get-DbaFile.html index 88c1ca1a..43bd8a1f 100644 --- a/Get-DbaFile.html +++ b/Get-DbaFile.html @@ -527,7 +527,7 @@
              Example: 5

              Finds files in E:\Dir1 ending with ".fsf" and ".mld" for both the servers sql2014 and sql2016.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -668,8 +668,8 @@
              -Depth
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaFilestream.html b/Get-DbaFilestream.html index e6389ed9..5272d0cd 100644 --- a/Get-DbaFilestream.html +++ b/Get-DbaFilestream.html @@ -538,8 +538,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -596,8 +596,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaFirewallRule.html b/Get-DbaFirewallRule.html index d67da21d..904e5fdc 100644 --- a/Get-DbaFirewallRule.html +++ b/Get-DbaFirewallRule.html @@ -487,13 +487,13 @@

              Get-DbaFirewallRule

              Synopsis

              Returns firewall rules for SQL Server instances from the target computer.

              Description

              -

              Returns firewall rules for SQL Server instances from the target computer. -As the group and the names of the firewall rules are fixed, this command +

              Returns firewall rules for SQL Server instances from the target computer.
              +As the group and the names of the firewall rules are fixed, this command
              only works for rules created with New-DbaFirewallRule.

              -

              This is basically a wrapper around Get-NetFirewallRule executed at the target computer. +

              This is basically a wrapper around Get-NetFirewallRule executed at the target computer.
              So this only works if Get-NetFirewallRule works on the target computer.

              The functionality is currently limited. Help to extend the functionality is welcome.

              -

              As long as you can read this note here, there may be breaking changes in future versions. +

              As long as you can read this note here, there may be breaking changes in future versions.
              So please review your scripts using this command after updating dbatools.

              Syntax

              Get-DbaFirewallRule
              @@ -529,7 +529,7 @@ 
              Example: 4
              The value "AllInstance" only uses the computer name part of SqlInstance.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -586,15 +586,15 @@
              -Credential
              -Type
              -

              Returns firewall rules for the given type(s). +

              Returns firewall rules for the given type(s).
              Valid values are:

              • Engine - for the SQL Server instance
              • Browser - for the SQL Server Browser
              • DAC - for the dedicated admin connection (DAC)
              • -
              • AllInstance - for all firewall rules on the target computer related to SQL Server -If this parameter is not used, the firewall rule for the SQL Server instance will be returned -and in case the instance is listening on a port other than 1433, +
              • AllInstance - for all firewall rules on the target computer related to SQL Server
                +If this parameter is not used, the firewall rule for the SQL Server instance will be returned
                +and in case the instance is listening on a port other than 1433,
                also the firewall rule for the SQL Server Browser will be returned.
              @@ -628,8 +628,8 @@
              -Type
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaForceNetworkEncryption.html b/Get-DbaForceNetworkEncryption.html index 7b07a555..9447f7ee 100644 --- a/Get-DbaForceNetworkEncryption.html +++ b/Get-DbaForceNetworkEncryption.html @@ -566,8 +566,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaHelpIndex.html b/Get-DbaHelpIndex.html index 2b8af97f..73286e6e 100644 --- a/Get-DbaHelpIndex.html +++ b/Get-DbaHelpIndex.html @@ -487,8 +487,8 @@

              Get-DbaHelpIndex

              Synopsis

              Returns size, row and configuration information for indexes in databases.

              Description

              -

              This function will return detailed information on indexes (and optionally statistics) for all indexes in a database, or a given index should one be passed along. -As this uses SQL Server DMVs to access the data it will only work in 2005 and up (sorry folks still running SQL Server 2000). +

              This function will return detailed information on indexes (and optionally statistics) for all indexes in a database, or a given index should one be passed along.
              +As this uses SQL Server DMVs to access the data it will only work in 2005 and up (sorry folks still running SQL Server 2000).
              For performance reasons certain statistics information will not be returned from SQL Server 2005 if an ObjectName is not provided.

              The data includes:

                @@ -594,8 +594,8 @@
                -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -708,7 +708,7 @@
              -InputObject
              -ObjectName
              -

              The name of a table for which you want to obtain the index information. If the two part naming convention for an object is not used it will use the default schema for the executing user. If not +

              The name of a table for which you want to obtain the index information. If the two part naming convention for an object is not used it will use the default schema for the executing user. If not
              passed it will return data on all indexes in a given database.

              @@ -849,8 +849,8 @@
              -IncludeFragmentation
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaHideInstance.html b/Get-DbaHideInstance.html index 926d2118..08e8554b 100644 --- a/Get-DbaHideInstance.html +++ b/Get-DbaHideInstance.html @@ -566,8 +566,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaInstalledPatch.html b/Get-DbaInstalledPatch.html index 9335ce1b..f9234697 100644 --- a/Get-DbaInstalledPatch.html +++ b/Get-DbaInstalledPatch.html @@ -571,8 +571,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaInstanceAudit.html b/Get-DbaInstanceAudit.html index a8e63249..dd89f18d 100644 --- a/Get-DbaInstanceAudit.html +++ b/Get-DbaInstanceAudit.html @@ -511,8 +511,8 @@
              Example: 2

              Returns all Security Audits for the local and sql2016 SQL Server instances

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function -to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
              +to be executed against multiple SQL Server instances.

              @@ -541,8 +541,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -627,8 +627,8 @@
              -ExcludeAudit
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaInstanceAuditSpecification.html b/Get-DbaInstanceAuditSpecification.html index 2dc13dca..4f6e6959 100644 --- a/Get-DbaInstanceAuditSpecification.html +++ b/Get-DbaInstanceAuditSpecification.html @@ -509,8 +509,8 @@
              Example: 2

              Returns all Security Audit Specifications for the local and sql2016 SQL Server instances

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function -to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
              +to be executed against multiple SQL Server instances.

              @@ -539,8 +539,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -569,8 +569,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaInstanceInstallDate.html b/Get-DbaInstanceInstallDate.html index 2f323a26..0eb0ed99 100644 --- a/Get-DbaInstanceInstallDate.html +++ b/Get-DbaInstanceInstallDate.html @@ -487,8 +487,8 @@

              Get-DbaInstanceInstallDate

              Synopsis

              Returns the install date of a SQL Instance and Windows Server.

              Description

              -

              This command returns: -SqlInstallDate +

              This command returns:
              +SqlInstallDate
              WindowsInstallDate (use -IncludeWindows)

              Syntax

              Get-DbaInstanceInstallDate
              @@ -525,7 +525,7 @@ 
              Example: 5

              Returns an object with SQL Instance install date as a string for every server listed in the Central Management Server on sql2014

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -554,8 +554,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -640,8 +640,8 @@
              -IncludeWindows
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaInstanceProperty.html b/Get-DbaInstanceProperty.html index 9eb56dd7..94718728 100644 --- a/Get-DbaInstanceProperty.html +++ b/Get-DbaInstanceProperty.html @@ -528,7 +528,7 @@
              Example: 6

              Connects using sqladmin credential and returns SQL Server instance properties from sql2

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              @@ -557,8 +557,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -643,8 +643,8 @@
              -ExcludeInstanceProperty
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaInstanceProtocol.html b/Get-DbaInstanceProtocol.html index 0842d530..b1fbf524 100644 --- a/Get-DbaInstanceProtocol.html +++ b/Get-DbaInstanceProtocol.html @@ -488,7 +488,7 @@

              Synopsis

              Gets the SQL Server related server protocols on a computer.

              Description

              Gets the SQL Server related server protocols on one or more computers.

              -

              Requires Local Admin rights on destination computer(s). +

              Requires Local Admin rights on destination computer(s).
              The server protocols can be enabled and disabled when retrieved via WSMan.

              Syntax

              Get-DbaInstanceProtocol
              @@ -576,8 +576,8 @@ 
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaInstanceTrigger.html b/Get-DbaInstanceTrigger.html index 7719f142..ff0d702a 100644 --- a/Get-DbaInstanceTrigger.html +++ b/Get-DbaInstanceTrigger.html @@ -505,7 +505,7 @@
              Example: 1

              Returns all server triggers on sql2017

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -534,8 +534,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              SqlLogin to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              SqlLogin to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance..

              @@ -564,8 +564,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaInstanceUserOption.html b/Get-DbaInstanceUserOption.html index 031c7060..c1d1ac40 100644 --- a/Get-DbaInstanceUserOption.html +++ b/Get-DbaInstanceUserOption.html @@ -513,8 +513,8 @@
              Example: 3

              Returns SQL Instance user options on sql2 and sql4

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. -This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances.
              +This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              @@ -543,8 +543,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -573,8 +573,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaIoLatency.html b/Get-DbaIoLatency.html index 7380d611..18f3a535 100644 --- a/Get-DbaIoLatency.html +++ b/Get-DbaIoLatency.html @@ -489,7 +489,7 @@

              Synopsis

              Description

              This command is based off of Paul Randal's post "Advanced SQL Server performance tuning"

              Returns both raw and aggregate information

              -

              Reference: https://www.sqlskills.com/blogs/paul/how-to-examine-io-subsystem-latencies-from-within-sql-server/ +

              Reference: https://www.sqlskills.com/blogs/paul/how-to-examine-io-subsystem-latencies-from-within-sql-server/
              https://www.sqlskills.com/blogs/paul/capturing-io-latencies-period-time/

              Syntax

              Get-DbaIoLatency
              @@ -521,7 +521,7 @@ 
              Example: 4

              Connects using sqladmin credential and returns IO subsystem latency statistics from sql2008

              Required Parameters

              -SqlInstance
              -

              The SQL Server instance. Server version must be SQL Server version 2008 or higher.

              +

              The SQL Server instance. Server version must be SQL Server version 2008 or higher.

              @@ -550,8 +550,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -580,8 +580,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaKbUpdate.html b/Get-DbaKbUpdate.html index 11e9550c..f3e937db 100644 --- a/Get-DbaKbUpdate.html +++ b/Get-DbaKbUpdate.html @@ -525,7 +525,7 @@
              Example: 5

              Downloads Japanese version of KB4057119.

              Required Parameters

              -Name
              -

              The KB name or number. For example, KB4057119 or 4057119.

              +

              The KB name or number. For example, KB4057119 or 4057119.

              @@ -582,8 +582,8 @@
              -Simple
              -Language
              -

              Cumulative Updates come in one file for all languages, but Service Packs have a file for every language. -If you want to get only a specific language, use this parameter. +

              Cumulative Updates come in one file for all languages, but Service Packs have a file for every language.
              +If you want to get only a specific language, use this parameter.
              You you can press tab for auto-complete or use the two letter code that is used for Accept-Language HTTP header, e. g. "en" for English or "de" for German.

              @@ -612,8 +612,8 @@
              -Language
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaLastBackup.html b/Get-DbaLastBackup.html index 260f9f61..4c1e0690 100644 --- a/Get-DbaLastBackup.html +++ b/Get-DbaLastBackup.html @@ -527,7 +527,7 @@
              Example: 5

              Filters for the databases that had a copy_only full backup done as the last backup.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -556,8 +556,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -642,7 +642,7 @@
              -ExcludeDatabase
              -EnableException
              -

              If this switch is enabled exceptions will be thrown to the caller, which will need to perform its own exception processing. Otherwise, the function will try to catch the exception, interpret it and +

              If this switch is enabled exceptions will be thrown to the caller, which will need to perform its own exception processing. Otherwise, the function will try to catch the exception, interpret it and
              provide a friendly error message.

              diff --git a/Get-DbaLastGoodCheckDb.html b/Get-DbaLastGoodCheckDb.html index b23c8b87..47e01bb8 100644 --- a/Get-DbaLastGoodCheckDb.html +++ b/Get-DbaLastGoodCheckDb.html @@ -562,8 +562,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -676,8 +676,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaLatchStatistic.html b/Get-DbaLatchStatistic.html index 14ddfc1f..78bfae2f 100644 --- a/Get-DbaLatchStatistic.html +++ b/Get-DbaLatchStatistic.html @@ -488,14 +488,14 @@

              Synopsis

              Displays latch statistics from sys.dm_os_latch_stats

              Description

              This command is based off of Paul Randal's post "Advanced SQL Server performance tuning"

              -

              Returns: -LatchClass -WaitSeconds -WaitCount -Percentage -AverageWaitSeconds +

              Returns:
              +LatchClass
              +WaitSeconds
              +WaitCount
              +Percentage
              +AverageWaitSeconds
              URL

              -

              Reference: https://www.sqlskills.com/blogs/paul/advanced-performance-troubleshooting-waits-latches-spinlocks/ +

              Reference: https://www.sqlskills.com/blogs/paul/advanced-performance-troubleshooting-waits-latches-spinlocks/
              https://www.sqlskills.com/blogs/paul/most-common-latch-classes-and-what-they-mean/

              Syntax

              Get-DbaLatchStatistic
              @@ -538,7 +538,7 @@ 
              Example: 6

              Displays the output then loads the associated sqlskills website for each result. Opens one tab per unique URL.

              Required Parameters

              -SqlInstance
              -

              The SQL Server instance. Server version must be SQL Server version 2005 or higher.

              +

              The SQL Server instance. Server version must be SQL Server version 2005 or higher.

              @@ -567,8 +567,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -625,8 +625,8 @@
              -Threshold
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaLinkedServer.html b/Get-DbaLinkedServer.html index d9496a54..c0eb81d7 100644 --- a/Get-DbaLinkedServer.html +++ b/Get-DbaLinkedServer.html @@ -511,8 +511,8 @@
              Example: 2

              Returns all linked servers for a group of servers from SQL Server Central Management Server (CMS). Send output to GridView.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function -to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
              +to be executed against multiple SQL Server instances.

              @@ -541,8 +541,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -627,8 +627,8 @@
              -ExcludeLinkedServer
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaLinkedServerLogin.html b/Get-DbaLinkedServerLogin.html index 05dacd65..9031b7d6 100644 --- a/Get-DbaLinkedServerLogin.html +++ b/Get-DbaLinkedServerLogin.html @@ -523,7 +523,7 @@
              Example: 4

              Gets the linked server login "login1" from the linked server "linkedServer1" on sql01 using a pipeline with the instance passed in.

              Optional Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
              to be executed against multiple SQL Server instances.

              @@ -552,8 +552,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -694,8 +694,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaLocaleSetting.html b/Get-DbaLocaleSetting.html index 9ca0bef8..6ec155eb 100644 --- a/Get-DbaLocaleSetting.html +++ b/Get-DbaLocaleSetting.html @@ -570,8 +570,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaLogin.html b/Get-DbaLogin.html index 070fe254..1a5d6a17 100644 --- a/Get-DbaLogin.html +++ b/Get-DbaLogin.html @@ -485,7 +485,7 @@

              Get-DbaLogin


              Want to see the Bill Of Health for this command? Check out Get-DbaLogin.

              Synopsis

              -

              Function to get an SMO login object of the logins for a given SQL Server instance. Takes a server object from the pipeline. +

              Function to get an SMO login object of the logins for a given SQL Server instance. Takes a server object from the pipeline.
              SQL Azure DB is not supported.

              Description

              The Get-DbaLogin function returns an SMO Login object for the logins passed, if there are no users passed it will return all logins.

              @@ -577,7 +577,7 @@
              Example: 16

              Using Get-DbaLogin on the pipeline to get all logins that must change password on servers sql2016 and sql2014.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.You must have sysadmin access and server version must be SQL Server version 2000 or higher.

              +

              The target SQL Server instance or instances.You must have sysadmin access and server version must be SQL Server version 2000 or higher.

              @@ -606,8 +606,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -948,8 +948,8 @@
              -Detailed
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaMaintenanceSolutionLog.html b/Get-DbaMaintenanceSolutionLog.html index 749d7cb7..3abad9ae 100644 --- a/Get-DbaMaintenanceSolutionLog.html +++ b/Get-DbaMaintenanceSolutionLog.html @@ -530,7 +530,7 @@
              Example: 6

              Gets the outcome of the IndexOptimize job on sqlserver2014a, the other options are not yet available! sorry

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -559,8 +559,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -677,8 +677,8 @@
              -Path
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaManagementObject.html b/Get-DbaManagementObject.html index a695c757..b0f904ba 100644 --- a/Get-DbaManagementObject.html +++ b/Get-DbaManagementObject.html @@ -487,7 +487,7 @@

              Get-DbaManagementObject

              Synopsis

              Gets SQL Management Object versions installed on the machine.

              Description

              -

              The Get-DbaManagementObject returns an object with the Version and the +

              The Get-DbaManagementObject returns an object with the Version and the
              Add-Type Load Template for each version on the server.

              Syntax

              Get-DbaManagementObject
              @@ -567,7 +567,7 @@ 
              -Credential
              -VersionNumber
              -

              This is the specific version number you are looking for. The function will look +

              This is the specific version number you are looking for. The function will look
              for that version only.

              @@ -596,8 +596,8 @@
              -VersionNumber
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaMaxMemory.html b/Get-DbaMaxMemory.html index e8e62a85..0f3cbcbb 100644 --- a/Get-DbaMaxMemory.html +++ b/Get-DbaMaxMemory.html @@ -514,7 +514,7 @@
              Example: 3

              Scans localhost for instances using the browser service, traverses all instances and displays memory settings in a formatted table.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -543,8 +543,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -573,8 +573,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaMemoryCondition.html b/Get-DbaMemoryCondition.html index 7f94a1a7..891ddba8 100644 --- a/Get-DbaMemoryCondition.html +++ b/Get-DbaMemoryCondition.html @@ -488,7 +488,7 @@

              Synopsis

              Determine the memory conditions from SQL Server ring buffers.

              Description

              The information from SQL Server ring buffers can be used to determine the memory conditions on the server when paging occurs.

              -

              This command is based on a query provided by Microsoft support. +

              This command is based on a query provided by Microsoft support.
              Reference KB article: https://support.microsoft.com/en-us/help/918483/how-to-reduce-paging-of-buffer-pool-memory-in-the-64-bit-version-of-sq

              Syntax

              Get-DbaMemoryCondition
              @@ -511,7 +511,7 @@ 
              Example: 2

              Returns the memory conditions for a group of servers from SQL Server Central Management Server (CMS). Send output to GridView.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -540,8 +540,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance..

              @@ -570,8 +570,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaMemoryUsage.html b/Get-DbaMemoryUsage.html index 37c3336a..94734570 100644 --- a/Get-DbaMemoryUsage.html +++ b/Get-DbaMemoryUsage.html @@ -487,7 +487,7 @@

              Get-DbaMemoryUsage

              Synopsis

              Get amount of memory in use by all SQL Server components and instances

              Description

              -

              Retrieves the amount of memory per performance counter. Default output includes columns Server, counter instance, counter, number of pages, memory in KB, memory in MB +

              Retrieves the amount of memory per performance counter. Default output includes columns Server, counter instance, counter, number of pages, memory in KB, memory in MB
              SSAS and SSIS are included.

              SSRS does not have memory counters, only memory shrinks and memory pressure state.

              This function requires local admin role on the targeted computers.

              @@ -549,8 +549,8 @@
              -ComputerName
              -Credential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -579,8 +579,8 @@
              -Credential
              -MemoryCounterRegex
              -

              Regular expression that is applied to the paths of the counters returned for the counter list set 'sql:Memory Manager*' to display relevant Memory Manager counters. -Default: '(Total Server Memory |Target Server Memory |Connection Memory |Lock Memory |SQL Cache Memory |Optimizer Memory |Granted Workspace Memory |Cursor memory usage|Maximum Workspace)' +

              Regular expression that is applied to the paths of the counters returned for the counter list set 'sql:Memory Manager*' to display relevant Memory Manager counters.
              +Default: '(Total Server Memory |Target Server Memory |Connection Memory |Lock Memory |SQL Cache Memory |Optimizer Memory |Granted Workspace Memory |Cursor memory usage|Maximum Workspace)'
              The default works for English language systems and has to be adapted for other languages.

              @@ -649,8 +649,8 @@
              -MemoryCounterRegex
              -PlanCounterRegex
              -

              Regular expression that is applied to the paths of the counters returned for the counter list set 'sql:Plan Cache*' to display relevant Plan Cache counters. -Default: '(cache pages|procedure plan|ad hoc sql plan|prepared SQL Plan)' +

              Regular expression that is applied to the paths of the counters returned for the counter list set 'sql:Plan Cache*' to display relevant Plan Cache counters.
              +Default: '(cache pages|procedure plan|ad hoc sql plan|prepared SQL Plan)'
              The default works for English language systems and has to be adapted for other languages.

              @@ -694,8 +694,8 @@
              -PlanCounterRegex
              -BufferCounterRegex
              -

              Regular expression that is applied to the paths of the counters returned for the counter list set 'Buffer Manager' to display relevant Buffer Manager counters. -Default: '(Free pages|Reserved pages|Stolen pages|Total pages|Database pages|target pages|extension .* pages)' +

              Regular expression that is applied to the paths of the counters returned for the counter list set 'Buffer Manager' to display relevant Buffer Manager counters.
              +Default: '(Free pages|Reserved pages|Stolen pages|Total pages|Database pages|target pages|extension .* pages)'
              The default works for English language systems and has to be adapted for other languages.

              @@ -754,8 +754,8 @@
              -BufferCounterRegex
              -SSASCounterRegex
              -

              Regular expression that is applied to the paths of the counters returned for the counter list set 'MSAS*:Memory' to display relevant SSAS counters. -Default: '(\memory )' +

              Regular expression that is applied to the paths of the counters returned for the counter list set 'MSAS*:Memory' to display relevant SSAS counters.
              +Default: '(\memory )'
              The default works for English language systems and has to be adapted for other languages.

              @@ -784,8 +784,8 @@
              -SSASCounterRegex
              -SSISCounterRegex
              -

              Regular expression that is applied to the paths of the counters returned for the counter list set 'SSIS' to display relevant SSIS counters. -Default: '(memory)' +

              Regular expression that is applied to the paths of the counters returned for the counter list set 'SSIS' to display relevant SSIS counters.
              +Default: '(memory)'
              The default works for English language systems and has to be adapted for other languages.

              @@ -814,8 +814,8 @@
              -SSISCounterRegex
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaModule.html b/Get-DbaModule.html index 380c4950..7a5c9ef3 100644 --- a/Get-DbaModule.html +++ b/Get-DbaModule.html @@ -488,7 +488,7 @@

              Get-DbaModule

              Synopsis

              Displays all objects in sys.sys_modules after specified modification date. Works on SQL Server 2008 and above.

              Description

              -

              Quickly find modules (Stored Procs, Functions, Views, Constraints, Rules, Triggers, etc) that have been modified in a database, or across all databases. +

              Quickly find modules (Stored Procs, Functions, Views, Constraints, Rules, Triggers, etc) that have been modified in a database, or across all databases.
              Results will exclude the module definition, but can be queried explicitly.

              Syntax

              Get-DbaModule
              @@ -566,8 +566,8 @@ 
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -796,8 +796,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaMsdtc.html b/Get-DbaMsdtc.html index f9395f80..2d61e5a1 100644 --- a/Get-DbaMsdtc.html +++ b/Get-DbaMsdtc.html @@ -575,8 +575,8 @@
              -Credential
              -EnableException
              -

              By default in most of our commands, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This command, however, gifts you with "sea of red" exceptions, by default, because it is useful for advanced scripting. +

              By default in most of our commands, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This command, however, gifts you with "sea of red" exceptions, by default, because it is useful for advanced scripting.
              Using this switch turns our "nice by default" feature on which makes errors into pretty warnings.

              diff --git a/Get-DbaNetworkActivity.html b/Get-DbaNetworkActivity.html index e346dfa8..e9904f17 100644 --- a/Get-DbaNetworkActivity.html +++ b/Get-DbaNetworkActivity.html @@ -487,7 +487,7 @@

              Get-DbaNetworkActivity

              Synopsis

              Gets the Current traffic on every Network Interface on a computer.

              Description

              -

              Gets the Current traffic on every Network Interface on a computer. +

              Gets the Current traffic on every Network Interface on a computer.
              See https://msdn.microsoft.com/en-us/library/aa394293(v=vs.85).aspx

              Requires Local Admin rights on destination computer(s).

              Syntax

              @@ -571,8 +571,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaNetworkCertificate.html b/Get-DbaNetworkCertificate.html index e31ab8f5..37f9b067 100644 --- a/Get-DbaNetworkCertificate.html +++ b/Get-DbaNetworkCertificate.html @@ -565,8 +565,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaNetworkConfiguration.html b/Get-DbaNetworkConfiguration.html index 67d3c29f..a4ab0fef 100644 --- a/Get-DbaNetworkConfiguration.html +++ b/Get-DbaNetworkConfiguration.html @@ -489,7 +489,7 @@

              Synopsis

              Description

              Returns a PowerShell object with the network configuration of a SQL Server instance as shown in SQL Server Configuration Manager.

              As we get information from SQL WMI and also from the registry, we use PS Remoting to run the core code on the target machine.

              -

              For a detailed explanation of the different properties see the documentation at: +

              For a detailed explanation of the different properties see the documentation at:
              https://docs.microsoft.com/en-us/sql/tools/configuration-manager/sql-server-network-configuration

              Syntax

              Get-DbaNetworkConfiguration
              @@ -513,7 +513,7 @@ 
              Example: 2

              Returns information about the server protocols for the sqlexpress on winserver and the default instance on sql2016.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -570,17 +570,17 @@
              -Credential
              -OutputType
              -

              Defines what information is returned from the command. -Options include: Full, ServerProtocols, TcpIpProperties, TcpIpAddresses or Certificate. Full by default. -Full returns one object per SqlInstance with information about the server protocols -and nested objects with information about TCP/IP properties and TCP/IP addresses. -It also outputs advanced properties including information about the used certificate. -ServerProtocols returns one object per SqlInstance with information about the server protocols only. -TcpIpProperties returns one object per SqlInstance with information about the TCP/IP protocol properties only. -TcpIpAddresses returns one object per SqlInstance and IP address. -If the instance listens on all IP addresses (TcpIpProperties.ListenAll), only the information about the IPAll address is returned. -Otherwise only information about the individual IP addresses is returned. -For more details see: https://docs.microsoft.com/en-us/sql/database-engine/configure-windows/configure-a-server-to-listen-on-a-specific-tcp-port +

              Defines what information is returned from the command.
              +Options include: Full, ServerProtocols, TcpIpProperties, TcpIpAddresses or Certificate. Full by default.
              +Full returns one object per SqlInstance with information about the server protocols
              +and nested objects with information about TCP/IP properties and TCP/IP addresses.
              +It also outputs advanced properties including information about the used certificate.
              +ServerProtocols returns one object per SqlInstance with information about the server protocols only.
              +TcpIpProperties returns one object per SqlInstance with information about the TCP/IP protocol properties only.
              +TcpIpAddresses returns one object per SqlInstance and IP address.
              +If the instance listens on all IP addresses (TcpIpProperties.ListenAll), only the information about the IPAll address is returned.
              +Otherwise only information about the individual IP addresses is returned.
              +For more details see: https://docs.microsoft.com/en-us/sql/database-engine/configure-windows/configure-a-server-to-listen-on-a-specific-tcp-port
              Certificate returns one object per SqlInstance with information about the configured network certificate and whether encryption is enforced.

              @@ -613,8 +613,8 @@
              -OutputType
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaOleDbProvider.html b/Get-DbaOleDbProvider.html index a7cfacef..5f96ee17 100644 --- a/Get-DbaOleDbProvider.html +++ b/Get-DbaOleDbProvider.html @@ -510,7 +510,7 @@
              Example: 2

              Returns the SSISOLEDB provider on SqlBox1\Instance2

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -539,8 +539,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -597,8 +597,8 @@
              -Provider
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaOpenTransaction.html b/Get-DbaOpenTransaction.html index c328ddb2..861fd0b2 100644 --- a/Get-DbaOpenTransaction.html +++ b/Get-DbaOpenTransaction.html @@ -487,7 +487,7 @@

              Get-DbaOpenTransaction

              Synopsis

              Displays all open transactions.

              Description

              -

              This command is based on open transaction script published by Paul Randal. +

              This command is based on open transaction script published by Paul Randal.
              Reference: https://www.sqlskills.com/blogs/paul/script-open-transactions-with-text-and-plans/

              Syntax

              Get-DbaOpenTransaction
              @@ -510,7 +510,7 @@ 
              Example: 2

              Logs into sqlserver2014a using the login "sqladmin"

              Required Parameters

              -SqlInstance
              -

              The SQL Server instance

              +

              The SQL Server instance

              @@ -539,8 +539,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -569,8 +569,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaOperatingSystem.html b/Get-DbaOperatingSystem.html index ff748e20..af6feb27 100644 --- a/Get-DbaOperatingSystem.html +++ b/Get-DbaOperatingSystem.html @@ -574,8 +574,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaPageFileSetting.html b/Get-DbaPageFileSetting.html index 7cea6679..7de4873a 100644 --- a/Get-DbaPageFileSetting.html +++ b/Get-DbaPageFileSetting.html @@ -511,7 +511,7 @@
              Example: 2

              Returns a custom object displaying ComputerName, AutoPageFile, FileName, Status, LastModified, LastAccessed, AllocatedBaseSize, InitialSize, MaximumSize, PeakUsage, CurrentUsage for ServerA

              Optional Parameters

              -ComputerName
              -

              The target SQL Server instance or instances. +

              The target SQL Server instance or instances.
              This can be the name of a computer, a SMO object, an IP address, an AD Computer object, a connection string or a SQL Instance.

              @@ -568,8 +568,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaPbmCategory.html b/Get-DbaPbmCategory.html index 6e8a1c6c..43e458fa 100644 --- a/Get-DbaPbmCategory.html +++ b/Get-DbaPbmCategory.html @@ -540,8 +540,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -654,8 +654,8 @@
              -ExcludeSystemObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaPbmCategorySubscription.html b/Get-DbaPbmCategorySubscription.html index 47712a1f..0d237bfa 100644 --- a/Get-DbaPbmCategorySubscription.html +++ b/Get-DbaPbmCategorySubscription.html @@ -538,8 +538,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -596,8 +596,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaPbmCondition.html b/Get-DbaPbmCondition.html index ac985b55..b9f0c586 100644 --- a/Get-DbaPbmCondition.html +++ b/Get-DbaPbmCondition.html @@ -540,8 +540,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -654,8 +654,8 @@
              -IncludeSystemObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaPbmObjectSet.html b/Get-DbaPbmObjectSet.html index 1a71429f..c8665b43 100644 --- a/Get-DbaPbmObjectSet.html +++ b/Get-DbaPbmObjectSet.html @@ -540,8 +540,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -654,8 +654,8 @@
              -IncludeSystemObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaPbmPolicy.html b/Get-DbaPbmPolicy.html index 48a611c8..f80e5ad7 100644 --- a/Get-DbaPbmPolicy.html +++ b/Get-DbaPbmPolicy.html @@ -545,8 +545,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -687,8 +687,8 @@
              -IncludeSystemObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaPbmStore.html b/Get-DbaPbmStore.html index 49d63f72..c3c6f4a4 100644 --- a/Get-DbaPbmStore.html +++ b/Get-DbaPbmStore.html @@ -509,7 +509,7 @@
              Example: 2

              Uses a credential $cred to connect and return the policy store from the sql2016 instance

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              @@ -538,8 +538,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -568,8 +568,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaPermission.html b/Get-DbaPermission.html index 569ef649..7ef38aba 100644 --- a/Get-DbaPermission.html +++ b/Get-DbaPermission.html @@ -488,12 +488,12 @@

              Synopsis

              Get a list of Server and Database level permissions

              Description

              Retrieves a list of permissions

              -

              Permissions link principals to securables. -Principals exist on Windows, Instance and Database level. -Securables exist on Instance and Database level. -A permission state can be GRANT, DENY or REVOKE. -The permission type can be SELECT, CONNECT, EXECUTE and more. -The CONTROL permission is also returned for dbo users, db_owners, and schema owners. +

              Permissions link principals to securables.
              +Principals exist on Windows, Instance and Database level.
              +Securables exist on Instance and Database level.
              +A permission state can be GRANT, DENY or REVOKE.
              +The permission type can be SELECT, CONNECT, EXECUTE and more.
              +The CONTROL permission is also returned for dbo users, db_owners, and schema owners.
              To see server-level implicit permissions via fixed roles run the following command: Get-DbaServerRole -SqlInstance serverName | Select-Object *

              See https://msdn.microsoft.com/en-us/library/ms191291.aspx for more information

              Syntax

              @@ -530,7 +530,7 @@
              Example: 4

              Returns a custom object with permissions for the master database.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. Defaults to localhost.

              +

              The target SQL Server instance or instances. Defaults to localhost.

              @@ -559,8 +559,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -701,7 +701,7 @@
              -ExcludeSystemObjects
              -EnableException
              -

              If this switch is enabled exceptions will be thrown to the caller, which will need to perform its own exception processing. Otherwise, the function will try to catch the exception, interpret it and +

              If this switch is enabled exceptions will be thrown to the caller, which will need to perform its own exception processing. Otherwise, the function will try to catch the exception, interpret it and
              provide a friendly error message.

              diff --git a/Get-DbaPfAvailableCounter.html b/Get-DbaPfAvailableCounter.html index 18bde91d..8e26cfca 100644 --- a/Get-DbaPfAvailableCounter.html +++ b/Get-DbaPfAvailableCounter.html @@ -488,7 +488,7 @@

              Synopsis

              Gathers list of all available counters on local or remote machines.

              Description

              Gathers list of all available counters on local or remote machines. Note, if you pass a credential object, it will be included in the output for easy reuse in your next piped command.

              -

              Thanks to Daniel Streefkerk for this super fast way of counters +

              Thanks to Daniel Streefkerk for this super fast way of counters
              https://daniel.streefkerkonline.com/2016/02/18/use-powershell-to-list-all-windows-performance-counters-and-their-numeric-ids

              Syntax

              Get-DbaPfAvailableCounter
              @@ -552,7 +552,7 @@ 
              -ComputerName
              -Credential
              -

              Allows you to login to servers using alternative credentials. To use: +

              Allows you to login to servers using alternative credentials. To use:
              $scred = Get-Credential, then pass $scred object to the -Credential parameter.

              @@ -609,8 +609,8 @@
              -Pattern
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaPfDataCollector.html b/Get-DbaPfDataCollector.html index 3c75eb94..f8ef852b 100644 --- a/Get-DbaPfDataCollector.html +++ b/Get-DbaPfDataCollector.html @@ -548,7 +548,7 @@
              -ComputerName
              -Credential
              -

              Allows you to login to servers using alternative credentials. To use: +

              Allows you to login to servers using alternative credentials. To use:
              $scred = Get-Credential, then pass $scred object to the -Credential parameter.

              @@ -661,8 +661,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaPfDataCollectorCounter.html b/Get-DbaPfDataCollectorCounter.html index 2f49d52f..aab8ad5b 100644 --- a/Get-DbaPfDataCollectorCounter.html +++ b/Get-DbaPfDataCollectorCounter.html @@ -553,7 +553,7 @@
              -ComputerName
              -Credential
              -

              Allows you to login to servers using alternative credentials. To use: +

              Allows you to login to servers using alternative credentials. To use:
              $scred = Get-Credential, then pass $scred object to the -Credential parameter.

              @@ -694,8 +694,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaPfDataCollectorCounterSample.html b/Get-DbaPfDataCollectorCounterSample.html index 6cefd5ee..e4c704b1 100644 --- a/Get-DbaPfDataCollectorCounterSample.html +++ b/Get-DbaPfDataCollectorCounterSample.html @@ -561,7 +561,7 @@
              -ComputerName
              -Credential
              -

              Allows you to login to servers using alternative credentials. To use: +

              Allows you to login to servers using alternative credentials. To use:
              $scred = Get-Credential, then pass $scred object to the -Credential parameter.

              @@ -674,7 +674,7 @@
              -Counter
              -Continuous
              -

              If this switch is enabled, samples will be retrieved continuously until you press CTRL+C. By default, this command gets only one counter sample. You can use the SampleInterval parameter to set the +

              If this switch is enabled, samples will be retrieved continuously until you press CTRL+C. By default, this command gets only one counter sample. You can use the SampleInterval parameter to set the
              interval for continuous sampling.

              @@ -731,7 +731,7 @@
              -ListSet
              -MaxSamples
              -

              Specifies the number of samples to get from each counter. The default is 1 sample. To get samples continuously (no maximum sample size), use the Continuous parameter. +

              Specifies the number of samples to get from each counter. The default is 1 sample. To get samples continuously (no maximum sample size), use the Continuous parameter.
              To collect a very large data set, consider running a Get-DbaPfDataCollectorCounterSample command as a Windows PowerShell background job.

              @@ -816,8 +816,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaPfDataCollectorSet.html b/Get-DbaPfDataCollectorSet.html index 87a55953..b7eca92e 100644 --- a/Get-DbaPfDataCollectorSet.html +++ b/Get-DbaPfDataCollectorSet.html @@ -546,7 +546,7 @@
              -ComputerName
              -Credential
              -

              Allows you to login to servers using alternative credentials. To use: +

              Allows you to login to servers using alternative credentials. To use:
              $scred = Get-Credential, then pass $scred object to the -Credential parameter.

              @@ -603,8 +603,8 @@
              -CollectorSet
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaPfDataCollectorSetTemplate.html b/Get-DbaPfDataCollectorSetTemplate.html index cc10081d..5627fb47 100644 --- a/Get-DbaPfDataCollectorSetTemplate.html +++ b/Get-DbaPfDataCollectorSetTemplate.html @@ -598,8 +598,8 @@
              -Template
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaPlanCache.html b/Get-DbaPlanCache.html index 2b2625c8..37f43ee7 100644 --- a/Get-DbaPlanCache.html +++ b/Get-DbaPlanCache.html @@ -511,7 +511,7 @@
              Example: 2

              Returns the single use plan cache usage information for SQL Server instance 2017 using login 'sqladmin'

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -540,8 +540,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -570,8 +570,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaPowerPlan.html b/Get-DbaPowerPlan.html index e09729b0..e9ae021e 100644 --- a/Get-DbaPowerPlan.html +++ b/Get-DbaPowerPlan.html @@ -487,7 +487,7 @@

              Get-DbaPowerPlan

              Synopsis

              Gets the Power Plan settings for compliance with best practices, which recommend High Performance for SQL Server.

              Description

              -

              Gets the Power Plan settings on a computer against best practices recommendations. +

              Gets the Power Plan settings on a computer against best practices recommendations.
              To display all available Power Plans on a computer, use the parameter List.

              Syntax

              Get-DbaPowerPlan
              @@ -515,7 +515,7 @@ 
              Example: 3

              Gets all available Power Plans on sql2017

              Required Parameters

              -ComputerName
              -

              The server(s) to check Power Plan settings on.

              +

              The server(s) to check Power Plan settings on.

              @@ -600,8 +600,8 @@
              -List
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaPrivilege.html b/Get-DbaPrivilege.html index bf16c576..98e54e32 100644 --- a/Get-DbaPrivilege.html +++ b/Get-DbaPrivilege.html @@ -570,8 +570,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaProcess.html b/Get-DbaProcess.html index 30996140..69eb9f12 100644 --- a/Get-DbaProcess.html +++ b/Get-DbaProcess.html @@ -525,7 +525,7 @@
              Example: 4

              Shows information about the processes that were initiated by hosts (computers/clients) workstationx and server 1000.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -554,8 +554,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -612,7 +612,7 @@
              -Spid
              -ExcludeSpid
              -

              Specifies one ore more process IDs to exclude from display. Options for this parameter are auto-populated from the server. +

              Specifies one ore more process IDs to exclude from display. Options for this parameter are auto-populated from the server.
              This is the last filter to run, so even if a Spid matches another filter, it will be excluded by this filter.

              @@ -781,8 +781,8 @@
              -ExcludeSystemSpids
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaProductKey.html b/Get-DbaProductKey.html index a1a76c66..5661edb1 100644 --- a/Get-DbaProductKey.html +++ b/Get-DbaProductKey.html @@ -506,7 +506,7 @@
              Example: 1

              Gets SQL Server versions, editions and product keys for all instances within each server or workstation.

              Required Parameters

              -ComputerName
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -535,7 +535,7 @@
              -ComputerName

              Optional Parameters

              -SqlCredential
              -

              This command logs into the SQL instance to gather additional information. +

              This command logs into the SQL instance to gather additional information.
              Use this parameter to connect to the discovered SQL instances using alternative credentials. Windows and SQL Authentication supported. Accepts credential objects (Get-Credential)

              @@ -592,8 +592,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaQueryExecutionTime.html b/Get-DbaQueryExecutionTime.html index bf1b042e..c6da2564 100644 --- a/Get-DbaQueryExecutionTime.html +++ b/Get-DbaQueryExecutionTime.html @@ -519,7 +519,7 @@
              Example: 3
              1000ms or higher.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -548,8 +548,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -746,8 +746,8 @@
              -ExcludeSystem
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaRandomizedDataset.html b/Get-DbaRandomizedDataset.html index cc0a70b4..2919aa46 100644 --- a/Get-DbaRandomizedDataset.html +++ b/Get-DbaRandomizedDataset.html @@ -487,8 +487,8 @@

              Get-DbaRandomizedDataset

              Synopsis

              This function will generate a random data set based on a template

              Description

              -

              Generates a random value based on a template. -The templates standardized in the templates folder and can be used to generate a data set. +

              Generates a random value based on a template.
              +The templates standardized in the templates folder and can be used to generate a data set.
              There is also an option to point to a specific template

              Syntax

              Get-DbaRandomizedDataset
              @@ -526,7 +526,7 @@ 
              Example: 5

              Pipe the templates from Get-DbaRandomizedDatasetTemplate to Get-DbaRandomizedDataset and generate the data set

              Optional Parameters

              -Template
              -

              The name of the template to use. +

              The name of the template to use.
              It will go through the default templates to see if it's present

              @@ -667,8 +667,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaRandomizedDatasetTemplate.html b/Get-DbaRandomizedDatasetTemplate.html index f98f42a7..af6e4b10 100644 --- a/Get-DbaRandomizedDatasetTemplate.html +++ b/Get-DbaRandomizedDatasetTemplate.html @@ -514,7 +514,7 @@
              Example: 3

              Get the templates from a custom directory

              Optional Parameters

              -Template
              -

              The name of the template to use. +

              The name of the template to use.
              It will go through the default templates to see if it's present

              @@ -599,8 +599,8 @@
              -ExcludeDefault
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaRandomizedType.html b/Get-DbaRandomizedType.html index 8b77fe21..eebd006d 100644 --- a/Get-DbaRandomizedType.html +++ b/Get-DbaRandomizedType.html @@ -602,8 +602,8 @@
              -Pattern
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaRandomizedValue.html b/Get-DbaRandomizedValue.html index 5320d68e..4a817b79 100644 --- a/Get-DbaRandomizedValue.html +++ b/Get-DbaRandomizedValue.html @@ -487,7 +487,7 @@

              Get-DbaRandomizedValue

              Synopsis

              This function will generate a random value for a specific data type or bogus type and subtype

              Description

              -

              Generates a random value based on the assigned sql data type or bogus type with sub type. +

              Generates a random value based on the assigned sql data type or bogus type with sub type.
              It supports a wide range of sql data types and an entire dictionary of various random values.

              Syntax

              Get-DbaRandomizedValue
              @@ -532,8 +532,8 @@ 
              Example: 5

              Generates a random phonenumber like "(123) 4567890"

              Optional Parameters

              -DataType
              -

              The target SQL Server instance or instances. -Supported data types are bigint, bit, bool, char, date, datetime, datetime2, decimal, int, float, guid, money, numeric, nchar, ntext, nvarchar, real, smalldatetime, smallint, text, time, tinyint, +

              The target SQL Server instance or instances.
              +Supported data types are bigint, bit, bool, char, date, datetime, datetime2, decimal, int, float, guid, money, numeric, nchar, ntext, nvarchar, real, smalldatetime, smallint, text, time, tinyint,
              uniqueidentifier, userdefineddatatype, varchar

              @@ -562,7 +562,7 @@
              -DataType
              -RandomizerType
              -

              Bogus type to use. +

              Bogus type to use.
              Supported types are Address, Commerce, Company, Database, Date, Finance, Hacker, Hashids, Image, Internet, Lorem, Name, Person, Phone, Random, Rant, System

              @@ -815,7 +815,7 @@
              -Separator
              -Value
              -

              This is the value that needs to be used for several possible transformations. +

              This is the value that needs to be used for several possible transformations.
              One example is the subtype "Shuffling" where the value will be shuffled.

              @@ -872,8 +872,8 @@
              -Locale
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaRegServer.html b/Get-DbaRegServer.html index 440827aa..2fa8989f 100644 --- a/Get-DbaRegServer.html +++ b/Get-DbaRegServer.html @@ -563,8 +563,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -817,8 +817,8 @@
              -IncludeLocal
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaRegServerGroup.html b/Get-DbaRegServerGroup.html index ac30d2ae..4e6405f9 100644 --- a/Get-DbaRegServerGroup.html +++ b/Get-DbaRegServerGroup.html @@ -548,8 +548,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -662,8 +662,8 @@
              -Id
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaRegServerStore.html b/Get-DbaRegServerStore.html index 8ee1f39b..23e930de 100644 --- a/Get-DbaRegServerStore.html +++ b/Get-DbaRegServerStore.html @@ -509,7 +509,7 @@
              Example: 2

              Returns a SQL Server Registered Server Store Object from sqlserver2014a by logging in with the sqladmin login

              Optional Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
              to be executed against multiple SQL Server instances.

              @@ -538,8 +538,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -568,8 +568,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaRegistryRoot.html b/Get-DbaRegistryRoot.html index db2a6be9..aa2790c1 100644 --- a/Get-DbaRegistryRoot.html +++ b/Get-DbaRegistryRoot.html @@ -565,8 +565,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaReplArticle.html b/Get-DbaReplArticle.html index 6d10cb31..e2f7435b 100644 --- a/Get-DbaReplArticle.html +++ b/Get-DbaReplArticle.html @@ -554,8 +554,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -696,8 +696,8 @@
              -Name
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaReplArticleColumn.html b/Get-DbaReplArticleColumn.html index b53c916e..d37bba7b 100644 --- a/Get-DbaReplArticleColumn.html +++ b/Get-DbaReplArticleColumn.html @@ -553,8 +553,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -695,8 +695,8 @@
              -Column
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaReplDistributor.html b/Get-DbaReplDistributor.html index 549cb28f..e3ea66da 100644 --- a/Get-DbaReplDistributor.html +++ b/Get-DbaReplDistributor.html @@ -510,7 +510,7 @@
              Example: 2

              Pipe a SQL Server instance to Get-DbaReplDistributor to retrieve distributor information.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -539,8 +539,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -569,8 +569,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaReplPublication.html b/Get-DbaReplPublication.html index 395f796a..93745270 100644 --- a/Get-DbaReplPublication.html +++ b/Get-DbaReplPublication.html @@ -525,7 +525,7 @@
              Example: 5

              Returns all publications on server mssql1 using the pipeline.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -554,8 +554,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -672,8 +672,8 @@
              -Type
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaReplPublisher.html b/Get-DbaReplPublisher.html index 6ab6c838..4ab55f18 100644 --- a/Get-DbaReplPublisher.html +++ b/Get-DbaReplPublisher.html @@ -509,7 +509,7 @@
              Example: 2

              Pipes a SQL Server object to get publisher information for the mssql1 instance.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -538,8 +538,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -568,8 +568,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaReplServer.html b/Get-DbaReplServer.html index eb62b79e..6b506f99 100644 --- a/Get-DbaReplServer.html +++ b/Get-DbaReplServer.html @@ -489,7 +489,7 @@

              Synopsis

              Gets a replication server object

              Description

              Gets a replication server object.

              -

              Note: The ReplicationDatabases property gets the databases enabled for replication in the connected instance of Microsoft SQL Server/. +

              Note: The ReplicationDatabases property gets the databases enabled for replication in the connected instance of Microsoft SQL Server/.
              Not necessarily the databases that are actually replicated.

              Syntax

              Get-DbaReplServer
              @@ -512,7 +512,7 @@ 
              Example: 2

              Gets the replication server object for sql2016 using SQL authentication

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances

              +

              The target SQL Server instance or instances

              @@ -541,8 +541,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -571,8 +571,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaReplSubscription.html b/Get-DbaReplSubscription.html index 75ad22ae..d7dcaab0 100644 --- a/Get-DbaReplSubscription.html +++ b/Get-DbaReplSubscription.html @@ -530,7 +530,7 @@
              Example: 6

              Return all subscriptions for all publications on server mssql1 where the subscription database is TestDB.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -559,8 +559,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -733,8 +733,8 @@
              -Type
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaResourceGovernor.html b/Get-DbaResourceGovernor.html index 835e2cf1..547ebadd 100644 --- a/Get-DbaResourceGovernor.html +++ b/Get-DbaResourceGovernor.html @@ -509,7 +509,7 @@
              Example: 2

              Gets the resource governor object on Sql1 and Sql2/sqlexpress instances

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances

              +

              The target SQL Server instance or instances

              @@ -538,8 +538,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -568,8 +568,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaRgClassifierFunction.html b/Get-DbaRgClassifierFunction.html index 62c400ec..692fae8f 100644 --- a/Get-DbaRgClassifierFunction.html +++ b/Get-DbaRgClassifierFunction.html @@ -538,8 +538,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -596,8 +596,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaRgResourcePool.html b/Get-DbaRgResourcePool.html index 69f9211d..8fe5089c 100644 --- a/Get-DbaRgResourcePool.html +++ b/Get-DbaRgResourcePool.html @@ -543,8 +543,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -633,8 +633,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaRgWorkloadGroup.html b/Get-DbaRgWorkloadGroup.html index 07f2178e..205fbaf6 100644 --- a/Get-DbaRgWorkloadGroup.html +++ b/Get-DbaRgWorkloadGroup.html @@ -538,8 +538,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -596,8 +596,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaRunningJob.html b/Get-DbaRunningJob.html index e9fd0cf1..f6a91873 100644 --- a/Get-DbaRunningJob.html +++ b/Get-DbaRunningJob.html @@ -542,8 +542,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -600,8 +600,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaSchemaChangeHistory.html b/Get-DbaSchemaChangeHistory.html index 9b3dd2b7..6017711a 100644 --- a/Get-DbaSchemaChangeHistory.html +++ b/Get-DbaSchemaChangeHistory.html @@ -487,7 +487,7 @@

              Get-DbaSchemaChangeHistory

              Synopsis

              Gets DDL changes logged in the system trace.

              Description

              -

              Queries the default system trace for any DDL changes in the specified time frame +

              Queries the default system trace for any DDL changes in the specified time frame
              Only works with SQL 2005 and later, as the system trace didn't exist before then

              Syntax

              Get-DbaSchemaChangeHistory
              @@ -522,7 +522,7 @@ 
              Example: 4

              Returns all DDL changes made to the AccountsTable object in the Finance database on the SQL Server instance localhost in the last 7 days

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              @@ -551,8 +551,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -693,8 +693,8 @@
              -Object
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaServerRole.html b/Get-DbaServerRole.html index 5399000f..f2f0d584 100644 --- a/Get-DbaServerRole.html +++ b/Get-DbaServerRole.html @@ -512,7 +512,7 @@
              Example: 2

              Outputs the server-level role(s) that are not fixed roles on sql2017a instance.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. Server version must be SQL Server version 2005 or higher.

              +

              The target SQL Server instance or instances. Server version must be SQL Server version 2005 or higher.

              @@ -541,8 +541,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -655,7 +655,7 @@
              -ExcludeFixedRole
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because
              it basically disables advanced scripting. Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaServerRoleMember.html b/Get-DbaServerRoleMember.html index 66f65c00..c528264d 100644 --- a/Get-DbaServerRoleMember.html +++ b/Get-DbaServerRoleMember.html @@ -534,7 +534,7 @@
              Example: 7

              Returns all server-level role(s) for the MyFriendlyDeveloper login on localhost.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              @@ -563,8 +563,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -705,8 +705,8 @@
              -ExcludeFixedRole
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaService.html b/Get-DbaService.html index f964c051..9c720fd2 100644 --- a/Get-DbaService.html +++ b/Get-DbaService.html @@ -609,7 +609,7 @@
              -InstanceName
              -SqlInstance
              -

              Use a combination of computername and instancename to get the SQL Server related services for specific instances on specific computers. +

              Use a combination of computername and instancename to get the SQL Server related services for specific instances on specific computers.
              Parameters ComputerName and InstanceName will be ignored if SqlInstance is used.

              @@ -666,7 +666,7 @@
              -Credential
              -Type
              -

              Use -Type to collect only services of the desired SqlServiceType. +

              Use -Type to collect only services of the desired SqlServiceType.
              Can be one of the following: "Agent", "Browser", "Engine", "FullText", "SSAS", "SSIS", "SSRS", "PolyBase", "Launchpad"

              @@ -727,8 +727,8 @@
              -ServiceName
              -AdvancedProperties
              -

              Collect additional properties from the SqlServiceAdvancedProperty Namespace -This collects information about Version, Service Pack Level", SkuName, Clustered status and the Cluster Service Name +

              Collect additional properties from the SqlServiceAdvancedProperty Namespace
              +This collects information about Version, Service Pack Level", SkuName, Clustered status and the Cluster Service Name
              This adds additional overhead to the command.

              @@ -757,8 +757,8 @@
              -AdvancedProperties
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaSpConfigure.html b/Get-DbaSpConfigure.html index 08c8174e..9341b6e2 100644 --- a/Get-DbaSpConfigure.html +++ b/Get-DbaSpConfigure.html @@ -487,7 +487,7 @@

              Get-DbaSpConfigure

              Synopsis

              Returns all server level system configuration (sys.configuration/sp_configure) information

              Description

              -

              This function returns server level system configuration (sys.configuration/sp_configure) information. The information is gathered through SMO Configuration.Properties. +

              This function returns server level system configuration (sys.configuration/sp_configure) information. The information is gathered through SMO Configuration.Properties.
              The data includes the default value for each configuration, for quick identification of values that may have been changed.

              Syntax

              Get-DbaSpConfigure
              @@ -525,7 +525,7 @@ 
              Example: 5

              Returns system configuration information on sql2012 using SQL Server Authentication. Only MaxServerMemory is returned as RemoteAccess was also excluded.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input

              @@ -554,8 +554,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -640,8 +640,8 @@
              -ExcludeName
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaSpinLockStatistic.html b/Get-DbaSpinLockStatistic.html index 49897183..5373a458 100644 --- a/Get-DbaSpinLockStatistic.html +++ b/Get-DbaSpinLockStatistic.html @@ -488,12 +488,12 @@

              Synopsis

              Displays information from sys.dm_os_spinlock_stats. Works on SQL Server 2008 and above.

              Description

              This command is based off of Paul Randal's post "Advanced SQL Server performance tuning"

              -

              Returns: -SpinLockName -Collisions -Spins -SpinsPerCollision -SleepTime +

              Returns:
              +SpinLockName
              +Collisions
              +Spins
              +SpinsPerCollision
              +SleepTime
              Backoffs

              Reference: https://www.sqlskills.com/blogs/paul/advanced-performance-troubleshooting-waits-latches-spinlocks/

              Syntax

              @@ -526,7 +526,7 @@
              Example: 4

              Connects using sqladmin credential and returns SpinLock Statistics from sql2008

              Required Parameters

              -SqlInstance
              -

              The SQL Server instance. Server version must be SQL Server version 2008 or higher.

              +

              The SQL Server instance. Server version must be SQL Server version 2008 or higher.

              @@ -555,8 +555,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -585,8 +585,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaSpn.html b/Get-DbaSpn.html index 0f5a99a5..a4750634 100644 --- a/Get-DbaSpn.html +++ b/Get-DbaSpn.html @@ -487,7 +487,7 @@

              Get-DbaSpn

              Synopsis

              Returns a list of set service principal names for a given computer/AD account

              Description

              -

              Get a list of set SPNs. SPNs are set at the AD account level. You can either retrieve set SPNs for a computer, or any SPNs set for +

              Get a list of set SPNs. SPNs are set at the AD account level. You can either retrieve set SPNs for a computer, or any SPNs set for
              a given active directory account. You can query one, or both. You'll get a list of every SPN found for either search term.

              Syntax

              Get-DbaSpn
              @@ -599,8 +599,8 @@ 
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaSsisEnvironmentVariable.html b/Get-DbaSsisEnvironmentVariable.html index e887baaa..bd5b05a2 100644 --- a/Get-DbaSsisEnvironmentVariable.html +++ b/Get-DbaSsisEnvironmentVariable.html @@ -487,8 +487,8 @@

              Get-DbaSsisEnvironmentVariable

              Synopsis

              This command gets specified SSIS Environment and all its variables

              Description

              -

              This command gets all variables from specified environment from SSIS Catalog. All sensitive values are decrypted. -The function communicates directly with SSISDB database, "SQL Server Integration Services" service isn't queried there. +

              This command gets all variables from specified environment from SSIS Catalog. All sensitive values are decrypted.
              +The function communicates directly with SSISDB database, "SQL Server Integration Services" service isn't queried there.
              Each parameter (besides SqlInstance and SqlCredential) acts as the filter to only include or exclude particular element

              Syntax

              Get-DbaSsisEnvironmentVariable
              @@ -549,9 +549,9 @@ 
              Example: 10
              selects Name and Value properties for variables that names start with letter 'a' and outputs it as the GridView

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. -This can be a collection and receive pipeline input to allow the function -to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances.
              +This can be a collection and receive pipeline input to allow the function
              +to be executed against multiple SQL Server instances.

              @@ -580,8 +580,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -638,7 +638,7 @@
              -Environment
              -EnvironmentExclude
              -

              The SSIS Environments to exclude. Acts as a filter for environments, best used without 'Environment' parameter +

              The SSIS Environments to exclude. Acts as a filter for environments, best used without 'Environment' parameter
              to get variables for all environments but excluded ones

              @@ -695,7 +695,7 @@
              -Folder
              -FolderExclude
              -

              The Folders names to exclude. Acts as a filter for folders containing environments, best user without 'Folder' parameter +

              The Folders names to exclude. Acts as a filter for folders containing environments, best user without 'Folder' parameter
              to get variables for all folders but excluded ones

              @@ -724,8 +724,8 @@
              -FolderExclude
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaSsisExecutionHistory.html b/Get-DbaSsisExecutionHistory.html index fdbf81a1..017017c0 100644 --- a/Get-DbaSsisExecutionHistory.html +++ b/Get-DbaSsisExecutionHistory.html @@ -519,9 +519,9 @@
              Example: 3

              Shows what would happen if the command were executed and would return the SQL statement that would be executed per instance.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. -This can be a collection and receive pipeline input to allow the function -to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances.
              +This can be a collection and receive pipeline input to allow the function
              +to be executed against multiple SQL Server instances.

              @@ -550,8 +550,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -724,8 +724,8 @@
              -Environment
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaStartupParameter.html b/Get-DbaStartupParameter.html index d1a41939..f7aac0f5 100644 --- a/Get-DbaStartupParameter.html +++ b/Get-DbaStartupParameter.html @@ -513,7 +513,7 @@
              Example: 2

              Logs in to WMI using the ad\sqladmin credential and gathers simplified information about the SQL Server Startup Parameters.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -542,7 +542,7 @@
              -SqlInstance

              Optional Parameters

              -Credential
              -

              Allows you to login to servers using alternate Windows credentials. +

              Allows you to login to servers using alternate Windows credentials.
              $scred = Get-Credential, then pass $scred object to the -Credential parameter.

              @@ -599,7 +599,7 @@
              -Simple
              -EnableException
              -

              If this switch is enabled, exceptions will be thrown to the caller, which will need to perform its own exception processing. Otherwise, the function will try to catch the exception, interpret it and +

              If this switch is enabled, exceptions will be thrown to the caller, which will need to perform its own exception processing. Otherwise, the function will try to catch the exception, interpret it and
              provide a friendly error message.

              diff --git a/Get-DbaStartupProcedure.html b/Get-DbaStartupProcedure.html index 5bf9be86..6e516ea0 100644 --- a/Get-DbaStartupProcedure.html +++ b/Get-DbaStartupProcedure.html @@ -487,7 +487,7 @@

              Get-DbaStartupProcedure

              Synopsis

              Get-DbaStartupProcedure gets startup procedures (user defined procedures within master database) from a SQL Server.

              Description

              -

              By default, this command returns for each SQL Server instance passed in, the SMO StoredProcedure object for all procedures in the master database that are marked as a startup procedure. +

              By default, this command returns for each SQL Server instance passed in, the SMO StoredProcedure object for all procedures in the master database that are marked as a startup procedure.
              Can be filtered to check only specific procedures

              Syntax

              Get-DbaStartupProcedure
              @@ -515,7 +515,7 @@ 
              Example: 3

              Returns an object with all startup procedures for every server listed in the Central Management Server on sql2014

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -544,8 +544,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -602,8 +602,8 @@
              -StartupProcedure
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaSuspectPage.html b/Get-DbaSuspectPage.html index 02ca586f..1cf3dcff 100644 --- a/Get-DbaSuspectPage.html +++ b/Get-DbaSuspectPage.html @@ -510,7 +510,7 @@
              Example: 2

              Retrieve any records stored for Suspect Pages on the sql2016 SQL Server and the Test database only.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances

              +

              The target SQL Server instance or instances

              @@ -567,8 +567,8 @@
              -Database
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -597,8 +597,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaTcpPort.html b/Get-DbaTcpPort.html index fac47112..3886c1e6 100644 --- a/Get-DbaTcpPort.html +++ b/Get-DbaTcpPort.html @@ -523,7 +523,7 @@
              Example: 4

              Returns an object with server name, IPAddress (just ipv4), port and static ($true/$false) for every server listed in the Central Management Server on sql2014.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -552,7 +552,7 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Allows you to connect to servers using alternate Windows credentials +

              Allows you to connect to servers using alternate Windows credentials
              $scred = Get-Credential, then pass $scred object to the -SqlCredential parameter.

              @@ -665,8 +665,8 @@
              -ExcludeIpv6
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaTempdbUsage.html b/Get-DbaTempdbUsage.html index 62177bf0..1319e2fa 100644 --- a/Get-DbaTempdbUsage.html +++ b/Get-DbaTempdbUsage.html @@ -505,7 +505,7 @@
              Example: 1

              Gets tempdb usage for localhost\SQLDEV2K14

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -534,8 +534,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -564,8 +564,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaTopResourceUsage.html b/Get-DbaTopResourceUsage.html index d6f8899f..cce2d58a 100644 --- a/Get-DbaTopResourceUsage.html +++ b/Get-DbaTopResourceUsage.html @@ -528,7 +528,7 @@
              Example: 5

              Return all the columns plus the QueryPlan column

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -557,8 +557,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -703,8 +703,8 @@
              -Limit
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaTrace.html b/Get-DbaTrace.html index d3c1d8c1..34a556f5 100644 --- a/Get-DbaTrace.html +++ b/Get-DbaTrace.html @@ -511,7 +511,7 @@
              Example: 2

              Lists the default trace information on the sql2016 SQL Server.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances

              +

              The target SQL Server instance or instances

              @@ -540,8 +540,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -626,8 +626,8 @@
              -Default
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaTraceFlag.html b/Get-DbaTraceFlag.html index 9873764c..68963038 100644 --- a/Get-DbaTraceFlag.html +++ b/Get-DbaTraceFlag.html @@ -514,7 +514,7 @@
              Example: 3

              Returns Trace Flag status for TF 4199 and 3205 for the local SQL Server instance if they are enabled.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              +

              The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

              @@ -543,8 +543,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -601,8 +601,8 @@
              -TraceFlag
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaUptime.html b/Get-DbaUptime.html index 6e166c5d..d2704d73 100644 --- a/Get-DbaUptime.html +++ b/Get-DbaUptime.html @@ -487,8 +487,8 @@

              Get-DbaUptime

              Synopsis

              Returns the uptime of the SQL Server instance, and if required the hosting windows server

              Description

              -

              By default, this command returns for each SQL Server instance passed in: -SQL Instance last startup time, Uptime as a PS TimeSpan, Uptime as a formatted string +

              By default, this command returns for each SQL Server instance passed in:
              +SQL Instance last startup time, Uptime as a PS TimeSpan, Uptime as a formatted string
              Hosting Windows server last startup time, Uptime as a PS TimeSpan, Uptime as a formatted string

              Syntax

              Get-DbaUptime
              @@ -519,7 +519,7 @@ 
              Example: 3
              listed in the Central Management Server on sql2014

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -548,8 +548,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -606,8 +606,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaUserPermission.html b/Get-DbaUserPermission.html index 564e0500..412bd085 100644 --- a/Get-DbaUserPermission.html +++ b/Get-DbaUserPermission.html @@ -522,7 +522,7 @@
              Example: 3
              including public and guest grants, and sys schema objects.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -551,8 +551,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -749,8 +749,8 @@
              -ExcludeSecurables
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaWaitResource.html b/Get-DbaWaitResource.html index 5d8313f6..44ed0a5b 100644 --- a/Get-DbaWaitResource.html +++ b/Get-DbaWaitResource.html @@ -516,7 +516,7 @@
              Example: 3

              Will return an object containing; database name, schema name and index name which is being waited on, and in addition the contents of the locked row at the time the command is run.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -544,7 +544,7 @@
              -SqlInstance
              -WaitResource
              -

              The wait resource value as supplied in sys.dm_exec_requests

              +

              The wait resource value as supplied in sys.dm_exec_requests

              @@ -573,8 +573,8 @@
              -WaitResource

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -631,7 +631,7 @@
              -Row
              -EnableException
              -

              Replaces user friendly yellow warnings with bloody red exceptions of doom! +

              Replaces user friendly yellow warnings with bloody red exceptions of doom!
              Use this if you want the function to throw terminating errors you want to catch.

              diff --git a/Get-DbaWaitStatistic.html b/Get-DbaWaitStatistic.html index 77119c2d..901fb2db 100644 --- a/Get-DbaWaitStatistic.html +++ b/Get-DbaWaitStatistic.html @@ -488,17 +488,17 @@

              Synopsis

              Displays wait statistics

              Description

              This command is based off of Paul Randal's post "Wait statistics, or please tell me where it hurts"

              -

              Returns: -WaitType -Category -WaitSeconds -ResourceSeconds -SignalSeconds -WaitCount -Percentage -AverageWaitSeconds -AverageResourceSeconds -AverageSignalSeconds +

              Returns:
              +WaitType
              +Category
              +WaitSeconds
              +ResourceSeconds
              +SignalSeconds
              +WaitCount
              +Percentage
              +AverageWaitSeconds
              +AverageResourceSeconds
              +AverageSignalSeconds
              URL

              Reference: https://www.sqlskills.com/blogs/paul/wait-statistics-or-please-tell-me-where-it-hurts/

              Syntax

              @@ -537,7 +537,7 @@
              Example: 5

              Displays the output then loads the associated sqlskills website for each result. Opens one tab per unique URL.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. Server version must be SQL Server version 2005 or higher.

              +

              The target SQL Server instance or instances. Server version must be SQL Server version 2005 or higher.

              @@ -566,8 +566,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -652,8 +652,8 @@
              -IncludeIgnorable
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaWaitingTask.html b/Get-DbaWaitingTask.html index b5cb7cf7..07e2daea 100644 --- a/Get-DbaWaitingTask.html +++ b/Get-DbaWaitingTask.html @@ -487,7 +487,7 @@

              Get-DbaWaitingTask

              Synopsis

              Displays waiting task.

              Description

              -

              This command is based on waiting task T-SQL script published by Paul Randal. +

              This command is based on waiting task T-SQL script published by Paul Randal.
              Reference: https://www.sqlskills.com/blogs/paul/updated-sys-dm_os_waiting_tasks-script-2/

              Syntax

              Get-DbaWaitingTask
              @@ -512,7 +512,7 @@ 
              Example: 2

              Returns the waiting task for all sessions (user and system) on sqlserver2014a

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. Server version must be SQL Server version XXXX or higher.

              +

              The target SQL Server instance or instances. Server version must be SQL Server version XXXX or higher.

              @@ -541,8 +541,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -627,8 +627,8 @@
              -IncludeSystemSpid
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaWindowsLog.html b/Get-DbaWindowsLog.html index d3b5863b..fe74d503 100644 --- a/Get-DbaWindowsLog.html +++ b/Get-DbaWindowsLog.html @@ -539,7 +539,7 @@
              -SqlInstance
              -Start
              -

              Default: 1970 +

              Default: 1970
              Retrieve all events starting from this timestamp.

              @@ -568,7 +568,7 @@
              -Start
              -End
              -

              Default: Now +

              Default: Now
              Retrieve all events that happened before this timestamp

              @@ -625,8 +625,8 @@
              -Credential
              -MaxThreads
              -

              Default: Unlimited -The maximum number of parallel threads used on the local computer. +

              Default: Unlimited
              +The maximum number of parallel threads used on the local computer.
              Given that those will mostly be waiting for the remote system, there is usually no need to limit this.

              @@ -655,9 +655,9 @@
              -MaxThreads
              -MaxRemoteThreads
              -

              Default: 2 -The maximum number of parallel threads that are executed on the target sql server. -These processes will cause considerable CPU load, so a low limit is advisable in most scenarios. +

              Default: 2
              +The maximum number of parallel threads that are executed on the target sql server.
              +These processes will cause considerable CPU load, so a low limit is advisable in most scenarios.
              Any value lower than 1 disables the limit

              @@ -686,8 +686,8 @@
              -MaxRemoteThreads
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaWsfcAvailableDisk.html b/Get-DbaWsfcAvailableDisk.html index 86a23d42..65a7eeb6 100644 --- a/Get-DbaWsfcAvailableDisk.html +++ b/Get-DbaWsfcAvailableDisk.html @@ -562,8 +562,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaWsfcCluster.html b/Get-DbaWsfcCluster.html index 6305e5fe..846c932e 100644 --- a/Get-DbaWsfcCluster.html +++ b/Get-DbaWsfcCluster.html @@ -566,8 +566,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaWsfcDisk.html b/Get-DbaWsfcDisk.html index b2ce2ea1..b3a274b8 100644 --- a/Get-DbaWsfcDisk.html +++ b/Get-DbaWsfcDisk.html @@ -562,8 +562,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaWsfcNetwork.html b/Get-DbaWsfcNetwork.html index 65d218c6..1ef7a4dc 100644 --- a/Get-DbaWsfcNetwork.html +++ b/Get-DbaWsfcNetwork.html @@ -562,8 +562,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaWsfcNetworkInterface.html b/Get-DbaWsfcNetworkInterface.html index a0665780..442722a2 100644 --- a/Get-DbaWsfcNetworkInterface.html +++ b/Get-DbaWsfcNetworkInterface.html @@ -566,8 +566,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaWsfcNode.html b/Get-DbaWsfcNode.html index 2f77ad3c..2d7f638a 100644 --- a/Get-DbaWsfcNode.html +++ b/Get-DbaWsfcNode.html @@ -566,8 +566,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaWsfcResource.html b/Get-DbaWsfcResource.html index 355aefbe..51c3516e 100644 --- a/Get-DbaWsfcResource.html +++ b/Get-DbaWsfcResource.html @@ -566,8 +566,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaWsfcResourceGroup.html b/Get-DbaWsfcResourceGroup.html index cf23f265..b7b957f0 100644 --- a/Get-DbaWsfcResourceGroup.html +++ b/Get-DbaWsfcResourceGroup.html @@ -595,8 +595,8 @@
              -Name
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaWsfcResourceType.html b/Get-DbaWsfcResourceType.html index 885955e3..020e6a2d 100644 --- a/Get-DbaWsfcResourceType.html +++ b/Get-DbaWsfcResourceType.html @@ -562,8 +562,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaWsfcRole.html b/Get-DbaWsfcRole.html index a67c3cd5..a799f15b 100644 --- a/Get-DbaWsfcRole.html +++ b/Get-DbaWsfcRole.html @@ -566,8 +566,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaWsfcSharedVolume.html b/Get-DbaWsfcSharedVolume.html index fe3e5b2d..d4f6c4ff 100644 --- a/Get-DbaWsfcSharedVolume.html +++ b/Get-DbaWsfcSharedVolume.html @@ -562,8 +562,8 @@
              -Credential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaXEObject.html b/Get-DbaXEObject.html index d7abc48d..acb4c865 100644 --- a/Get-DbaXEObject.html +++ b/Get-DbaXEObject.html @@ -510,7 +510,7 @@
              Example: 2

              Lists all the XE Objects of type Action and Event on the sql2017 SQL Server.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

              +

              The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

              @@ -539,8 +539,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -569,14 +569,14 @@
              -SqlCredential
              -Type
              -

              Used to specify the type. Valid types include: -Action -Event -Map -Message -PredicateComparator -PredicateSource -Target +

              Used to specify the type. Valid types include:
              +Action
              +Event
              +Map
              +Message
              +PredicateComparator
              +PredicateSource
              +Target
              Type

              @@ -609,7 +609,7 @@
              -Type
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because
              it basically disables advanced scripting. Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaXESession.html b/Get-DbaXESession.html index 63f5743d..766ace0f 100644 --- a/Get-DbaXESession.html +++ b/Get-DbaXESession.html @@ -514,7 +514,7 @@
              Example: 3

              Returns a custom object with ComputerName, SqlInstance, Session, StartTime, Status and other properties, from multiple SQL instances.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

              +

              The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

              @@ -543,8 +543,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -601,8 +601,8 @@
              -Session
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaXESessionTarget.html b/Get-DbaXESessionTarget.html index b288427a..f54ddef4 100644 --- a/Get-DbaXESessionTarget.html +++ b/Get-DbaXESessionTarget.html @@ -506,7 +506,8 @@

              Syntax

              Get-DbaXESessionTarget [-SqlCredential <PSCredential>] [-Session <String[]>] - [-Target <String[]>] -InputObject <Session[]> + [-Target <String[]>] + -InputObject <Session[]> [-EnableException] [<CommonParameters>] @@ -528,7 +529,7 @@
              Example: 3

              Return only the package0.event_file target for the system_health session on sql2016.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

              +

              The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

              @@ -556,7 +557,7 @@
              -SqlInstance
              -InputObject
              -

              Specifies an XE session returned by Get-DbaXESession to search.

              +

              Specifies an XE session returned by Get-DbaXESession to search.

              @@ -585,8 +586,8 @@
              -InputObject

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -671,8 +672,8 @@
              -Target
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaXESessionTargetFile.html b/Get-DbaXESessionTargetFile.html index 81cf112b..ea1209cc 100644 --- a/Get-DbaXESessionTargetFile.html +++ b/Get-DbaXESessionTargetFile.html @@ -507,7 +507,8 @@

              Syntax

              Get-DbaXESessionTargetFile [-SqlCredential <PSCredential>] [-Session <String[]>] - [-Target <String[]>] -InputObject <Target[]> + [-Target <String[]>] + -InputObject <Target[]> [-EnableException] [<CommonParameters>] @@ -525,7 +526,7 @@
              Example: 2

              Returns the Target Files for the system_health session on sql2016.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server

              +

              The target SQL Server

              @@ -553,7 +554,7 @@
              -SqlInstance
              -InputObject
              -

              Allows results from piping in Get-DbaXESessionTarget.

              +

              Allows results from piping in Get-DbaXESessionTarget.

              @@ -582,8 +583,8 @@
              -InputObject

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -668,8 +669,8 @@
              -Target
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaXESessionTemplate.html b/Get-DbaXESessionTemplate.html index fcc507d2..fc264c4c 100644 --- a/Get-DbaXESessionTemplate.html +++ b/Get-DbaXESessionTemplate.html @@ -488,14 +488,14 @@

              Synopsis

              Parses Extended Event XML templates. Defaults to parsing templates in the dbatools template repository (/bin/XEtemplates/).

              Description

              Parses Extended Event XML templates. Defaults to parsing templates in the dbatools template repository (/bin/XEtemplates/).

              -

              The default repository contains templates from: -Microsoft's Templates that come with SSMS -Jes Borland's "Everyday Extended Events" presentation and GitHub repository (https://github.com/grrlgeek/extended-events) -Christian Grafe (@ChrGraefe) XE Repo: https://github.com/chrgraefe/sqlscripts/blob/master/XE-Events/ +

              The default repository contains templates from:
              +Microsoft's Templates that come with SSMS
              +Jes Borland's "Everyday Extended Events" presentation and GitHub repository (https://github.com/grrlgeek/extended-events)
              +Christian Grafe (@ChrGraefe) XE Repo: https://github.com/chrgraefe/sqlscripts/blob/master/XE-Events/
              Erin Stellato's Blog: https://www.sqlskills.com/blogs/erin/

              -

              Some profile templates converted using: -sp_SQLskills_ConvertTraceToExtendedEvents.sql -Jonathan M. Kehayias, SQLskills.com +

              Some profile templates converted using:
              +sp_SQLskills_ConvertTraceToExtendedEvents.sql
              +Jonathan M. Kehayias, SQLskills.com
              http://sqlskills.com/blogs/jonathan

              Syntax

              Get-DbaXESessionTemplate
              @@ -615,8 +615,8 @@ 
              -Template
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaXESmartTarget.html b/Get-DbaXESmartTarget.html index 6ee331e4..6fd339d7 100644 --- a/Get-DbaXESmartTarget.html +++ b/Get-DbaXESmartTarget.html @@ -503,8 +503,8 @@
              Example: 1

              Gets an XESmartTarget PowerShell Job created by Start-DbaXESmartTarget.

              Optional Parameters

              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbaXEStore.html b/Get-DbaXEStore.html index 46190b69..a8a5e0db 100644 --- a/Get-DbaXEStore.html +++ b/Get-DbaXEStore.html @@ -505,7 +505,7 @@
              Example: 1

              Returns an XEvent Store.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

              +

              The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

              @@ -534,8 +534,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -564,8 +564,8 @@
              -SqlCredential
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbatoolsChangeLog.html b/Get-DbatoolsChangeLog.html index 66149f37..65cfafdf 100644 --- a/Get-DbatoolsChangeLog.html +++ b/Get-DbatoolsChangeLog.html @@ -536,8 +536,8 @@
              -Local
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Get-DbatoolsConfig.html b/Get-DbatoolsConfig.html index cb76260d..5b562903 100644 --- a/Get-DbatoolsConfig.html +++ b/Get-DbatoolsConfig.html @@ -487,7 +487,7 @@

              Get-DbatoolsConfig

              Synopsis

              Retrieves configuration elements by name.

              Description

              -

              Retrieves configuration elements by name. +

              Retrieves configuration elements by name.
              Can be used to search the existing configuration list.

              Syntax

              Get-DbatoolsConfig
              @@ -515,7 +515,7 @@ 
              Example: 2

              Retrieve all configuration elements from all modules, even hidden ones.

              Optional Parameters

              -FullName
              -

              Default: "*" +

              Default: "*"
              Search for configurations using the full name

              @@ -544,8 +544,8 @@
              -FullName
              -Name
              -

              Default: "*" -The name of the configuration element(s) to retrieve. +

              Default: "*"
              +The name of the configuration element(s) to retrieve.
              May be any string, supports wildcards.

              @@ -574,7 +574,7 @@
              -Name
              -Module
              -

              Default: "*" +

              Default: "*"
              Search configuration by module.

              diff --git a/Get-DbatoolsConfigValue.html b/Get-DbatoolsConfigValue.html index 0fdd8cd2..60cd3920 100644 --- a/Get-DbatoolsConfigValue.html +++ b/Get-DbatoolsConfigValue.html @@ -487,7 +487,7 @@

              Get-DbatoolsConfigValue

              Synopsis

              Returns the configuration value stored under the specified name.

              Description

              -

              Returns the configuration value stored under the specified name. +

              Returns the configuration value stored under the specified name.
              It requires the full name (.) and is usually only called by functions.

              Syntax

              Get-DbatoolsConfigValue
              @@ -510,7 +510,7 @@ 
              Example: 2

              Returns the configured value for 'Default.CoffeeMilk'. If no such value is configured, it returns '0' instead.

              Required Parameters

              -FullName
              -

              The full name (.) of the configured value to return.

              +

              The full name (.) of the configured value to return.

              @@ -539,7 +539,7 @@
              -FullName

              Optional Parameters

              -Fallback
              -

              A fallback value to use, if no value was registered to a specific configuration element. +

              A fallback value to use, if no value was registered to a specific configuration element.
              This basically is a default value that only applies on a "per call" basis, rather than a system-wide default.

              @@ -568,8 +568,8 @@
              -Fallback
              -NotNull
              -

              By default, this function returns null if one tries to retrieve the value from either a Configuration that does not exist or a Configuration whose value was set to null. -However, sometimes it may be important that some value was returned. +

              By default, this function returns null if one tries to retrieve the value from either a Configuration that does not exist or a Configuration whose value was set to null.
              +However, sometimes it may be important that some value was returned.
              By specifying this parameter, the function will throw an error if no value was found at all.

              diff --git a/Get-DbatoolsLog.html b/Get-DbatoolsLog.html index 87ff0188..1558d8e3 100644 --- a/Get-DbatoolsLog.html +++ b/Get-DbatoolsLog.html @@ -525,7 +525,7 @@
              Example: 4

              Returns all log entries within the last 5 executions that contained the tag "fail"

              Optional Parameters

              -FunctionName
              -

              Default: "*" +

              Default: "*"
              Only messages written by similar functions will be returned.

              @@ -554,7 +554,7 @@
              -FunctionName
              -ModuleName
              -

              Default: "*" +

              Default: "*"
              Only messages written by commands from similar modules will be returned.

              @@ -639,9 +639,9 @@
              -Tag
              -Last
              -

              Only messages written by the last X executions will be returned. -Uses Get-History to determine execution. Ignores Get-message commands. -By default, this will also include messages from other runspaces. If your command executes in parallel, that's useful. +

              Only messages written by the last X executions will be returned.
              +Uses Get-History to determine execution. Ignores Get-message commands.
              +By default, this will also include messages from other runspaces. If your command executes in parallel, that's useful.
              If it doesn't and you were offloading executions to other runspaces, consider also filtering by runspace using '-Runspace'

              @@ -698,7 +698,7 @@
              -LastError
              -Skip
              -

              How many executions to skip when specifying '-Last'. +

              How many executions to skip when specifying '-Last'.
              Has no effect without the '-Last' parameter.

              @@ -727,9 +727,9 @@
              -Skip
              -Runspace
              -

              The guid of the runspace to return messages from. -By default, messages from all runspaces are returned. -Run the following line to see the list of guids: +

              The guid of the runspace to return messages from.
              +By default, messages from all runspaces are returned.
              +Run the following line to see the list of guids:
              Get-Runspace | ft Id, Name, InstanceId -AutoSize

              @@ -758,9 +758,9 @@
              -Runspace
              -Level
              -

              Limit the message selection by level. -Message levels have a numeric value, making it easier to select a range: --Level (1..6) +

              Limit the message selection by level.
              +Message levels have a numeric value, making it easier to select a range:
              +-Level (1..6)
              Will select the first 6 levels (Critical - SomewhatVerbose).

              diff --git a/Get-DbatoolsPath.html b/Get-DbatoolsPath.html index c617ed5b..4f7e17e1 100644 --- a/Get-DbatoolsPath.html +++ b/Get-DbatoolsPath.html @@ -483,11 +483,11 @@

              Get-DbatoolsPath

              Synopsis

              Access a configured path.

              Description

              -

              Access a configured path. -Paths can be configured using Set-DbatoolsPath or using the configuration system. -To register a path using the configuration system create a setting key named like this: -"Path.Managed." -For example the following setting points at the temp path: +

              Access a configured path.
              +Paths can be configured using Set-DbatoolsPath or using the configuration system.
              +To register a path using the configuration system create a setting key named like this:
              +"Path.Managed."
              +For example the following setting points at the temp path:
              "Path.Managed.Temp"

              Syntax

              Get-DbatoolsPath
              @@ -504,7 +504,7 @@ 
              Example: 1

              Returns the temp path.

              Required Parameters

              -Name
              -

              Name of the path to retrieve.

              +

              Name of the path to retrieve.

              diff --git a/Grant-DbaAgPermission.html b/Grant-DbaAgPermission.html index d049d595..28477be9 100644 --- a/Grant-DbaAgPermission.html +++ b/Grant-DbaAgPermission.html @@ -520,7 +520,7 @@
              Example: 3

              Grants the selected logins Connect permissions on the DatabaseMirroring endpoint for sql2017a

              Required Parameters

              -Type
              -

              Specify the object type to grant the provided Permission. Values accepted are Endpoint and/or AvailabilityGroup. Endpoint type will update the DatabaseMirroring object type found on the instance.

              +

              Specify the object type to grant the provided Permission. Values accepted are Endpoint and/or AvailabilityGroup. Endpoint type will update the DatabaseMirroring object type found on the instance.

              @@ -581,8 +581,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -667,25 +667,25 @@
              -AvailabilityGroup
              -Permission
              -

              Grants one or more permissions: -Alter -Connect -Control -CreateSequence -CreateAnyDatabase -Delete -Execute -Impersonate -Insert -Receive -References -Select -Send -TakeOwnership -Update -ViewChangeTracking -ViewDefinition -CreateAnyDatabase +

              Grants one or more permissions:
              +Alter
              +Connect
              +Control
              +CreateSequence
              +CreateAnyDatabase
              +Delete
              +Execute
              +Impersonate
              +Insert
              +Receive
              +References
              +Select
              +Send
              +TakeOwnership
              +Update
              +ViewChangeTracking
              +ViewDefinition
              +CreateAnyDatabase
              Connect is default.

              @@ -746,8 +746,8 @@
              -InputObject
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Import-DbaBinaryFile.html b/Import-DbaBinaryFile.html index 20653c35..e0970237 100644 --- a/Import-DbaBinaryFile.html +++ b/Import-DbaBinaryFile.html @@ -554,8 +554,8 @@
              -SqlInstance
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -612,11 +612,11 @@
              -Database
              -Table
              -

              Define a specific table you would like to upload to. You can specify up to three-part name like db.sch.tbl. -If the object has special characters please wrap them in square brackets [ ]. -Using dbo.First.Table will try to find table named 'Table' on schema 'First' and database 'dbo'. -The correct way to find table named 'First.Table' on schema 'dbo' is by passing dbo.[First.Table] -Any actual usage of the ] must be escaped by duplicating the ] character. +

              Define a specific table you would like to upload to. You can specify up to three-part name like db.sch.tbl.
              +If the object has special characters please wrap them in square brackets [ ].
              +Using dbo.First.Table will try to find table named 'Table' on schema 'First' and database 'dbo'.
              +The correct way to find table named 'First.Table' on schema 'dbo' is by passing dbo.[First.Table]
              +Any actual usage of the ] must be escaped by duplicating the ] character.
              The correct way to find a table Name] in schema Schema.Name is by passing [Schema.Name].[Name]]]

              @@ -673,9 +673,9 @@
              -Schema
              -Statement
              -

              To upload files, you basically have to use a statement line this: -INSERT INTO db.tbl ([FileNameColumn], [bBinaryColumn]) VALUES (@FileName, @FileContents) -We try our best to guess the column names, but if you need to specify the SQL statement, use this parameter. The only required parameter is @FileContents. If you want to use a filename column, you +

              To upload files, you basically have to use a statement line this:
              +INSERT INTO db.tbl ([FileNameColumn], [bBinaryColumn]) VALUES (@FileName, @FileContents)
              +We try our best to guess the column names, but if you need to specify the SQL statement, use this parameter. The only required parameter is @FileContents. If you want to use a filename column, you
              must use @FileName.

              @@ -872,8 +872,8 @@
              -Path
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Import-DbaCsv.html b/Import-DbaCsv.html index d85eeb1b..72015cca 100644 --- a/Import-DbaCsv.html +++ b/Import-DbaCsv.html @@ -586,7 +586,7 @@
              Example: 10

              The CSV column 'Text' is inserted into SQL column 'FirstName' and CSV column Number is inserted into the SQL Column 'PhoneNumber'. All other columns are ignored and therefore null or default values.

              Required Parameters

              -SqlInstance
              -

              The SQL Server Instance to import data into.

              +

              The SQL Server Instance to import data into.

              @@ -614,7 +614,7 @@
              -SqlInstance
              -Database
              -

              Specifies the name of the database the CSV will be imported into. Options for this this parameter are auto-populated from the server.

              +

              Specifies the name of the database the CSV will be imported into. Options for this this parameter are auto-populated from the server.

              @@ -671,8 +671,8 @@
              -Path
              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -701,10 +701,10 @@
              -SqlCredential
              -Table
              -

              Specifies the SQL table or view where CSV will be imported into. -If a table name is not specified, the table name will be automatically determined from the filename. -If the table specified does not exist and -AutoCreateTable, it will be automatically created using slow and inefficient but accommodating data types. -If the automatically generated table datatypes do not work for you, please create the table prior to import. +

              Specifies the SQL table or view where CSV will be imported into.
              +If a table name is not specified, the table name will be automatically determined from the filename.
              +If the table specified does not exist and -AutoCreateTable, it will be automatically created using slow and inefficient but accommodating data types.
              +If the automatically generated table datatypes do not work for you, please create the table prior to import.
              If you want to import specific columns from a CSV, create a view with corresponding columns.

              @@ -733,8 +733,8 @@
              -Table
              -Schema
              -

              Specifies the schema in which the SQL table or view where CSV will be imported into resides. Default is dbo. -If a schema does not currently exist, it will be created, after a prompt to confirm this. Authorization will be set to dbo by default. +

              Specifies the schema in which the SQL table or view where CSV will be imported into resides. Default is dbo.
              +If a schema does not currently exist, it will be created, after a prompt to confirm this. Authorization will be set to dbo by default.
              This parameter overrides -UseFileNameForSchema.

              @@ -791,7 +791,7 @@
              -Truncate
              -Delimiter
              -

              Specifies the delimiter used in the imported file(s). If no delimiter is specified, comma is assumed. +

              Specifies the delimiter used in the imported file(s). If no delimiter is specified, comma is assumed.
              Valid delimiters are 't, '|', ';',' ' and ',' (tab, pipe, semicolon, space, and comma).

              @@ -904,8 +904,8 @@
              -NotifyAfter
              -TableLock
              -

              If this switch is enabled, the SqlBulkCopy option to acquire a table lock will be used. -Per Microsoft "Obtain a bulk update lock for the duration of the bulk copy operation. When not +

              If this switch is enabled, the SqlBulkCopy option to acquire a table lock will be used.
              +Per Microsoft "Obtain a bulk update lock for the duration of the bulk copy operation. When not
              specified, row locks are used."

              @@ -934,7 +934,7 @@
              -TableLock
              -CheckConstraints
              -

              If this switch is enabled, the SqlBulkCopy option to check constraints will be used. +

              If this switch is enabled, the SqlBulkCopy option to check constraints will be used.
              Per Microsoft "Check constraints while data is being inserted. By default, constraints are not checked."

              @@ -963,7 +963,7 @@
              -CheckConstraints
              -FireTriggers
              -

              If this switch is enabled, the SqlBulkCopy option to allow insert triggers to be executed will be used. +

              If this switch is enabled, the SqlBulkCopy option to allow insert triggers to be executed will be used.
              Per Microsoft "When specified, cause the server to fire the insert triggers for the rows being inserted into the database."

              @@ -992,7 +992,7 @@
              -FireTriggers
              -KeepIdentity
              -

              If this switch is enabled, the SqlBulkCopy option to keep identity values from the source will be used. +

              If this switch is enabled, the SqlBulkCopy option to keep identity values from the source will be used.
              Per Microsoft "Preserve source identity values. When not specified, identity values are assigned by the destination."

              @@ -1021,7 +1021,7 @@
              -KeepIdentity
              -KeepNulls
              -

              If this switch is enabled, the SqlBulkCopy option to keep NULL values in the table will be used. +

              If this switch is enabled, the SqlBulkCopy option to keep NULL values in the table will be used.
              Per Microsoft "Preserve null values in the destination table regardless of the settings for default values. When not specified, null values are replaced by default values where applicable."

              @@ -1190,7 +1190,7 @@
              -NoProgress
              -NoHeaderRow
              -

              By default, the first row is used to determine column names for the data being imported. +

              By default, the first row is used to determine column names for the data being imported.
              Use this switch if the first row contains data and not column names.

              @@ -1219,12 +1219,12 @@
              -NoHeaderRow
              -UseFileNameForSchema
              -

              If this switch is enabled, the script will try to find the schema name in the input file by looking for a period (.) in the file name. -If used with the -Table parameter you may still specify the target table name. If -Table is not used the file name after the first period will -be used for the table name. -For example test.data.csv will import the csv contents to a table in the test schema. -If it finds one it will use the file name up to the first period as the schema. If there is no period in the filename it will default to dbo. -If a schema does not currently exist, it will be created, after a prompt to confirm this. Authorization will be set to dbo by default. +

              If this switch is enabled, the script will try to find the schema name in the input file by looking for a period (.) in the file name.
              +If used with the -Table parameter you may still specify the target table name. If -Table is not used the file name after the first period will
              +be used for the table name.
              +For example test.data.csv will import the csv contents to a table in the test schema.
              +If it finds one it will use the file name up to the first period as the schema. If there is no period in the filename it will default to dbo.
              +If a schema does not currently exist, it will be created, after a prompt to confirm this. Authorization will be set to dbo by default.
              This behaviour will be overridden if the -Schema parameter is specified.

              @@ -1253,7 +1253,7 @@
              -UseFileNameForSchema
              -Quote
              -

              Defines the default quote character wrapping every field. +

              Defines the default quote character wrapping every field.
              Default: double-quotes

              @@ -1282,8 +1282,8 @@
              -Quote
              -Escape
              -

              Defines the default escape character letting insert quotation characters inside a quoted field. -The escape character can be the same as the quote character. +

              Defines the default escape character letting insert quotation characters inside a quoted field.
              +The escape character can be the same as the quote character.
              Default: double-quotes

              @@ -1312,7 +1312,7 @@
              -Escape
              -Comment
              -

              Defines the default comment character indicating that a line is commented out. +

              Defines the default comment character indicating that a line is commented out.
              Default: hashtag

              @@ -1401,7 +1401,7 @@
              -BufferSize
              -ParseErrorAction
              -

              By default, the parse error action throws an exception and ends the import. +

              By default, the parse error action throws an exception and ends the import.
              You can also choose AdvanceToNextLine which basically ignores parse errors.

              @@ -1434,7 +1434,7 @@
              -ParseErrorAction
              -Encoding
              -

              By default, set to UTF-8. +

              By default, set to UTF-8.
              The encoding of the file.

              @@ -1635,8 +1635,8 @@
              -NoTransaction
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Import-DbaPfDataCollectorSetTemplate.html b/Import-DbaPfDataCollectorSetTemplate.html index c33bc6a8..15ce48d3 100644 --- a/Import-DbaPfDataCollectorSetTemplate.html +++ b/Import-DbaPfDataCollectorSetTemplate.html @@ -487,9 +487,9 @@

              Import-DbaPfDataCollectorSetTempla

              Synopsis

              Imports a new Performance Monitor Data Collector Set Template either from the dbatools repository or a file you specify.

              Description

              -

              Imports a new Performance Monitor Data Collector Set Template either from the dbatools repository or a file you specify. +

              Imports a new Performance Monitor Data Collector Set Template either from the dbatools repository or a file you specify.
              When importing data collector sets from the local instance, Run As Admin is required.

              -

              Note: The included counters will be added for all SQL instances on the machine by default. +

              Note: The included counters will be added for all SQL instances on the machine by default.
              For specific instances in addition to the default, use -Instance.

              See https://msdn.microsoft.com/en-us/library/windows/desktop/aa371952 for more information

              Syntax

              @@ -574,7 +574,7 @@
              -ComputerName
              -Credential
              -

              Allows you to login to servers using alternative credentials. To use: +

              Allows you to login to servers using alternative credentials. To use:
              $scred = Get-Credential, then pass $scred object to the -Credential parameter.

              @@ -799,7 +799,7 @@
              -Subdirectory
              -SubdirectoryFormat
              -

              Sets flags that describe how to decorate the subdirectory name. PLA appends the decoration to the folder name. For example, if you specify plaMonthDayHour, PLA appends the current month, day, and +

              Sets flags that describe how to decorate the subdirectory name. PLA appends the decoration to the folder name. For example, if you specify plaMonthDayHour, PLA appends the current month, day, and
              hour values to the folder name. If the folder name is MyFile, the result could be MyFile110816.

              @@ -912,7 +912,7 @@
              -TaskRunAsSelf
              -TaskArguments
              -

              Sets the command-line arguments to pass to the Task Scheduler job specified in the IDataCollectorSet::Task property. +

              Sets the command-line arguments to pass to the Task Scheduler job specified in the IDataCollectorSet::Task property.
              See https://msdn.microsoft.com/en-us/library/windows/desktop/aa371992 for more information.

              @@ -941,7 +941,7 @@
              -TaskArguments
              -TaskUserTextArguments
              -

              Sets the command-line arguments that are substituted for the substitution variable in the IDataCollectorSet::TaskArguments property. +

              Sets the command-line arguments that are substituted for the substitution variable in the IDataCollectorSet::TaskArguments property.
              See https://msdn.microsoft.com/en-us/library/windows/desktop/aa371993 for more information.

              @@ -1082,8 +1082,8 @@
              -Instance
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Import-DbaRegServer.html b/Import-DbaRegServer.html index bfd54acb..a53f0c76 100644 --- a/Import-DbaRegServer.html +++ b/Import-DbaRegServer.html @@ -520,7 +520,7 @@
              Example: 4

              Imports all registered servers from the hr\Seattle group on sql2008 to the Seattle group on sql2017

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -549,8 +549,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -607,7 +607,7 @@
              -Path
              -InputObject
              -

              Enables piping from Get-DbaRegServer, Get-DbaRegServerGroup, CSVs and other objects. +

              Enables piping from Get-DbaRegServer, Get-DbaRegServerGroup, CSVs and other objects.
              If importing from CSV or other object, a column named ServerName is required. Optional columns include Name, Description and Group.

              @@ -664,8 +664,8 @@
              -Group
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Import-DbaSpConfigure.html b/Import-DbaSpConfigure.html index eb9a133a..592983c3 100644 --- a/Import-DbaSpConfigure.html +++ b/Import-DbaSpConfigure.html @@ -596,8 +596,8 @@
              -Destination
              -SourceSqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -626,8 +626,8 @@
              -SourceSqlCredential
              -DestinationSqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -712,9 +712,9 @@
              -Path
              -SqlCredential
              -

              Use this SQL credential if you are setting up sp_configure values from a SQL file. -Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Use this SQL credential if you are setting up sp_configure values from a SQL file.
              +Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -743,7 +743,7 @@
              -SqlCredential
              -Force
              -

              If this switch is enabled, no version check between Source and Destination is performed. By default, the major and minor versions of Source and Destination must match when copying sp_configure +

              If this switch is enabled, no version check between Source and Destination is performed. By default, the major and minor versions of Source and Destination must match when copying sp_configure
              settings.

              @@ -772,8 +772,8 @@
              -Force
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Import-DbaXESessionTemplate.html b/Import-DbaXESessionTemplate.html index 398f3f8a..1267da84 100644 --- a/Import-DbaXESessionTemplate.html +++ b/Import-DbaXESessionTemplate.html @@ -529,7 +529,7 @@
              Example: 5

              Allows you to select a Session template then import to an instance named sql2017.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

              +

              The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

              @@ -558,8 +558,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -672,8 +672,8 @@
              -Template
              -TargetFilePath
              -

              By default, files will be created in the default xel directory. Use TargetFilePath to change all instances of -filename = "file.xel" to filename = "$TargetFilePath\file.xel". Only specify the directory, not the file itself. +

              By default, files will be created in the default xel directory. Use TargetFilePath to change all instances of
              +filename = "file.xel" to filename = "$TargetFilePath\file.xel". Only specify the directory, not the file itself.
              This path is relative to the destination directory

              @@ -702,8 +702,8 @@
              -TargetFilePath
              -TargetFileMetadataPath
              -

              By default, files will be created in the default xem directory. Use TargetFileMetadataPath to change all instances of -filename = "file.xem" to filename = "$TargetFilePath\file.xem". Only specify the directory, not the file itself. +

              By default, files will be created in the default xem directory. Use TargetFileMetadataPath to change all instances of
              +filename = "file.xem" to filename = "$TargetFilePath\file.xem". Only specify the directory, not the file itself.
              This path is relative to the destination directory

              @@ -764,8 +764,8 @@
              -StartUpState
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Import-DbatoolsConfig.html b/Import-DbatoolsConfig.html index 2808473f..499f8016 100644 --- a/Import-DbatoolsConfig.html +++ b/Import-DbatoolsConfig.html @@ -516,7 +516,7 @@
              Example: 2

              Imports all the module specific settings that have been persisted in any of the default file system paths.

              Required Parameters

              -Path
              -

              The path to the json file to import.

              +

              The path to the json file to import.

              @@ -544,7 +544,7 @@
              -Path
              -ModuleName
              -

              Import configuration items specific to a module from the default configuration paths.

              +

              Import configuration items specific to a module from the default configuration paths.

              @@ -601,8 +601,8 @@
              -ModuleVersion
              -Scope
              -

              Where to import the module specific configuration items form. -Only file-based scopes are supported for this. +

              Where to import the module specific configuration items form.
              +Only file-based scopes are supported for this.
              By default, all locations are queried, with user settings beating system settings.

              @@ -715,7 +715,7 @@
              -Peek
              -EnableException
              -

              This parameters disables user-friendly warnings and enables the throwing of exceptions. +

              This parameters disables user-friendly warnings and enables the throwing of exceptions.
              This is less user friendly, but allows catching exceptions in calling scripts.

              diff --git a/Install-DbaAgentAdminAlert.html b/Install-DbaAgentAdminAlert.html index d35ef9bb..abc7369d 100644 --- a/Install-DbaAgentAdminAlert.html +++ b/Install-DbaAgentAdminAlert.html @@ -522,7 +522,7 @@
              Example: 1

              Creates alerts for severity 17-25 and messages 823-825 on sql1

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances

              +

              The target SQL Server instance or instances

              @@ -551,8 +551,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -581,7 +581,7 @@
              -SqlCredential
              -Category
              -

              The name of the category for the alert. If not specified, the alert will be created in the 'Uncategorized' category. +

              The name of the category for the alert. If not specified, the alert will be created in the 'Uncategorized' category.
              If the category does not exist, it will be created.

              @@ -950,8 +950,8 @@
              -NotifyMethod
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Install-DbaDarlingData.html b/Install-DbaDarlingData.html index b371e01e..777d4209 100644 --- a/Install-DbaDarlingData.html +++ b/Install-DbaDarlingData.html @@ -488,8 +488,8 @@

              Synopsis

              Installs or updates Erik Darling's stored procedures.

              Description

              Downloads, extracts and installs Erik Darling's stored procedures

              -

              DarlingData links: -https://www.erikdarling.com +

              DarlingData links:
              +https://www.erikdarling.com
              https://github.com/erikdarlingdata/DarlingData

              Syntax

              Install-DbaDarlingData
              @@ -535,7 +535,7 @@ 
              Example: 6

              Logs into server1\instance1 with Windows authentication and then installs sp_HumanEvents and sp_PressureDetector of Erik's scripts in the DBA database.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -564,8 +564,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -622,9 +622,9 @@
              -Database
              -Branch
              -

              Specifies an alternate branch of Erik's to install. -Allowed values: -main (default) +

              Specifies an alternate branch of Erik's to install.
              +Allowed values:
              +main (default)
              dev

              @@ -657,11 +657,11 @@
              -Branch
              -Procedure
              -

              Specifies the name(s) of the procedures to install -Allowed Values or Combination of Values: -All (default, to install all 3 procedures) -Human (to install sp_HumanEvents) -Pressure (to install sp_PressureDetector) +

              Specifies the name(s) of the procedures to install
              +Allowed Values or Combination of Values:
              +All (default, to install all 3 procedures)
              +Human (to install sp_HumanEvents)
              +Pressure (to install sp_PressureDetector)
              Quickie (to install sp_QuickieStore)

              @@ -694,7 +694,7 @@
              -Procedure
              -LocalFile
              -

              Specifies the path to a local file to install from. This should be the zip file as distributed by the maintainers. +

              Specifies the path to a local file to install from. This should be the zip file as distributed by the maintainers.
              If this parameter is not specified, the latest version will be downloaded and installed from https://github.com/erikdarlingdata/DarlingData

              @@ -751,8 +751,8 @@
              -Force
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Install-DbaFirstResponderKit.html b/Install-DbaFirstResponderKit.html index 85fb46d9..6dc539f5 100644 --- a/Install-DbaFirstResponderKit.html +++ b/Install-DbaFirstResponderKit.html @@ -488,8 +488,8 @@

              Synopsis

              Installs or updates the First Responder Kit stored procedures.

              Description

              Downloads, extracts and installs the First Responder Kit stored procedures

              -

              First Responder Kit links: -http://FirstResponderKit.org +

              First Responder Kit links:
              +http://FirstResponderKit.org
              https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit

              Syntax

              Install-DbaFirstResponderKit
              @@ -548,7 +548,7 @@ 
              Example: 9

              Uninstalls the First Responder Kit by running the official uninstall script.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -577,8 +577,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -607,9 +607,9 @@
              -SqlCredential
              -Branch
              -

              Specifies an alternate branch of the First Responder Kit to install. -Allowed values: -main (default) +

              Specifies an alternate branch of the First Responder Kit to install.
              +Allowed values:
              +main (default)
              dev

              @@ -670,7 +670,7 @@
              -Database
              -LocalFile
              -

              Specifies the path to a local file to install FRK from. This should be the zip file as distributed by the maintainers. +

              Specifies the path to a local file to install FRK from. This should be the zip file as distributed by the maintainers.
              If this parameter is not specified, the latest version will be downloaded and installed from https://github.com/BrentOzarULTD/SQL-Server-First-Responder-Kit

              @@ -699,9 +699,9 @@
              -LocalFile
              -OnlyScript
              -

              Specifies the name(s) of the script(s) to run for installation. Wildcards are permitted. -This way only part of the First Responder Kit can be installed. -Using one of the three official Install-* scripts (Install-All-Scripts.sql, Install-Core-Blitz-No-Query-Store.sql, Install-Core-Blitz-With-Query-Store.sql) is possible this way. +

              Specifies the name(s) of the script(s) to run for installation. Wildcards are permitted.
              +This way only part of the First Responder Kit can be installed.
              +Using one of the three official Install-* scripts (Install-All-Scripts.sql, Install-Core-Blitz-No-Query-Store.sql, Install-Core-Blitz-With-Query-Store.sql) is possible this way.
              Even removing the First Responder Kit is possible by using the official Uninstall.sql.

              @@ -762,8 +762,8 @@
              -Force
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Install-DbaInstance.html b/Install-DbaInstance.html index 509f77b7..616abde5 100644 --- a/Install-DbaInstance.html +++ b/Install-DbaInstance.html @@ -487,7 +487,7 @@

              Install-DbaInstance

              Synopsis

              This function will help you to quickly install a SQL Server instance.

              Description

              -

              This function will help you to quickly install a SQL Server instance on one or many computers. +

              This function will help you to quickly install a SQL Server instance on one or many computers.
              Some of the things this function will do for you:

              • Add your login as an admin to the new instance
              • @@ -506,11 +506,11 @@

                Description

              • Change the TCP port after the installation is done
              • Enable 'Perform volume maintenance tasks' for the SQL Server account
              -

              Note that the downloaded installation media must be extracted and available to the server where the installation runs. +

              Note that the downloaded installation media must be extracted and available to the server where the installation runs.
              NOTE: If no ProductID (PID) is found in the configuration files/parameters, Evaluation version is going to be installed.

              -

              When using CredSSP authentication, this function will try to configure CredSSP authentication for PowerShell Remoting sessions. -If this is not desired (e.g.: CredSSP authentication is managed externally, or is already configured appropriately,) -it can be disabled by setting the dbatools configuration option 'commands.initialize-credssp.bypass' value to $true. +

              When using CredSSP authentication, this function will try to configure CredSSP authentication for PowerShell Remoting sessions.
              +If this is not desired (e.g.: CredSSP authentication is managed externally, or is already configured appropriately,)
              +it can be disabled by setting the dbatools configuration option 'commands.initialize-credssp.bypass' value to $true.
              To be able to configure CredSSP, the command needs to be run in an elevated PowerShell session.

              Syntax

              Install-DbaInstance
              @@ -593,8 +593,8 @@ 
              Example: 6
              Instance name will be defined as 'v2017'; TCP port will be changed to 1337 after installation.

              Required Parameters

              -Version
              -

              SQL Server version you wish to install. -This is the year version (e.g. "2008R2", "2017", "2019", "2022")

              +

              SQL Server version you wish to install.
              +This is the year version (e.g. "2008R2", "2017", "2019", "2022")

              @@ -627,12 +627,12 @@
              -Version

              Optional Parameters

              -SqlInstance
              -

              The target computer and, optionally, a new instance name and a port number. -Use one of the following generic formats: -Server1 -Server2\Instance1 -Server1\Alpha:1533, Server2\Omega:1566 -"ServerName\NewInstanceName,1534" +

              The target computer and, optionally, a new instance name and a port number.
              +Use one of the following generic formats:
              +Server1
              +Server2\Instance1
              +Server1\Alpha:1533, Server2\Omega:1566
              +"ServerName\NewInstanceName,1534"
              You can also define instance name and port using -InstanceName and -Port parameters.

              @@ -717,9 +717,9 @@
              -SaCredential
              -Credential
              -

              Windows Credential with permission to log on to the remote server. -Must be specified for any remote connection if SQL Server installation media is located on a network folder. -Authentication will default to CredSSP if -Credential is used. +

              Windows Credential with permission to log on to the remote server.
              +Must be specified for any remote connection if SQL Server installation media is located on a network folder.
              +Authentication will default to CredSSP if -Credential is used.
              For CredSSP see also additional information in DESCRIPTION.

              @@ -748,14 +748,14 @@
              -Credential
              -Authentication
              -

              Chooses an authentication protocol for remote connections. -Allowed values: 'Default', 'Basic', 'Negotiate', 'NegotiateWithImplicitCredential', 'Credssp', 'Digest', 'Kerberos'. -If the protocol fails to establish a connection and explicit -Credentials were used, a failback authentication method would be attempted that configures PSSessionConfiguration -on the remote machine. This method, however, is considered insecure and would, therefore, prompt an additional confirmation when used. +

              Chooses an authentication protocol for remote connections.
              +Allowed values: 'Default', 'Basic', 'Negotiate', 'NegotiateWithImplicitCredential', 'Credssp', 'Digest', 'Kerberos'.
              +If the protocol fails to establish a connection and explicit -Credentials were used, a failback authentication method would be attempted that configures PSSessionConfiguration
              +on the remote machine. This method, however, is considered insecure and would, therefore, prompt an additional confirmation when used.
              Defaults:

              • CredSSP when -Credential is specified - due to the fact that repository Path is usually a network share and credentials need to be passed to the remote host to avoid the double-hop issue.
              • -
              • Default when -Credential is not specified. Will likely fail if a network path is specified. +
              • Default when -Credential is not specified. Will likely fail if a network path is specified.
                For CredSSP see also additional information in DESCRIPTION.
              @@ -817,15 +817,15 @@
              -ConfigurationFile
              -Configuration
              -

              A hashtable with custom configuration items that you want to use during the installation. -Overrides all other parameters. -For example, to define a custom server collation you can use the following parameter: -PS> Install-DbaInstance -Version 2017 -Configuration @ -As long as you don't specify the item ACTION, some items are already set by the command, like SQLSYSADMINACCOUNTS or *SVCSTARTUPTYPE. -If you specify the item ACTION, only INSTANCENAME and FEATURES are set based on the corresponding parameters and QUIET is set to True. -You will have to set all other needed items for your specific ACTION. -But this way it is possible to use the command so install a Failover Cluster Instance or even to remove a SQL Server instance. -More information about how to install a Failover Cluster Instance can be found here: https://github.com/dataplat/dbatools/discussions/7447 +

              A hashtable with custom configuration items that you want to use during the installation.
              +Overrides all other parameters.
              +For example, to define a custom server collation you can use the following parameter:
              +PS> Install-DbaInstance -Version 2017 -Configuration @
              +As long as you don't specify the item ACTION, some items are already set by the command, like SQLSYSADMINACCOUNTS or *SVCSTARTUPTYPE.
              +If you specify the item ACTION, only INSTANCENAME and FEATURES are set based on the corresponding parameters and QUIET is set to True.
              +You will have to set all other needed items for your specific ACTION.
              +But this way it is possible to use the command so install a Failover Cluster Instance or even to remove a SQL Server instance.
              +More information about how to install a Failover Cluster Instance can be found here: https://github.com/dataplat/dbatools/discussions/7447
              Full list of parameters can be found here: https://docs.microsoft.com/en-us/sql/database-engine/install-windows/install-sql-server-from-the-command-prompt#Install

              @@ -854,9 +854,9 @@
              -Configuration
              -Path
              -

              Path to the folder(s) with SQL Server installation media downloaded. It will be scanned recursively for a corresponding setup.exe. -Path should be available from the remote server. -If a setup.exe file is missing in the repository, the installation will fail. +

              Path to the folder(s) with SQL Server installation media downloaded. It will be scanned recursively for a corresponding setup.exe.
              +Path should be available from the remote server.
              +If a setup.exe file is missing in the repository, the installation will fail.
              Consider setting the following configuration in your session if you want to omit this parameter: Set-DbatoolsConfig -Name Path.SQLServerSetup -Value '\\path\to\installations'

              @@ -885,30 +885,30 @@
              -Path
              -Feature
              -

              Features to install. Templates like "Default" and "All" can be used to setup a predefined set of components. Full list of features: -Default: Engine, Replication, FullText, Tools -All -Engine -Tools: SSMS, BackwardsCompatibility, Connectivity -Replication -FullText -DataQuality -PolyBase -MachineLearning -AnalysisServices -ReportingServices -ReportingForSharepoint -SharepointAddin -IntegrationServices -MasterDataServices -PythonPackages -RPackages -BackwardsCompatibility -Connectivity -ReplayController -ReplayClient -SDK -BIDS +

              Features to install. Templates like "Default" and "All" can be used to setup a predefined set of components. Full list of features:
              +Default: Engine, Replication, FullText, Tools
              +All
              +Engine
              +Tools: SSMS, BackwardsCompatibility, Connectivity
              +Replication
              +FullText
              +DataQuality
              +PolyBase
              +MachineLearning
              +AnalysisServices
              +ReportingServices
              +ReportingForSharepoint
              +SharepointAddin
              +IntegrationServices
              +MasterDataServices
              +PythonPackages
              +RPackages
              +BackwardsCompatibility
              +Connectivity
              +ReplayController
              +ReplayClient
              +SDK
              +BIDS
              SSMS: SSMS, ADV_SSMS

              @@ -1197,7 +1197,7 @@
              -Port
              -Throttle
              -

              Maximum number of computers updated in parallel. Once reached, the update operations will queue up. +

              Maximum number of computers updated in parallel. Once reached, the update operations will queue up.
              Default: 50

              @@ -1226,7 +1226,7 @@
              -Throttle
              -ProductID
              -

              Product ID, or simply, serial number of your SQL Server installation, which will determine which version to install. +

              Product ID, or simply, serial number of your SQL Server installation, which will determine which version to install.
              If the PID is already built into the installation media, can be ignored.

              @@ -1255,7 +1255,7 @@
              -ProductID
              -AsCollation
              -

              Collation for the Analysis Service. +

              Collation for the Analysis Service.
              Default value: Latin1_General_CI_AS

              @@ -1284,8 +1284,8 @@
              -AsCollation
              -SqlCollation
              -

              Collation for the Database Engine. -The default depends on the Windows locale: +

              Collation for the Database Engine.
              +The default depends on the Windows locale:
              https://docs.microsoft.com/en-us/sql/relational-databases/collations/collation-and-unicode-support#Server-level-collations

              @@ -1622,8 +1622,8 @@
              -NoPendingRenameCheck
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Install-DbaMaintenanceSolution.html b/Install-DbaMaintenanceSolution.html index 56bb8617..6ee6a50c 100644 --- a/Install-DbaMaintenanceSolution.html +++ b/Install-DbaMaintenanceSolution.html @@ -598,7 +598,7 @@
              Example: 7
              See https://blog.netnerds.net/2023/05/install-dbamaintenancesolution-now-supports-auto-scheduling/ for more information.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance onto which the Maintenance Solution will be installed.

              +

              The target SQL Server instance onto which the Maintenance Solution will be installed.

              @@ -627,8 +627,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -885,12 +885,12 @@
              -InstallJobs
              -AutoScheduleJobs
              -

              Scheduled jobs during an optimal time. When AutoScheduleJobs is used, this time will be used as the start time for the jobs unless a schedule already -exists in the same time slot. If so, then it will add an hour until it finds an open time slot. Defaults to 1:15 AM. -WeeklyFull will create weekly full, daily differential and 15 minute log backups of user databases. -System databases will always be backed up daily. -Differentials will be skipped when NoDiff or DailyFull is specified. -To perform log backups each hour instead of every 15 minutes, specify HourlyLog in the values. +

              Scheduled jobs during an optimal time. When AutoScheduleJobs is used, this time will be used as the start time for the jobs unless a schedule already
              +exists in the same time slot. If so, then it will add an hour until it finds an open time slot. Defaults to 1:15 AM.
              +WeeklyFull will create weekly full, daily differential and 15 minute log backups of user databases.
              +System databases will always be backed up daily.
              +Differentials will be skipped when NoDiff or DailyFull is specified.
              +To perform log backups each hour instead of every 15 minutes, specify HourlyLog in the values.
              Recommendations can be found on Ola's site: https://ola.hallengren.com/frequently-asked-questions.html

              @@ -923,7 +923,7 @@
              -AutoScheduleJobs
              -StartTime
              -

              When AutoScheduleJobs is used, this time will be used as the start time for the jobs unless a schedule already +

              When AutoScheduleJobs is used, this time will be used as the start time for the jobs unless a schedule already
              exists in the same time slot. If so, then it will add an hour until it finds an open time slot. Defaults to 1:15 AM.

              @@ -952,7 +952,7 @@
              -StartTime
              -LocalFile
              -

              Specifies the path to a local file to install Ola's solution from. This should be the zip file as distributed by the maintainers. +

              Specifies the path to a local file to install Ola's solution from. This should be the zip file as distributed by the maintainers.
              If this parameter is not specified, the latest version will be downloaded and installed from https://github.com/olahallengren/sql-server-maintenance-solution

              @@ -1037,8 +1037,8 @@
              -InstallParallel
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Install-DbaMultiTool.html b/Install-DbaMultiTool.html index a04241c5..dd0438e1 100644 --- a/Install-DbaMultiTool.html +++ b/Install-DbaMultiTool.html @@ -488,8 +488,8 @@

              Synopsis

              Installs or updates the DBA MultiTool stored procedures.

              Description

              Downloads, extracts and installs the DBA MultiTool stored procedures.

              -

              DBA MultiTool links: -https://dba-multitool.org +

              DBA MultiTool links:
              +https://dba-multitool.org
              https://github.com/LowlyDBA/dba-multitool/

              Syntax

              Install-DbaMultiTool
              @@ -535,7 +535,7 @@ 
              Example: 6

              Installs the development branch version of the DBA MultiTool in the main database on sql2016 instance.

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances.

              +

              The target SQL Server instance or instances.

              @@ -564,8 +564,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -594,9 +594,9 @@
              -SqlCredential
              -Branch
              -

              Specifies an alternate branch of the DBA MultiTool to install. -Allowed values: -main (default) +

              Specifies an alternate branch of the DBA MultiTool to install.
              +Allowed values:
              +main (default)
              development

              @@ -657,7 +657,7 @@
              -Database
              -LocalFile
              -

              Specifies the path to a local file to install DBA MultiTool from. This should be the zip file as distributed by the maintainers. +

              Specifies the path to a local file to install DBA MultiTool from. This should be the zip file as distributed by the maintainers.
              If this parameter is not specified, the latest version will be downloaded and installed from https://github.com/LowlyDBA/dba-multitool/.

              @@ -714,8 +714,8 @@
              -Force
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Install-DbaSqlWatch.html b/Install-DbaSqlWatch.html index 9e9cddaf..5c0231e8 100644 --- a/Install-DbaSqlWatch.html +++ b/Install-DbaSqlWatch.html @@ -487,7 +487,7 @@

              Install-DbaSqlWatch

              Synopsis

              Installs or updates SqlWatch.

              Description

              -

              Downloads, extracts and installs or updates SqlWatch. +

              Downloads, extracts and installs or updates SqlWatch.
              https://sqlwatch.io/

              Syntax

              Install-DbaSqlWatch
              @@ -529,7 +529,7 @@ 
              Example: 5
              Logs into sql2016\standardrtm, sql2016\sqlexpress and sql2014 with Windows authentication and then installs SqlWatch in the SQLWATCH database.

              Required Parameters

              -SqlInstance
              -

              SQL Server name or SMO object representing the SQL Server to connect to.

              +

              SQL Server name or SMO object representing the SQL Server to connect to.

              @@ -558,8 +558,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -616,7 +616,7 @@
              -Database
              -LocalFile
              -

              Specifies the path to a local file to install SqlWatch from. This should be the zipfile as distributed by the maintainers. +

              Specifies the path to a local file to install SqlWatch from. This should be the zipfile as distributed by the maintainers.
              If this parameter is not specified, the latest version will be downloaded and installed from https://github.com/marcingminski/sqlwatch

              @@ -701,8 +701,8 @@
              -Force
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Install-DbaWhoIsActive.html b/Install-DbaWhoIsActive.html index fd651509..9c9d86d2 100644 --- a/Install-DbaWhoIsActive.html +++ b/Install-DbaWhoIsActive.html @@ -531,7 +531,7 @@
              Example: 5

              Installs sp_WhoisActive to all servers within CMS

              Required Parameters

              -SqlInstance
              -

              The target SQL Server instance or instances. Server version must be SQL Server version 2005 or higher.

              +

              The target SQL Server instance or instances. Server version must be SQL Server version 2005 or higher.

              @@ -560,8 +560,8 @@
              -SqlInstance

              Optional Parameters

              -SqlCredential
              -

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

              Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
              +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
              For MFA support, please use Connect-DbaInstance.

              @@ -590,7 +590,7 @@
              -SqlCredential
              -LocalFile
              -

              Specifies the path to a local file to install sp_WhoisActive from. This can be either the zip file as distributed by the website or the expanded SQL script. +

              Specifies the path to a local file to install sp_WhoisActive from. This can be either the zip file as distributed by the website or the expanded SQL script.
              If this parameter is not specified, the latest version will be downloaded and installed from https://github.com/amachanic/sp_whoisactive/releases

              @@ -647,8 +647,8 @@
              -Database
              -EnableException
              -

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

              By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
              +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
              Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

              diff --git a/Invoke-DbaAdvancedInstall.html b/Invoke-DbaAdvancedInstall.html index 15f2116f..d5287f8e 100644 --- a/Invoke-DbaAdvancedInstall.html +++ b/Invoke-DbaAdvancedInstall.html @@ -714,10 +714,10 @@
              -Version
              -Configuration
              -

              A hashtable with custom configuration items that you want to use during the installation. -Overrides all other parameters. -For example, to define a custom server collation you can use the following parameter: -PS> Install-DbaInstance -Version 2017 -Configuration @ +

              A hashtable with custom configuration items that you want to use during the installation.
              +Overrides all other parameters.
              +For example, to define a custom server collation you can use the following parameter:
              +PS> Install-DbaInstance -Version 2017 -Configuration @
              Full list of parameters can be found here: https://docs.microsoft.com/en-us/sql/database-engine/install-windows/install-sql-server-from-the-command-prompt#Install

              @@ -746,7 +746,7 @@
              -Configuration
              -Restart
              -

              Restart computer automatically after a successful installation of Sql Server and wait until it comes back online. +

              Restart computer automatically after a successful installation of Sql Server and wait until it comes back online.
              Using this parameter is the only way to chain-install more than 1 instance, since every single patch will require a restart of said computer.

              @@ -831,8 +831,8 @@
              -SaveConfiguration
              -Authentication
              -

              Chooses an authentication protocol for remote connections. -If the protocol fails to establish a connection +

              Chooses an authentication protocol for remote connections.
              +If the protocol fails to establish a connection
              Defaults:

              • CredSSP when -Credential is specified - due to the fact that repository Path is usually a network share and credentials need to be passed to the remote host to avoid the double-hop issue.
              • @@ -869,7 +869,7 @@
                -Authentication
                -Credential
                -

                Windows Credential with permission to log on to the remote server. +

                Windows Credential with permission to log on to the remote server.
                Must be specified for any remote connection if installation media is located on a network folder.

                @@ -954,8 +954,8 @@
                -NoPendingRenameCheck
                -EnableException
                -

                By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                diff --git a/Invoke-DbaAdvancedRestore.html b/Invoke-DbaAdvancedRestore.html index 99027846..7404b799 100644 --- a/Invoke-DbaAdvancedRestore.html +++ b/Invoke-DbaAdvancedRestore.html @@ -485,10 +485,10 @@

                Invoke-DbaAdvancedRestore


                Want to see the Bill Of Health for this command? Check out Invoke-DbaAdvancedRestore.

                Synopsis

                -

                Allows the restore of modified BackupHistory Objects +

                Allows the restore of modified BackupHistory Objects
                For 90% of users Restore-DbaDatabase should be your point of access to this function. The other 10% use it at their own risk

                Description

                -

                This is the final piece in the Restore-DbaDatabase Stack. Usually a BackupHistory object will arrive here from Restore-DbaDatabase via the following pipeline: +

                This is the final piece in the Restore-DbaDatabase Stack. Usually a BackupHistory object will arrive here from Restore-DbaDatabase via the following pipeline:
                Get-DbaBackupInformation | Select-DbaBackupInformation | Format-DbaBackupInformation | Test-DbaBackupInformation | Invoke-DbaAdvancedRestore

                We have exposed these functions publicly to allow advanced users to perform operations that we don't support, or won't add as they would make things too complex for the majority of our users

                For example if you wanted to do some very complex redirection during a migration, then doing the rewrite of destinations may be better done with your own custom scripts rather than via Format-DbaBackupInformation

                @@ -537,8 +537,8 @@
                Example: 2
                By reusing the BackupHistory object there is no need to rescan all the backup files again

                Required Parameters

                -BackupHistory
                -

                The BackupHistory object to be restored. -Can be passed in on the pipeline

                +

                The BackupHistory object to be restored.
                +Can be passed in on the pipeline

                @@ -595,8 +595,8 @@
                -SqlInstance
                -SqlCredential
                -

                Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                For MFA support, please use Connect-DbaInstance.

                @@ -681,7 +681,7 @@
                -VerifyOnly
                -RestoreTime
                -

                Point in Time to which the database should be restored. +

                Point in Time to which the database should be restored.
                This should be the same value or earlier, as used in the previous pipeline stages

                @@ -794,8 +794,8 @@
                -MaxTransferSize
                -BlockSize
                -

                Specifies the block size to use. Must be one of 0.5kb,1kb,2kb,4kb,8kb,16kb,32kb or 64kb -Can be specified in bytes +

                Specifies the block size to use. Must be one of 0.5kb,1kb,2kb,4kb,8kb,16kb,32kb or 64kb
                +Can be specified in bytes
                Refer to https://msdn.microsoft.com/en-us/library/ms178615.aspx for more detail

                @@ -824,7 +824,7 @@
                -BlockSize
                -BufferCount
                -

                Number of I/O buffers to use to perform the operation. +

                Number of I/O buffers to use to perform the operation.
                Refer to https://msdn.microsoft.com/en-us/library/ms178615.aspx for more detail

                @@ -853,7 +853,7 @@
                -BufferCount
                -Continue
                -

                Indicates that the restore is continuing a restore, so target database must be in Recovering or Standby states +

                Indicates that the restore is continuing a restore, so target database must be in Recovering or Standby states
                When specified, WithReplace will be set to true

                @@ -1134,7 +1134,7 @@
                -StopAfterDate
                -EnableException
                -

                Replaces user friendly yellow warnings with bloody red exceptions of doom! +

                Replaces user friendly yellow warnings with bloody red exceptions of doom!
                Use this if you want the function to throw terminating errors you want to catch.

                diff --git a/Invoke-DbaAdvancedUpdate.html b/Invoke-DbaAdvancedUpdate.html index 553ef30d..e0561403 100644 --- a/Invoke-DbaAdvancedUpdate.html +++ b/Invoke-DbaAdvancedUpdate.html @@ -573,7 +573,7 @@
                -Action
                -Restart
                -

                Restart computer automatically after a successful installation of a patch and wait until it comes back online. +

                Restart computer automatically after a successful installation of a patch and wait until it comes back online.
                Using this parameter is the only way to chain-install more than 1 patch on a computer, since every single patch will require a restart of said computer.

                @@ -602,8 +602,8 @@
                -Restart
                -Authentication
                -

                Chooses an authentication protocol for remote connections. -If the protocol fails to establish a connection +

                Chooses an authentication protocol for remote connections.
                +If the protocol fails to establish a connection
                Defaults:

                • CredSSP when -Credential is specified - due to the fact that repository Path is usually a network share and credentials need to be passed to the remote host to avoid the double-hop issue.
                • @@ -640,7 +640,7 @@
                  -Authentication
                  -Credential
                  -

                  Windows Credential with permission to log on to the remote server. +

                  Windows Credential with permission to log on to the remote server.
                  Must be specified for any remote connection if update Repository is located on a network folder.

                  @@ -697,7 +697,7 @@
                  -ExtractPath
                  -ArgumentList
                  -

                  A list of extra arguments to pass to the execution file. Accepts one or more strings containing command line parameters. +

                  A list of extra arguments to pass to the execution file. Accepts one or more strings containing command line parameters.
                  Example: ... -ArgumentList "/SkipRules=RebootRequiredCheck", "/Q"

                  @@ -754,8 +754,8 @@
                  -NoPendingRenameCheck
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Invoke-DbaAgFailover.html b/Invoke-DbaAgFailover.html index a10ac436..e6d4a34e 100644 --- a/Invoke-DbaAgFailover.html +++ b/Invoke-DbaAgFailover.html @@ -546,8 +546,8 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance..

                  @@ -660,8 +660,8 @@
                  -Force
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Invoke-DbaBalanceDataFiles.html b/Invoke-DbaBalanceDataFiles.html index fccb757e..77074cee 100644 --- a/Invoke-DbaBalanceDataFiles.html +++ b/Invoke-DbaBalanceDataFiles.html @@ -487,15 +487,15 @@

                  Invoke-DbaBalanceDataFiles

                  Synopsis

                  Re-balance data between data files

                  Description

                  -

                  When you have a large database with a single data file and add another file, SQL Server will only use the new file until it's about the same size. +

                  When you have a large database with a single data file and add another file, SQL Server will only use the new file until it's about the same size.
                  You may want to balance the data between all the data files.

                  -

                  The function will check the server version and edition to see if the it allows for online index rebuilds. -If the server does support it, it will try to rebuild the index online. +

                  The function will check the server version and edition to see if the it allows for online index rebuilds.
                  +If the server does support it, it will try to rebuild the index online.
                  If the server doesn't support it, it will rebuild the index offline. Be carefull though, this can cause downtime

                  -

                  The tables must have a clustered index to be able to balance out the data. +

                  The tables must have a clustered index to be able to balance out the data.
                  The function does NOT yet support heaps.

                  -

                  The function will also check if the file groups are subject to balance out. -A file group would have at least have 2 data files and should be writable. +

                  The function will also check if the file groups are subject to balance out.
                  +A file group would have at least have 2 data files and should be writable.
                  If a table is within such a file group it will be subject for processing. If not the table will be skipped.

                  Note: this command does not perform a disk space check for non-Windows machines so make sure you have enough space on the disk.

                  Syntax

                  @@ -544,7 +544,7 @@
                  Example: 4
                  By supplying this parameter you give permission to do the rebuilds offline if the edition does not support it.

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances.

                  +

                  The target SQL Server instance or instances.

                  @@ -573,8 +573,8 @@
                  -SqlInstance

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -659,7 +659,7 @@
                  -Table
                  -RebuildOffline
                  -

                  Will set all the indexes to rebuild offline. +

                  Will set all the indexes to rebuild offline.
                  This option is also needed when the server version is below 2005.

                  @@ -688,8 +688,8 @@
                  -RebuildOffline
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  @@ -718,7 +718,7 @@
                  -EnableException
                  -Force
                  -

                  This will disable the check for enough disk space for the action to be successful. +

                  This will disable the check for enough disk space for the action to be successful.
                  Use this with caution!!

                  diff --git a/Invoke-DbaCycleErrorLog.html b/Invoke-DbaCycleErrorLog.html index 67813a92..a9af8e49 100644 --- a/Invoke-DbaCycleErrorLog.html +++ b/Invoke-DbaCycleErrorLog.html @@ -516,7 +516,7 @@
                  Example: 3

                  Cycles the current error log for both SQL Server instance and SQL Server Agent on SQL Server instance sql2016

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances.You must have sysadmin access and server version must be SQL Server version 2000 or higher.

                  +

                  The target SQL Server instance or instances.You must have sysadmin access and server version must be SQL Server version 2000 or higher.

                  @@ -545,8 +545,8 @@
                  -SqlInstance

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -575,7 +575,7 @@
                  -SqlCredential
                  -Type
                  -

                  The log to cycle. +

                  The log to cycle.
                  Accepts: instance or agent.

                  @@ -608,8 +608,8 @@
                  -Type
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Invoke-DbaDbClone.html b/Invoke-DbaDbClone.html index 2e26d64b..015e77dc 100644 --- a/Invoke-DbaDbClone.html +++ b/Invoke-DbaDbClone.html @@ -489,8 +489,8 @@

                  Synopsis

                  Description

                  Clones a database schema and statistics.

                  This can be useful for testing query performance without requiring all the space needed for the data in the database.

                  -

                  Read more: -- https://sqlperformance.com/2016/08/sql-statistics/expanding-dbcc-clonedatabase +

                  Read more:
                  +- https://sqlperformance.com/2016/08/sql-statistics/expanding-dbcc-clonedatabase
                  - https://support.microsoft.com/en-us/help/3177838/how-to-use-dbcc-clonedatabase-to-generate-a-schema-and-statistics-only

                  Thanks to Microsoft Tiger Team for the code and idea https://github.com/Microsoft/tigertoolbox/

                  Syntax

                  @@ -550,8 +550,8 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -748,8 +748,8 @@
                  -UpdateStatistics
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Invoke-DbaDbDataGenerator.html b/Invoke-DbaDbDataGenerator.html index dfe82b2b..499b1c67 100644 --- a/Invoke-DbaDbDataGenerator.html +++ b/Invoke-DbaDbDataGenerator.html @@ -518,7 +518,7 @@
                  Example: 1

                  Apply the data generation configuration from the file "sqldb1.db1.tables.json" to the db1 database on sqldb2. Prompt for confirmation for each table.

                  Required Parameters

                  -FilePath
                  -

                  Configuration file that contains the which tables and columns need to be masked

                  +

                  Configuration file that contains the which tables and columns need to be masked

                  @@ -575,8 +575,8 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -801,7 +801,7 @@
                  -ExcludeColumn
                  -MaxValue
                  -

                  Force a max length of strings instead of relying on datatype maxes. Note if a string datatype has a lower MaxValue, that will be used instead. +

                  Force a max length of strings instead of relying on datatype maxes. Note if a string datatype has a lower MaxValue, that will be used instead.
                  Useful for adhoc updates and testing, otherwise, the config file should be used.

                  @@ -886,8 +886,8 @@
                  -ModulusFactor
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Invoke-DbaDbDataMasking.html b/Invoke-DbaDbDataMasking.html index dddb2a8b..8c0a12ac 100644 --- a/Invoke-DbaDbDataMasking.html +++ b/Invoke-DbaDbDataMasking.html @@ -489,13 +489,13 @@

                  Synopsis

                  Description

                  TMasks data by using randomized values determined by a configuration file and a randomizer framework

                  It will use a configuration file that can be made manually or generated using New-DbaDbMaskingConfig

                  -

                  Note that the following column and data types are not currently supported: -Identity -ForeignKey -Computed -Hierarchyid -Geography -Geometry +

                  Note that the following column and data types are not currently supported:
                  +Identity
                  +ForeignKey
                  +Computed
                  +Hierarchyid
                  +Geography
                  +Geometry
                  Xml

                  Syntax

                  Invoke-DbaDbDataMasking
                  @@ -545,7 +545,7 @@ 
                  Example: 4

                  See what would happen if you the data masking configuration from the file "sqldb1.db1.tables.json" to the db1 database on sqldb2 and sqldb3. Do not prompt for confirmation.

                  Required Parameters

                  -FilePath
                  -

                  Configuration file that contains the which tables and columns need to be masked

                  +

                  Configuration file that contains the which tables and columns need to be masked

                  @@ -602,8 +602,8 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -828,7 +828,7 @@
                  -ExcludeColumn
                  -MaxValue
                  -

                  Force a max length of strings instead of relying on datatype maxes. Note if a string datatype has a lower MaxValue, that will be used instead. +

                  Force a max length of strings instead of relying on datatype maxes. Note if a string datatype has a lower MaxValue, that will be used instead.
                  Useful for adhoc updates and testing, otherwise, the config file should be used.

                  @@ -1025,7 +1025,7 @@
                  -DictionaryFilePath
                  -DictionaryExportPath
                  -

                  Export the dictionary to the given path. Naming convention will be [computername][instancename][database]_Dictionary.csv +

                  Export the dictionary to the given path. Naming convention will be [computername][instancename][database]_Dictionary.csv
                  Be careful with this feature, this export is the key to get the original values which is a security risk!

                  @@ -1054,8 +1054,8 @@
                  -DictionaryExportPath
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Invoke-DbaDbDbccCheckConstraint.html b/Invoke-DbaDbDbccCheckConstraint.html index 7a1ba5c5..a9da8ad7 100644 --- a/Invoke-DbaDbDbccCheckConstraint.html +++ b/Invoke-DbaDbDbccCheckConstraint.html @@ -488,9 +488,9 @@

                  Synopsis

                  Execution of Database Console Command DBCC CHECKCONSTRAINTS

                  Description

                  Executes the command DBCC CHECKCONSTRAINTS and returns results

                  -

                  Reports and corrects pages and row count inaccuracies in the catalog views. +

                  Reports and corrects pages and row count inaccuracies in the catalog views.
                  These inaccuracies may cause incorrect space usage reports returned by the sp_spaceused system stored procedure.

                  -

                  Read more: +

                  Read more:
                  - https://docs.microsoft.com/en-us/sql/t-sql/database-console-commands/dbcc-checkconstraints-transact-sql

                  Syntax

                  Invoke-DbaDbDbccCheckConstraint
                  @@ -538,7 +538,7 @@ 
                  Example: 6

                  Displays what will happen if command DBCC CHECKCONSTRAINTS is called against all databses on Sql1 and Sql2/sqlexpress

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances.

                  +

                  The target SQL Server instance or instances.

                  @@ -567,8 +567,8 @@
                  -SqlInstance

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -625,9 +625,9 @@
                  -Database
                  -Object
                  -

                  The table or constraint to be checked. -When table_name or table_id is specified, all enabled constraints on that table are checked. -When constraint_name or constraint_id is specified, only that constraint is checked. +

                  The table or constraint to be checked.
                  +When table_name or table_id is specified, all enabled constraints on that table are checked.
                  +When constraint_name or constraint_id is specified, only that constraint is checked.
                  If neither a table identifier nor a constraint identifier is specified, all enabled constraints on all tables in the current database are checked.

                  @@ -656,8 +656,8 @@
                  -Object
                  -AllConstraints
                  -

                  Checks all enabled and disabled constraints on the table if the table name is specified or if all tables are checked; -Otherwise, checks only the enabled constraint. +

                  Checks all enabled and disabled constraints on the table if the table name is specified or if all tables are checked;
                  +Otherwise, checks only the enabled constraint.
                  Has no effect when a constraint is specified

                  @@ -686,7 +686,7 @@
                  -AllConstraints
                  -AllErrorMessages
                  -

                  Returns all rows that violate constraints in the table that is checked. +

                  Returns all rows that violate constraints in the table that is checked.
                  The default is the first 200 rows.

                  @@ -743,8 +743,8 @@
                  -NoInformationalMessages
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Invoke-DbaDbDbccCleanTable.html b/Invoke-DbaDbDbccCleanTable.html index 5a609223..82cfa34e 100644 --- a/Invoke-DbaDbDbccCleanTable.html +++ b/Invoke-DbaDbDbccCleanTable.html @@ -489,7 +489,7 @@

                  Synopsis

                  Description

                  Executes the command DBCC CLEANTABLE against defined objects and returns results

                  Reclaims space from dropped variable-length columns in tables or indexed views

                  -

                  Read more: +

                  Read more:
                  - https://docs.microsoft.com/en-us/sql/t-sql/database-console-commands/dbcc-cleantable-transact-sql

                  Syntax

                  Invoke-DbaDbDbccCleanTable
                  @@ -530,7 +530,7 @@ 
                  Example: 4

                  Runs the command DBCC CLEANTABLE('DatabaseName', 'dbo.SomeTable', 5000) against all databses on Sql1 and Sql2/sqlexpress

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances.

                  +

                  The target SQL Server instance or instances.

                  @@ -559,8 +559,8 @@
                  -SqlInstance

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -645,7 +645,7 @@
                  -Object
                  -BatchSize
                  -

                  Is the number of rows processed per transaction. +

                  Is the number of rows processed per transaction.
                  If not specified, or if 0 is specified, the statement processes the whole table in one transaction.

                  @@ -702,8 +702,8 @@
                  -NoInformationalMessages
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Invoke-DbaDbDbccUpdateUsage.html b/Invoke-DbaDbDbccUpdateUsage.html index 64d4c027..de053b83 100644 --- a/Invoke-DbaDbDbccUpdateUsage.html +++ b/Invoke-DbaDbDbccUpdateUsage.html @@ -488,9 +488,9 @@

                  Synopsis

                  Execution of Database Console Command DBCC UPDATEUSAGE

                  Description

                  Executes the command DBCC UPDATEUSAGE and returns results

                  -

                  Reports and corrects pages and row count inaccuracies in the catalog views. +

                  Reports and corrects pages and row count inaccuracies in the catalog views.
                  These inaccuracies may cause incorrect space usage reports returned by the sp_spaceused system stored procedure.

                  -

                  Read more: +

                  Read more:
                  - https://docs.microsoft.com/en-us/sql/t-sql/database-console-commands/dbcc-updateusage-transact-sql

                  Syntax

                  Invoke-DbaDbDbccUpdateUsage
                  @@ -533,7 +533,7 @@ 
                  Example: 5

                  Displays what will happen if command DBCC UPDATEUSAGE is called against all databses on Sql1 and Sql2/sqlexpress

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances.

                  +

                  The target SQL Server instance or instances.

                  @@ -562,8 +562,8 @@
                  -SqlInstance

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -592,8 +592,8 @@
                  -SqlCredential
                  -Database
                  -

                  The database(s) to process. If unspecified, all databases will be processed. -The Name or Id of a database can be specified +

                  The database(s) to process. If unspecified, all databases will be processed.
                  +The Name or Id of a database can be specified
                  Database names must comply with the rules for identifiers.

                  @@ -622,9 +622,9 @@
                  -Database
                  -Table
                  -

                  The table or indexed view to process. -Table and view names must comply with the rules for identifiers -The Id of Table or View can be specified +

                  The table or indexed view to process.
                  +Table and view names must comply with the rules for identifiers
                  +The Id of Table or View can be specified
                  If not specified, all tables or indexed views will be processed

                  @@ -653,8 +653,8 @@
                  -Table
                  -Index
                  -

                  The Index to process. -The Id of Index can be specified +

                  The Index to process.
                  +The Id of Index can be specified
                  If not specified, all indexes for the specified table or view will be processed.

                  @@ -739,8 +739,8 @@
                  -CountRows
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Invoke-DbaDbDecryptObject.html b/Invoke-DbaDbDecryptObject.html index 346fce6b..7a68947b 100644 --- a/Invoke-DbaDbDecryptObject.html +++ b/Invoke-DbaDbDecryptObject.html @@ -487,19 +487,19 @@

                  Invoke-DbaDbDecryptObject

                  Synopsis

                  Returns the decrypted version of an object

                  Description

                  -

                  SQL Server provides an option to encrypt the code used in various types of objects. -If the original code is no longer available for an encrypted object it won't be possible to view the definition. +

                  SQL Server provides an option to encrypt the code used in various types of objects.
                  +If the original code is no longer available for an encrypted object it won't be possible to view the definition.
                  With this command the dedicated admin connection (DAC) can be used to search for the object and decrypt it.

                  -

                  The command will output the results to the console by default. +

                  The command will output the results to the console by default.
                  There is an option to export all the results to a folder creating .sql files.

                  -

                  To connect to a remote SQL instance the remote dedicated administrator connection option will need to be configured. -The binary versions of the objects can only be retrieved using a DAC connection. -You can check the remote DAC connection with: -'Get-DbaSpConfigure -SqlInstance [yourinstance] -ConfigName RemoteDacConnectionsEnabled' +

                  To connect to a remote SQL instance the remote dedicated administrator connection option will need to be configured.
                  +The binary versions of the objects can only be retrieved using a DAC connection.
                  +You can check the remote DAC connection with:
                  +'Get-DbaSpConfigure -SqlInstance [yourinstance] -ConfigName RemoteDacConnectionsEnabled'
                  It should say 1 in the ConfiguredValue.

                  The local DAC connection is enabled by default.

                  -

                  To change the configurations you can use the Set-DbaSpConfigure command: -'Set-DbaSpConfigure -SqlInstance [yourinstance] -ConfigName RemoteDacConnectionsEnabled -Value 1' +

                  To change the configurations you can use the Set-DbaSpConfigure command:
                  +'Set-DbaSpConfigure -SqlInstance [yourinstance] -ConfigName RemoteDacConnectionsEnabled -Value 1'
                  In some cases you may need to reboot the instance.

                  Syntax

                  Invoke-DbaDbDecryptObject
                  @@ -538,7 +538,7 @@ 
                  Example: 5

                  Decrypt objects "Function1" and "Function2" and output the data to the user using a pipeline for the instance.

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance

                  +

                  The target SQL Server instance

                  @@ -566,7 +566,7 @@
                  -SqlInstance
                  -Database
                  -

                  Database to search for the object.

                  +

                  Database to search for the object.

                  @@ -595,8 +595,8 @@
                  -Database

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -685,7 +685,7 @@
                  -EncodingType
                  -ExportDestination
                  -

                  Location to output the decrypted object definitions. +

                  Location to output the decrypted object definitions.
                  The destination will use the instance name, database name and object type i.e.: C:\temp\decrypt\SQLDB1\DB1\StoredProcedure

                  @@ -714,8 +714,8 @@
                  -ExportDestination
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Invoke-DbaDbLogShipRecovery.html b/Invoke-DbaDbLogShipRecovery.html index 1d5defe4..e1444a86 100644 --- a/Invoke-DbaDbLogShipRecovery.html +++ b/Invoke-DbaDbLogShipRecovery.html @@ -487,14 +487,14 @@

                  Invoke-DbaDbLogShipRecovery

                  Synopsis

                  Invoke-DbaDbLogShipRecovery recovers log shipped databases to a normal state to act upon a migration or disaster.

                  Description

                  -

                  By default all the databases for a particular instance are recovered. +

                  By default all the databases for a particular instance are recovered.
                  If the database is in the right state, either standby or recovering, the process will try to recover the database.

                  -

                  At first the function will check if the backup source directory can still be reached. -If so it will look up the last transaction log backup for the database. If that backup file is not the last copied file the log shipping copy job will be started. -If the directory cannot be reached for the function will continue to the restoring process. +

                  At first the function will check if the backup source directory can still be reached.
                  +If so it will look up the last transaction log backup for the database. If that backup file is not the last copied file the log shipping copy job will be started.
                  +If the directory cannot be reached for the function will continue to the restoring process.
                  After the copy job check is performed the job is disabled to prevent the job to run.

                  -

                  For the restore the log shipping status is checked in the msdb database. -If the last restored file is not the same as the last file name found, the log shipping restore job will be executed. +

                  For the restore the log shipping status is checked in the msdb database.
                  +If the last restored file is not the same as the last file name found, the log shipping restore job will be executed.
                  After the restore job check is performed the job is disabled to prevent the job to run

                  The last part is to set the database online by restoring the databases with recovery

                  Syntax

                  @@ -565,7 +565,7 @@
                  -SqlInstance
                  -Database
                  -

                  Database to perform the restore for. This value can also be piped enabling multiple databases to be recovered. +

                  Database to perform the restore for. This value can also be piped enabling multiple databases to be recovered.
                  If this value is not supplied all databases will be recovered.

                  @@ -594,8 +594,8 @@
                  -Database
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -624,7 +624,7 @@
                  -SqlCredential
                  -NoRecovery
                  -

                  Allows you to choose to not restore the database to a functional state (Normal) in the final steps of the process. +

                  Allows you to choose to not restore the database to a functional state (Normal) in the final steps of the process.
                  By default the database is restored to a functional state (Normal).

                  @@ -653,8 +653,8 @@
                  -NoRecovery
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  @@ -739,7 +739,7 @@
                  -InputObject
                  -Delay
                  -

                  Set the delay in seconds to wait for the copy and/or restore jobs. +

                  Set the delay in seconds to wait for the copy and/or restore jobs.
                  By default the delay is 5 seconds

                  diff --git a/Invoke-DbaDbLogShipping.html b/Invoke-DbaDbLogShipping.html index 278355f0..89197228 100644 --- a/Invoke-DbaDbLogShipping.html +++ b/Invoke-DbaDbLogShipping.html @@ -488,7 +488,7 @@

                  Synopsis

                  Invoke-DbaDbLogShipping sets up log shipping for one or more databases

                  Description

                  Invoke-DbaDbLogShipping helps to easily set up log shipping for one or more databases.

                  -

                  This function will make a lot of decisions for you assuming you want default values like a daily interval for the schedules with a 15 minute interval on the day. +

                  This function will make a lot of decisions for you assuming you want default values like a daily interval for the schedules with a 15 minute interval on the day.
                  There are some settings that cannot be made by the function and they need to be prepared before the function is executed.

                  The following settings need to be made before log shipping can be initiated:

                    @@ -496,15 +496,15 @@

                    Description

                  • Copy destination (the folder and the privileges)
                    -
                  • Privileges -Make sure your agent service on both the primary and the secondary instance is an Active Directory account. +
                  • Privileges
                    +Make sure your agent service on both the primary and the secondary instance is an Active Directory account.
                    Also have the credentials ready to set the folder permissions
                  -

                  ** Network share +

                  ** Network share
                  The backup destination needs to be shared and have the share privileges of FULL CONTROL to Everyone.

                  -

                  ** NTFS permissions -The backup destination must have at least read/write permissions for the primary instance agent account. -The backup destination must have at least read permissions for the secondary instance agent account. +

                  ** NTFS permissions
                  +The backup destination must have at least read/write permissions for the primary instance agent account.
                  +The backup destination must have at least read permissions for the secondary instance agent account.
                  The copy destination must have at least read/write permission for the secondary instance agent account.

                  Syntax

                  Invoke-DbaDbLogShipping
                  @@ -639,8 +639,8 @@ 
                  Example: 2
                  "logshipping" i.e. "D:\SQLBackup\Logshiping".

                  Required Parameters

                  -SourceSqlInstance
                  -

                  Source SQL Server instance which contains the databases to be log shipped. -You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                  +

                  Source SQL Server instance which contains the databases to be log shipped.
                  +You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                  @@ -668,8 +668,8 @@
                  -SourceSqlInstance
                  -DestinationSqlInstance
                  -

                  Destination SQL Server instance which contains the databases to be log shipped. -You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                  +

                  Destination SQL Server instance which contains the databases to be log shipped.
                  +You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                  @@ -697,7 +697,7 @@
                  -DestinationSqlInstance
                  -Database
                  -

                  Database to set up log shipping for.

                  +

                  Database to set up log shipping for.

                  @@ -725,8 +725,8 @@
                  -Database
                  -SharedPath
                  -

                  The backup unc path to place the backup files. This is the root directory. -A directory with the name of the database will be created in this path.

                  +

                  The backup unc path to place the backup files. This is the root directory.
                  +A directory with the name of the database will be created in this path.

                  @@ -755,8 +755,8 @@
                  -SharedPath

                  Optional Parameters

                  -SourceSqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -785,8 +785,8 @@
                  -SourceSqlCredential
                  -SourceCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -815,8 +815,8 @@
                  -SourceCredential
                  -DestinationSqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -845,8 +845,8 @@
                  -DestinationSqlCredential
                  -DestinationCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -903,8 +903,8 @@
                  -LocalPath
                  -BackupJob
                  -

                  Name of the backup that will be created in the SQL Server agent. -The parameter works as a prefix where the name of the database will be added to the backup job name. +

                  Name of the backup that will be created in the SQL Server agent.
                  +The parameter works as a prefix where the name of the database will be added to the backup job name.
                  The default is "LSBackup_[databasename]"

                  @@ -961,8 +961,8 @@
                  -BackupRetention
                  -BackupSchedule
                  -

                  Name of the backup schedule created for the backup job. -The parameter works as a prefix where the name of the database will be added to the backup job schedule name. +

                  Name of the backup schedule created for the backup job.
                  +The parameter works as a prefix where the name of the database will be added to the backup job schedule name.
                  Default is "LSBackupSchedule_[databasename]"

                  @@ -991,7 +991,7 @@
                  -BackupSchedule
                  -BackupScheduleDisabled
                  -

                  Parameter to set the backup schedule to disabled upon creation. +

                  Parameter to set the backup schedule to disabled upon creation.
                  By default the schedule is enabled.

                  @@ -1020,7 +1020,7 @@
                  -BackupScheduleDisabled
                  -BackupScheduleFrequencyType
                  -

                  A value indicating when a job is to be executed. +

                  A value indicating when a job is to be executed.
                  Allowed values are "Daily", "AgentStart", "IdleComputer"

                  @@ -1081,7 +1081,7 @@
                  -BackupScheduleFrequencyInterval
                  -BackupScheduleFrequencySubdayType
                  -

                  Specifies the units for the sub-day FrequencyInterval. +

                  Specifies the units for the sub-day FrequencyInterval.
                  Allowed values are "Time", "Seconds", "Minutes", "Hours"

                  @@ -1258,8 +1258,8 @@
                  -BackupScheduleEndDate
                  -BackupScheduleStartTime
                  -

                  The time on any day to begin execution of a job. Format HHMMSS / 24 hour clock. -Example: '010000' for 01:00:00 AM. +

                  The time on any day to begin execution of a job. Format HHMMSS / 24 hour clock.
                  +Example: '010000' for 01:00:00 AM.
                  Example: '140000' for 02:00:00 PM.

                  @@ -1288,8 +1288,8 @@
                  -BackupScheduleStartTime
                  -BackupScheduleEndTime
                  -

                  The time on any day to end execution of a job. Format HHMMSS / 24 hour clock. -Example: '010000' for 01:00:00 AM. +

                  The time on any day to end execution of a job. Format HHMMSS / 24 hour clock.
                  +Example: '010000' for 01:00:00 AM.
                  Example: '140000' for 02:00:00 PM.

                  @@ -1318,7 +1318,7 @@
                  -BackupScheduleEndTime
                  -BackupThreshold
                  -

                  Is the length of time, in minutes, after the last backup before a threshold alert error is raised. +

                  Is the length of time, in minutes, after the last backup before a threshold alert error is raised.
                  The default is 60.

                  @@ -1375,7 +1375,7 @@
                  -CompressBackup
                  -CopyDestinationFolder
                  -

                  The path to copy the transaction log backup files to. This is the root directory. +

                  The path to copy the transaction log backup files to. This is the root directory.
                  A directory with the name of the database will be created in this path.

                  @@ -1404,8 +1404,8 @@
                  -CopyDestinationFolder
                  -CopyJob
                  -

                  Name of the copy job that will be created in the SQL Server agent. -The parameter works as a prefix where the name of the database will be added to the copy job name. +

                  Name of the copy job that will be created in the SQL Server agent.
                  +The parameter works as a prefix where the name of the database will be added to the copy job name.
                  The default is "LSBackup_[databasename]"

                  @@ -1462,8 +1462,8 @@
                  -CopyRetention
                  -CopySchedule
                  -

                  Name of the backup schedule created for the copy job. -The parameter works as a prefix where the name of the database will be added to the copy job schedule name. +

                  Name of the backup schedule created for the copy job.
                  +The parameter works as a prefix where the name of the database will be added to the copy job schedule name.
                  Default is "LSCopy_[DestinationServerName]_[DatabaseName]"

                  @@ -1492,7 +1492,7 @@
                  -CopySchedule
                  -CopyScheduleDisabled
                  -

                  Parameter to set the copy schedule to disabled upon creation. +

                  Parameter to set the copy schedule to disabled upon creation.
                  By default the schedule is enabled.

                  @@ -1521,7 +1521,7 @@
                  -CopyScheduleDisabled
                  -CopyScheduleFrequencyType
                  -

                  A value indicating when a job is to be executed. +

                  A value indicating when a job is to be executed.
                  Allowed values are "Daily", "AgentStart", "IdleComputer"

                  @@ -1582,7 +1582,7 @@
                  -CopyScheduleFrequencyInterval
                  -CopyScheduleFrequencySubdayType
                  -

                  Specifies the units for the subday FrequencyInterval. +

                  Specifies the units for the subday FrequencyInterval.
                  Allowed values are "Time", "Seconds", "Minutes", "Hours"

                  @@ -1759,8 +1759,8 @@
                  -CopyScheduleEndDate
                  -CopyScheduleStartTime
                  -

                  The time on any day to begin execution of a job. Format HHMMSS / 24 hour clock. -Example: '010000' for 01:00:00 AM. +

                  The time on any day to begin execution of a job. Format HHMMSS / 24 hour clock.
                  +Example: '010000' for 01:00:00 AM.
                  Example: '140000' for 02:00:00 PM.

                  @@ -1789,8 +1789,8 @@
                  -CopyScheduleStartTime
                  -CopyScheduleEndTime
                  -

                  The time on any day to end execution of a job. Format HHMMSS / 24 hour clock. -Example: '010000' for 01:00:00 AM. +

                  The time on any day to end execution of a job. Format HHMMSS / 24 hour clock.
                  +Example: '010000' for 01:00:00 AM.
                  Example: '140000' for 02:00:00 PM.

                  @@ -1875,7 +1875,7 @@
                  -FullBackupPath
                  -GenerateFullBackup
                  -

                  If the database is not initialized on the secondary instance it can be done by creating a new full backup and +

                  If the database is not initialized on the secondary instance it can be done by creating a new full backup and
                  restore it for you.

                  @@ -1904,7 +1904,7 @@
                  -GenerateFullBackup
                  -HistoryRetention
                  -

                  Is the length of time in minutes in which the history is retained. +

                  Is the length of time in minutes in which the history is retained.
                  The default value is 14420

                  @@ -1933,7 +1933,7 @@
                  -HistoryRetention
                  -NoRecovery
                  -

                  If this parameter is set the database will be in recovery mode. The database will not be readable. +

                  If this parameter is set the database will be in recovery mode. The database will not be readable.
                  This setting is default.

                  @@ -1962,7 +1962,7 @@
                  -NoRecovery
                  -NoInitialization
                  -

                  If this parameter is set the secondary database will not be initialized. +

                  If this parameter is set the secondary database will not be initialized.
                  The database needs to be on the secondary instance in recovery mode.

                  @@ -1991,7 +1991,7 @@
                  -NoInitialization
                  -PrimaryMonitorServer
                  -

                  Is the name of the monitor server for the primary server. +

                  Is the name of the monitor server for the primary server.
                  Defaults to monitor on the instance provided via SourceSqlInstance param.

                  @@ -2020,7 +2020,7 @@
                  -PrimaryMonitorServer
                  -PrimaryMonitorCredential
                  -

                  Allows you to login to enter a secure credential. Only needs to be used when the PrimaryMonitorServerSecurityMode is 0 or "sqlserver" +

                  Allows you to login to enter a secure credential. Only needs to be used when the PrimaryMonitorServerSecurityMode is 0 or "sqlserver"
                  To use: $scred = Get-Credential, then pass $scred object to the -PrimaryMonitorCredential parameter.

                  @@ -2049,7 +2049,7 @@
                  -PrimaryMonitorCredential
                  -PrimaryMonitorServerSecurityMode
                  -

                  The security mode used to connect to the monitor server for the primary server. Allowed values are 0, "sqlserver", 1, "windows" +

                  The security mode used to connect to the monitor server for the primary server. Allowed values are 0, "sqlserver", 1, "windows"
                  The default is 1 or Windows.

                  @@ -2110,8 +2110,8 @@
                  -PrimaryThresholdAlertEnabled
                  -RestoreDataFolder
                  -

                  Folder to be used to restore the database data files. Only used when parameter GenerateFullBackup or UseExistingFullBackup are set. -If the parameter is not set the default data folder of the secondary instance will be used. +

                  Folder to be used to restore the database data files. Only used when parameter GenerateFullBackup or UseExistingFullBackup are set.
                  +If the parameter is not set the default data folder of the secondary instance will be used.
                  If the folder is set but doesn't exist we will try to create the folder.

                  @@ -2140,8 +2140,8 @@
                  -RestoreDataFolder
                  -RestoreLogFolder
                  -

                  Folder to be used to restore the database log files. Only used when parameter GenerateFullBackup or UseExistingFullBackup are set. -If the parameter is not set the default transaction log folder of the secondary instance will be used. +

                  Folder to be used to restore the database log files. Only used when parameter GenerateFullBackup or UseExistingFullBackup are set.
                  +If the parameter is not set the default transaction log folder of the secondary instance will be used.
                  If the folder is set but doesn't exist we will try to create the folder.

                  @@ -2170,7 +2170,7 @@
                  -RestoreLogFolder
                  -RestoreDelay
                  -

                  In case a delay needs to be set for the restore. +

                  In case a delay needs to be set for the restore.
                  The default is 0.

                  @@ -2199,7 +2199,7 @@
                  -RestoreDelay
                  -RestoreAlertThreshold
                  -

                  The amount of minutes after which an alert will be raised is no restore has taken place. +

                  The amount of minutes after which an alert will be raised is no restore has taken place.
                  The default is 45 minutes.

                  @@ -2228,8 +2228,8 @@
                  -RestoreAlertThreshold
                  -RestoreJob
                  -

                  Name of the restore job that will be created in the SQL Server agent. -The parameter works as a prefix where the name of the database will be added to the restore job name. +

                  Name of the restore job that will be created in the SQL Server agent.
                  +The parameter works as a prefix where the name of the database will be added to the restore job name.
                  The default is "LSRestore_[databasename]"

                  @@ -2286,8 +2286,8 @@
                  -RestoreRetention
                  -RestoreSchedule
                  -

                  Name of the backup schedule created for the restore job. -The parameter works as a prefix where the name of the database will be added to the restore job schedule name. +

                  Name of the backup schedule created for the restore job.
                  +The parameter works as a prefix where the name of the database will be added to the restore job schedule name.
                  Default is "LSRestore_[DestinationServerName]_[DatabaseName]"

                  @@ -2316,7 +2316,7 @@
                  -RestoreSchedule
                  -RestoreScheduleDisabled
                  -

                  Parameter to set the restore schedule to disabled upon creation. +

                  Parameter to set the restore schedule to disabled upon creation.
                  By default the schedule is enabled.

                  @@ -2345,7 +2345,7 @@
                  -RestoreScheduleDisabled
                  -RestoreScheduleFrequencyType
                  -

                  A value indicating when a job is to be executed. +

                  A value indicating when a job is to be executed.
                  Allowed values are "Daily", "AgentStart", "IdleComputer"

                  @@ -2406,7 +2406,7 @@
                  -RestoreScheduleFrequencyInterval
                  -RestoreScheduleFrequencySubdayType
                  -

                  Specifies the units for the subday FrequencyInterval. +

                  Specifies the units for the subday FrequencyInterval.
                  Allowed values are "Time", "Seconds", "Minutes", "Hours"

                  @@ -2583,8 +2583,8 @@
                  -RestoreScheduleEndDate
                  -RestoreScheduleStartTime
                  -

                  The time on any day to begin execution of a job. Format HHMMSS / 24 hour clock. -Example: '010000' for 01:00:00 AM. +

                  The time on any day to begin execution of a job. Format HHMMSS / 24 hour clock.
                  +Example: '010000' for 01:00:00 AM.
                  Example: '140000' for 02:00:00 PM.

                  @@ -2613,8 +2613,8 @@
                  -RestoreScheduleStartTime
                  -RestoreScheduleEndTime
                  -

                  The time on any day to end execution of a job. Format HHMMSS / 24 hour clock. -Example: '010000' for 01:00:00 AM. +

                  The time on any day to end execution of a job. Format HHMMSS / 24 hour clock.
                  +Example: '010000' for 01:00:00 AM.
                  Example: '140000' for 02:00:00 PM.

                  @@ -2643,7 +2643,7 @@
                  -RestoreScheduleEndTime
                  -RestoreThreshold
                  -

                  The number of minutes allowed to elapse between restore operations before an alert is generated. +

                  The number of minutes allowed to elapse between restore operations before an alert is generated.
                  The default value = 45

                  @@ -2728,7 +2728,7 @@
                  -SecondaryDatabaseSuffix
                  -SecondaryMonitorServer
                  -

                  Is the name of the monitor server for the secondary server. +

                  Is the name of the monitor server for the secondary server.
                  Defaults to monitor on the instance provided via DestinationSqlInstance param.

                  @@ -2757,7 +2757,7 @@
                  -SecondaryMonitorServer
                  -SecondaryMonitorCredential
                  -

                  Allows you to login to enter a secure credential. Only needs to be used when the SecondaryMonitorServerSecurityMode is 0 or "sqlserver" +

                  Allows you to login to enter a secure credential. Only needs to be used when the SecondaryMonitorServerSecurityMode is 0 or "sqlserver"
                  To use: $scred = Get-Credential, then pass $scred object to the -SecondaryMonitorCredential parameter.

                  @@ -2786,7 +2786,7 @@
                  -SecondaryMonitorCredential
                  -SecondaryMonitorServerSecurityMode
                  -

                  The security mode used to connect to the monitor server for the secondary server. Allowed values are 0, "sqlserver", 1, "windows" +

                  The security mode used to connect to the monitor server for the secondary server. Allowed values are 0, "sqlserver", 1, "windows"
                  The default is 1 or Windows.

                  @@ -2847,7 +2847,7 @@
                  -SecondaryThresholdAlertEnabled
                  -Standby
                  -

                  If this parameter is set the database will be set to standby mode making the database readable. +

                  If this parameter is set the database will be set to standby mode making the database readable.
                  If not set the database will be in recovery mode.

                  @@ -2904,7 +2904,7 @@
                  -StandbyDirectory
                  -UseExistingFullBackup
                  -

                  If the database is not initialized on the secondary instance it can be done by selecting an existing full backup +

                  If the database is not initialized on the secondary instance it can be done by selecting an existing full backup
                  and restore it for you.

                  @@ -2961,7 +2961,7 @@
                  -UseBackupFolder
                  -Force
                  -

                  The force parameter will ignore some errors in the parameters and assume defaults. +

                  The force parameter will ignore some errors in the parameters and assume defaults.
                  It will also remove the any present schedules with the same name for the specific job.

                  diff --git a/Invoke-DbaDbMirrorFailover.html b/Invoke-DbaDbMirrorFailover.html index 1efed6c9..403fb405 100644 --- a/Invoke-DbaDbMirrorFailover.html +++ b/Invoke-DbaDbMirrorFailover.html @@ -543,8 +543,8 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -657,8 +657,8 @@
                  -Force
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Invoke-DbaDbMirroring.html b/Invoke-DbaDbMirroring.html index ff96379b..260e85a0 100644 --- a/Invoke-DbaDbMirroring.html +++ b/Invoke-DbaDbMirroring.html @@ -574,7 +574,7 @@
                  Example: 4

                  Mirrors pubs on sql2017a to sql2017b and uses the last full and logs from sql2017a to seed. Doesn't prompt for confirmation.

                  Required Parameters

                  -Mirror
                  -

                  SQL Server name or SMO object representing the mirror SQL Server.

                  +

                  SQL Server name or SMO object representing the mirror SQL Server.

                  @@ -631,8 +631,8 @@
                  -Primary
                  -PrimarySqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -661,8 +661,8 @@
                  -PrimarySqlCredential
                  -MirrorSqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -719,8 +719,8 @@
                  -Witness
                  -WitnessSqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -777,9 +777,9 @@
                  -Database
                  -EndpointEncryption
                  -

                  Used to specify the state of encryption on the endpoint. Defaults to required. -Disabled -Required +

                  Used to specify the state of encryption on the endpoint. Defaults to required.
                  +Disabled
                  +Required
                  Supported

                  @@ -812,12 +812,12 @@
                  -EndpointEncryption
                  -EncryptionAlgorithm
                  -

                  Specifies an encryption algorithm used on an endpoint. Defaults to Aes. -Options are: -AesRC4 -Aes -None -RC4 +

                  Specifies an encryption algorithm used on an endpoint. Defaults to Aes.
                  +Options are:
                  +AesRC4
                  +Aes
                  +None
                  +RC4
                  RC4Aes

                  @@ -850,8 +850,8 @@
                  -EncryptionAlgorithm
                  -SharedPath
                  -

                  The network share where the backups will be backed up and restored from. -Each SQL Server service account must have access to this share. +

                  The network share where the backups will be backed up and restored from.
                  +Each SQL Server service account must have access to this share.
                  NOTE: If a backup / restore is performed, the backups will be left in tact on the network share.

                  @@ -964,8 +964,8 @@
                  -Force
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Invoke-DbaDbPiiScan.html b/Invoke-DbaDbPiiScan.html index dcff7002..056581d9 100644 --- a/Invoke-DbaDbPiiScan.html +++ b/Invoke-DbaDbPiiScan.html @@ -487,9 +487,9 @@

                  Invoke-DbaDbPiiScan

                  Synopsis

                  Command to return any columns that could potentially contain PII (Personal Identifiable Information)

                  Description

                  -

                  This command will go through the tables in your database and assess each column. -It will first check the columns names if it was named in such a way that it would indicate PII. -The next thing that it will do is pattern recognition by looking into the data from the table. +

                  This command will go through the tables in your database and assess each column.
                  +It will first check the columns names if it was named in such a way that it would indicate PII.
                  +The next thing that it will do is pattern recognition by looking into the data from the table.
                  Custom scan definitions can be specified using the formats seen in \bin\datamasking\pii-knownnames.json and \bin\datamasking\pii-patterns.json.

                  Syntax

                  Invoke-DbaDbPiiScan
                  @@ -568,8 +568,8 @@ 
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -934,8 +934,8 @@
                  -ExcludeDefaultPattern
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Invoke-DbaDbShrink.html b/Invoke-DbaDbShrink.html index 2834f661..3e4404b1 100644 --- a/Invoke-DbaDbShrink.html +++ b/Invoke-DbaDbShrink.html @@ -494,7 +494,7 @@

                  Synopsis

                  Description

                  Shrinks all files in a database. Databases should be shrunk only when completely necessary.

                  Many awesome SQL people have written about why you should not shrink your data files. Paul Randal and Kalen Delaney wrote great posts about this topic:

                  -

                  http://www.sqlskills.com/blogs/paul/why-you-should-not-shrink-your-data-files +

                  http://www.sqlskills.com/blogs/paul/why-you-should-not-shrink-your-data-files
                  https://www.itprotoday.com/sql-server/shrinking-data-files

                  However, there are some cases where a database will need to be shrunk. In the event that you must shrink your database:

                    @@ -543,7 +543,7 @@
                    Example: 4

                    Shrinks all user databases on SQL2012 (not ideal for production)

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances. Defaults to the default instance on localhost.

                    +

                    The target SQL Server instance or instances. Defaults to the default instance on localhost.

                  @@ -572,8 +572,8 @@
                  -SqlInstance

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance..

                  @@ -714,14 +714,14 @@
                  -PercentFreeSpace
                  -ShrinkMethod
                  -

                  Specifies the method that is used to shrink the database -Default -Data in pages located at the end of a file is moved to pages earlier in the file. Files are truncated to reflect allocated space. -EmptyFile -Migrates all of the data from the referenced file to other files in the same filegroup. (DataFile and LogFile objects only). -NoTruncate -Data in pages located at the end of a file is moved to pages earlier in the file. -TruncateOnly +

                  Specifies the method that is used to shrink the database
                  +Default
                  +Data in pages located at the end of a file is moved to pages earlier in the file. Files are truncated to reflect allocated space.
                  +EmptyFile
                  +Migrates all of the data from the referenced file to other files in the same filegroup. (DataFile and LogFile objects only).
                  +NoTruncate
                  +Data in pages located at the end of a file is moved to pages earlier in the file.
                  +TruncateOnly
                  Data distribution is not affected. Files are truncated to reflect allocated space, recovering free space at the end of any file.

                  @@ -754,9 +754,9 @@
                  -ShrinkMethod
                  -FileType
                  -

                  Specifies the files types that will be shrunk -All - All Data and Log files are shrunk, using database shrink (Default) -Data - Just the Data files are shrunk using file shrink +

                  Specifies the files types that will be shrunk
                  +All - All Data and Log files are shrunk, using database shrink (Default)
                  +Data - Just the Data files are shrunk using file shrink
                  Log - Just the Log files are shrunk using file shrink

                  @@ -789,8 +789,8 @@
                  -FileType
                  -StepSize
                  -

                  Measured in bits - but no worries! PowerShell has a very cool way of formatting bits. Just specify something like: 1MB or 10GB. See the examples for more information. -If specified, this will chunk a larger shrink operation into multiple smaller shrinks. +

                  Measured in bits - but no worries! PowerShell has a very cool way of formatting bits. Just specify something like: 1MB or 10GB. See the examples for more information.
                  +If specified, this will chunk a larger shrink operation into multiple smaller shrinks.
                  If shrinking a file by a large amount there are benefits of doing multiple smaller chunks.

                  @@ -903,8 +903,8 @@
                  -ExcludeUpdateUsage
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  @@ -961,9 +961,9 @@
                  -WhatIf
                  -Confirm
                  -

                  Prompts for confirmation of every step. For example: -Are you sure you want to perform this action? -Performing the operation "Shrink database" on target "pubs on SQL2016\VNEXT". +

                  Prompts for confirmation of every step. For example:
                  +Are you sure you want to perform this action?
                  +Performing the operation "Shrink database" on target "pubs on SQL2016\VNEXT".
                  [Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"):

                  diff --git a/Invoke-DbaDbTransfer.html b/Invoke-DbaDbTransfer.html index 7dc695f9..ebc0d531 100644 --- a/Invoke-DbaDbTransfer.html +++ b/Invoke-DbaDbTransfer.html @@ -487,10 +487,10 @@

                  Invoke-DbaDbTransfer

                  Synopsis

                  Invokes database transfer using a transfer object that clones objects from one database to another.

                  Description

                  -

                  Invokes database transfer by either accepting an object generated by New-DbaDbTransfer, or generates such object -on the fly when provided with enough parameters. The transfer would follow the rules defined in the transfer object; +

                  Invokes database transfer by either accepting an object generated by New-DbaDbTransfer, or generates such object
                  +on the fly when provided with enough parameters. The transfer would follow the rules defined in the transfer object;
                  the list of such rules could be displayed when listing members of the transfer object:

                  -

                  $transfer = New-DbaDbTransfer -SqlInstance MyInstance -Database MyDB +

                  $transfer = New-DbaDbTransfer -SqlInstance MyInstance -Database MyDB
                  $transfer | Get-Member

                  Syntax

                  Invoke-DbaDbTransfer
                  @@ -570,8 +570,8 @@ 
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -628,7 +628,7 @@
                  -DestinationSqlInstance
                  -DestinationSqlCredential
                  -

                  Login to the source instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). +

                  Login to the source instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  Only SQL authentication is supported. When not specified, uses Trusted Authentication.

                  @@ -853,35 +853,35 @@
                  -CopyAllObjects
                  -CopyAll
                  -

                  Object types to be transferred from a database. Allowed values: -FullTextCatalogs -FullTextStopLists -SearchPropertyLists -Tables -Views -StoredProcedures -UserDefinedFunctions -UserDefinedDataTypes -UserDefinedTableTypes -PlanGuides -Rules -Defaults -Users -Roles -PartitionSchemes -PartitionFunctions -XmlSchemaCollections -SqlAssemblies -UserDefinedAggregates -UserDefinedTypes -Schemas -Synonyms -Sequences -DatabaseTriggers -DatabaseScopedCredentials -ExternalFileFormats -ExternalDataSources -Logins +

                  Object types to be transferred from a database. Allowed values:
                  +FullTextCatalogs
                  +FullTextStopLists
                  +SearchPropertyLists
                  +Tables
                  +Views
                  +StoredProcedures
                  +UserDefinedFunctions
                  +UserDefinedDataTypes
                  +UserDefinedTableTypes
                  +PlanGuides
                  +Rules
                  +Defaults
                  +Users
                  +Roles
                  +PartitionSchemes
                  +PartitionFunctions
                  +XmlSchemaCollections
                  +SqlAssemblies
                  +UserDefinedAggregates
                  +UserDefinedTypes
                  +Schemas
                  +Synonyms
                  +Sequences
                  +DatabaseTriggers
                  +DatabaseScopedCredentials
                  +ExternalFileFormats
                  +ExternalDataSources
                  +Logins
                  ExternalLibraries

                  @@ -998,8 +998,8 @@
                  -ScriptOnly
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Invoke-DbaDbUpgrade.html b/Invoke-DbaDbUpgrade.html index 849ad5aa..5818aefd 100644 --- a/Invoke-DbaDbUpgrade.html +++ b/Invoke-DbaDbUpgrade.html @@ -563,8 +563,8 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  SqlLogin to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  SqlLogin to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance..

                  @@ -593,7 +593,7 @@
                  -SqlCredential
                  -Database
                  -

                  The database(s) to process - this list is autopopulated from the server. If unspecified, you have to use -ExcludeDatabase to exclude some user databases or -AllUserDatabases to process all user +

                  The database(s) to process - this list is autopopulated from the server. If unspecified, you have to use -ExcludeDatabase to exclude some user databases or -AllUserDatabases to process all user
                  databases.

                  @@ -846,8 +846,8 @@
                  -InputObject
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  @@ -904,9 +904,9 @@
                  -WhatIf
                  -Confirm
                  -

                  Prompts for confirmation of every step. For example: -Are you sure you want to perform this action? -Performing the operation "Update database" on target "pubs on SQL2016\VNEXT". +

                  Prompts for confirmation of every step. For example:
                  +Are you sure you want to perform this action?
                  +Performing the operation "Update database" on target "pubs on SQL2016\VNEXT".
                  [Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"):

                  diff --git a/Invoke-DbaDbccDropCleanBuffer.html b/Invoke-DbaDbccDropCleanBuffer.html index 35241843..8d95ca42 100644 --- a/Invoke-DbaDbccDropCleanBuffer.html +++ b/Invoke-DbaDbccDropCleanBuffer.html @@ -489,7 +489,7 @@

                  Synopsis

                  Description

                  Allows execution of Database Console Command DBCC DROPCLEANBUFFERS

                  Removes all clean buffers from the buffer pool, and columnstore objects from the columnstore object pool.

                  -

                  Read more: +

                  Read more:
                  - https://docs.microsoft.com/en-us/sql/t-sql/database-console-commands/dbcc-dropcleanbuffers-transact-sql

                  Syntax

                  Invoke-DbaDbccDropCleanBuffer
                  @@ -524,7 +524,7 @@ 
                  Example: 4

                  Connects using sqladmin credential and executes command DBCC DROPCLEANBUFFERS for instance Server1

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances.

                  +

                  The target SQL Server instance or instances.

                  @@ -553,8 +553,8 @@
                  -SqlInstance

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -611,8 +611,8 @@
                  -NoInformationalMessages
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Invoke-DbaDbccFreeCache.html b/Invoke-DbaDbccFreeCache.html index 861c3737..93390334 100644 --- a/Invoke-DbaDbccFreeCache.html +++ b/Invoke-DbaDbccFreeCache.html @@ -488,13 +488,13 @@

                  Synopsis

                  Execution of Database Console Commands that clear Server level Memory caches

                  Description

                  Allows execution of Database Console Commands that act at Server Level to clear Memory caches

                  -

                  Allows execution of the following commands -DBCC FREEPROCCACHE -DBCC FREESESSIONCACHE +

                  Allows execution of the following commands
                  +DBCC FREEPROCCACHE
                  +DBCC FREESESSIONCACHE
                  DBCC FREESYSTEMCACHE

                  -

                  Read more: -- https://docs.microsoft.com/en-us/sql/t-sql/database-console-commands/dbcc-freeproccache-transact-sql -- https://docs.microsoft.com/en-us/sql/t-sql/database-console-commands/dbcc-freesessioncache-transact-sql +

                  Read more:
                  +- https://docs.microsoft.com/en-us/sql/t-sql/database-console-commands/dbcc-freeproccache-transact-sql
                  +- https://docs.microsoft.com/en-us/sql/t-sql/database-console-commands/dbcc-freesessioncache-transact-sql
                  - https://docs.microsoft.com/en-us/sql/t-sql/database-console-commands/dbcc-freesystemcache-transact-sql

                  Syntax

                  Invoke-DbaDbccFreeCache
                  @@ -546,7 +546,7 @@ 
                  Example: 7
                  become unused for all the caches with entries specific to the resource pool named "default".

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances.

                  +

                  The target SQL Server instance or instances.

                  @@ -575,8 +575,8 @@
                  -SqlInstance

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -637,15 +637,15 @@
                  -Operation
                  -InputValue
                  -

                  Value used for Operation - meaning depends on Operation -DBCC FREEPROCCACHE accepts -a plan_handle of type varbinary(64) -a sql_handle of type varbinary(64) -or the name of a Resource Governor resource pool of type sysname -If blank then clears all elements from the plan cache -DBCC FREESYSTEMCACHE accepts -'ALL' for ALL specifies all supported caches -or name of a Resource Governor pool cache +

                  Value used for Operation - meaning depends on Operation
                  +DBCC FREEPROCCACHE accepts
                  +a plan_handle of type varbinary(64)
                  +a sql_handle of type varbinary(64)
                  +or the name of a Resource Governor resource pool of type sysname
                  +If blank then clears all elements from the plan cache
                  +DBCC FREESYSTEMCACHE accepts
                  +'ALL' for ALL specifies all supported caches
                  +or name of a Resource Governor pool cache
                  Not required for other values

                  @@ -702,7 +702,7 @@
                  -NoInformationalMessages
                  -MarkInUseForRemoval
                  -

                  Used when Operation = DBCC FREESYSTEMCACHE +

                  Used when Operation = DBCC FREESYSTEMCACHE
                  Asynchronously frees currently used entries from their respective caches after they become unused

                  @@ -731,8 +731,8 @@
                  -MarkInUseForRemoval
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Invoke-DbaDiagnosticQuery.html b/Invoke-DbaDiagnosticQuery.html index 6c7c9dec..6e481e97 100644 --- a/Invoke-DbaDiagnosticQuery.html +++ b/Invoke-DbaDiagnosticQuery.html @@ -487,11 +487,11 @@

                  Invoke-DbaDiagnosticQuery

                  Synopsis

                  Invoke-DbaDiagnosticQuery runs the scripts provided by Glenn Berry's DMV scripts on specified servers

                  Description

                  -

                  This is the main function of the Sql Server Diagnostic Queries related functions in dbatools. -The diagnostic queries are developed and maintained by Glenn Berry and they can be found here along with a lot of documentation: +

                  This is the main function of the Sql Server Diagnostic Queries related functions in dbatools.
                  +The diagnostic queries are developed and maintained by Glenn Berry and they can be found here along with a lot of documentation:
                  https://glennsqlperformance.com/resources/

                  -

                  The most recent version of the diagnostic queries are included in the dbatools module. -But it is possible to download a newer set or a specific version to an alternative location and parse and run those scripts. +

                  The most recent version of the diagnostic queries are included in the dbatools module.
                  +But it is possible to download a newer set or a specific version to an alternative location and parse and run those scripts.
                  It will run all or a selection of those scripts on one or multiple servers and return the result as a PowerShell Object

                  Syntax

                  Invoke-DbaDiagnosticQuery
                  @@ -558,7 +558,7 @@ 
                  Example: 9

                  Run diagnostic queries targeted at specific database, and only run database level queries against this database.

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances. Can be either a string or SMO server

                  +

                  The target SQL Server instance or instances. Can be either a string or SMO server

                  @@ -671,8 +671,8 @@
                  -ExcludeQuery
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -953,7 +953,7 @@
                  -OutputPath
                  -ExportQueries
                  -

                  Use this switch to export the diagnostic queries to sql files. Instead of running the queries, the server will be evaluated to find the appropriate queries to run based on SQL Version. +

                  Use this switch to export the diagnostic queries to sql files. Instead of running the queries, the server will be evaluated to find the appropriate queries to run based on SQL Version.
                  These sql files will then be created in the OutputDirectory

                  @@ -982,8 +982,8 @@
                  -ExportQueries
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Invoke-DbaPfRelog.html b/Invoke-DbaPfRelog.html index aec8cf34..f0395c35 100644 --- a/Invoke-DbaPfRelog.html +++ b/Invoke-DbaPfRelog.html @@ -488,7 +488,7 @@

                  Synopsis

                  Pipeline-compatible wrapper for the relog command which is available on modern Windows platforms.

                  Description

                  Pipeline-compatible wrapper for the relog command. Relog is useful for converting Windows Perfmon.

                  -

                  Extracts performance counters from performance counter logs into other formats, +

                  Extracts performance counters from performance counter logs into other formats,
                  such as text-TSV (for tab-delimited text), text-CSV (for comma-delimited text), binary-BIN, or SQL.

                  relog "C:\PerfLogs\Admin\System Correlation\WORKSTATIONX_20180112-000001\DataCollector01.blg" -o C:\temp\foo.csv -f tsv

                  If you find any input hangs, please send us the output so we can accommodate for it then use -Raw for an immediate solution.

                  @@ -623,8 +623,8 @@
                  -Destination
                  -Type
                  -

                  The output format. Defaults to tsv. Options include tsv, csv, bin, and sql. -For a SQL database, the output file specifies the DSN!counter_log. You can specify the database location by using the ODBC manager to configure the DSN (Database System Name). +

                  The output format. Defaults to tsv. Options include tsv, csv, bin, and sql.
                  +For a SQL database, the output file specifies the DSN!counter_log. You can specify the database location by using the ODBC manager to configure the DSN (Database System Name).
                  For more information, read here: https://technet.microsoft.com/en-us/library/bb490958.aspx

                  @@ -741,7 +741,7 @@
                  -PerformanceCounter
                  -PerformanceCounterPath
                  -

                  Specifies the pathname of the text file that lists the performance counters to be included in a relog file. Use this option to list counter paths in an input file, one per line. Default setting is +

                  Specifies the pathname of the text file that lists the performance counters to be included in a relog file. Use this option to list counter paths in an input file, one per line. Default setting is
                  all counters in the original log file are relogged.

                  @@ -1022,8 +1022,8 @@
                  -Raw
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Invoke-DbaQuery.html b/Invoke-DbaQuery.html index 0b95d74c..9e46b9df 100644 --- a/Invoke-DbaQuery.html +++ b/Invoke-DbaQuery.html @@ -488,13 +488,14 @@

                  Invoke-DbaQuery

                  Synopsis

                  A command to run explicit T-SQL commands or files.

                  Description

                  -

                  This function is a wrapper command around Invoke-DbaAsync, which in turn is based on Invoke-SqlCmd2. +

                  This function is a wrapper command around Invoke-DbaAsync, which in turn is based on Invoke-SqlCmd2.
                  It was designed to be more convenient to use in a pipeline and to behave in a way consistent with the rest of our functions.

                  Syntax

                  Invoke-DbaQuery
                       [[-SqlInstance] <DbaInstanceParameter[]>]
                       [-SqlCredential <PSCredential>]
                  -    [-Database <String>] -Query <String>
                  +    [-Database <String>]
                  +    -Query <String>
                       [-QueryTimeout <Int32>]
                       [-As <String>]
                       [-SqlParameter <PSObject[]>]
                  @@ -511,7 +512,8 @@ 

                  Syntax

                  [[-SqlInstance] <DbaInstanceParameter[]>] [-SqlCredential <PSCredential>] [-Database <String>] - [-QueryTimeout <Int32>] -SqlObject <SqlSmoObject[]> + [-QueryTimeout <Int32>] + -SqlObject <SqlSmoObject[]> [-As <String>] [-SqlParameter <PSObject[]>] [-CommandType {Text | StoredProcedure | TableDirect}] @@ -527,7 +529,8 @@

                  Syntax

                  [[-SqlInstance] <DbaInstanceParameter[]>] [-SqlCredential <PSCredential>] [-Database <String>] - [-QueryTimeout <Int32>] -File <Object[]> + [-QueryTimeout <Int32>] + -File <Object[]> [-As <String>] [-SqlParameter <PSObject[]>] [-CommandType {Text | StoredProcedure | TableDirect}] @@ -612,9 +615,9 @@
                  Example: 11

                  Creates an input parameter using Always Encrypted

                  Required Parameters

                  -Query
                  -

                  Specifies one or more queries to be run. The queries can be Transact-SQL, XQuery statements, or sqlcmd commands. Multiple queries in a single batch may be separated by a semicolon or a GO -Escape any double quotation marks included in the string. -Consider using bracketed identifiers such as [MyTable] instead of quoted identifiers such as "MyTable".

                  +

                  Specifies one or more queries to be run. The queries can be Transact-SQL, XQuery statements, or sqlcmd commands. Multiple queries in a single batch may be separated by a semicolon or a GO
                  +Escape any double quotation marks included in the string.
                  +Consider using bracketed identifiers such as [MyTable] instead of quoted identifiers such as "MyTable".

                  @@ -642,7 +645,7 @@
                  -Query
                  -File
                  -

                  Specifies the path to one or several files to be used as the query input.

                  +

                  Specifies the path to one or several files to be used as the query input.

                  @@ -670,7 +673,7 @@
                  -File
                  -SqlObject
                  -

                  Specify one or more SQL objects. Those will be converted to script and their scripts run on the target system(s).

                  +

                  Specify one or more SQL objects. Those will be converted to script and their scripts run on the target system(s).

                  @@ -727,7 +730,7 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  Credential object used to connect to the SQL Server Instance as a different user. This can be a Windows or SQL Server account. Windows users are determined by the existence of a backslash, so if you +

                  Credential object used to connect to the SQL Server Instance as a different user. This can be a Windows or SQL Server account. Windows users are determined by the existence of a backslash, so if you
                  are intending to use an alternative Windows connection instead of a SQL login, ensure it contains a backslash.

                  @@ -812,7 +815,7 @@
                  -QueryTimeout
                  -As
                  -

                  Specifies output type. Valid options for this parameter are 'DataSet', 'DataTable', 'DataRow', 'PSObject', 'PSObjectArray', and 'SingleValue'. +

                  Specifies output type. Valid options for this parameter are 'DataSet', 'DataTable', 'DataRow', 'PSObject', 'PSObjectArray', and 'SingleValue'.
                  PSObject and PSObjectArray output introduces overhead but adds flexibility for working with results: https://forums.powershell.org/t/dealing-with-dbnull/2328/2

                  @@ -873,7 +876,7 @@
                  -SqlParameter
                  -CommandType
                  -

                  Specifies the type of command represented by the query string. Valid options for this parameter are 'Text', 'TableDirect', and 'StoredProcedure'. +

                  Specifies the type of command represented by the query string. Valid options for this parameter are 'Text', 'TableDirect', and 'StoredProcedure'.
                  Default is 'Text'. Further information: https://docs.microsoft.com/en-us/dotnet/api/system.data.sqlclient.sqlcommand.commandtype

                  @@ -1042,8 +1045,8 @@
                  -NoExec
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Invoke-DbaWhoIsActive.html b/Invoke-DbaWhoIsActive.html index 31e78a00..25cc360f 100644 --- a/Invoke-DbaWhoIsActive.html +++ b/Invoke-DbaWhoIsActive.html @@ -546,7 +546,7 @@
                  Example: 4

                  Similar to running sp_WhoIsActive @get_outer_command = 1, @find_block_leaders = 1

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

                  +

                  The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

                  @@ -575,8 +575,8 @@
                  -SqlInstance

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -633,9 +633,9 @@
                  -Database
                  -Filter
                  -

                  FiltersBoth inclusive and exclusive -Set either filter to '' to disable -Session is a session ID, and either 0 or '' can be used to indicate "all" sessions +

                  FiltersBoth inclusive and exclusive
                  +Set either filter to '' to disable
                  +Session is a session ID, and either 0 or '' can be used to indicate "all" sessions
                  All other filter types support % or _ as wildcards

                  @@ -696,9 +696,9 @@
                  -FilterType
                  -NotFilter
                  -

                  FiltersBoth inclusive and exclusive -Set either filter to '' to disable -Session is a session ID, and either 0 or '' can be used to indicate "all" sessions +

                  FiltersBoth inclusive and exclusive
                  +Set either filter to '' to disable
                  +Session is a session ID, and either 0 or '' can be used to indicate "all" sessions
                  All other filter types support % or _ as wildcards

                  @@ -815,9 +815,9 @@
                  -ShowSystemSpids
                  -ShowSleepingSpids
                  -

                  Controls how sleeping SPIDs are handled, based on the idea of levels of interest -0 does not pull any sleeping SPIDs -1 pulls only those sleeping SPIDs that also have an open transaction +

                  Controls how sleeping SPIDs are handled, based on the idea of levels of interest
                  +0 does not pull any sleeping SPIDs
                  +1 pulls only those sleeping SPIDs that also have an open transaction
                  2 pulls all sleeping SPIDs

                  @@ -846,7 +846,7 @@
                  -ShowSleepingSpids
                  -GetFullInnerText
                  -

                  If 1, gets the full stored procedure or running batch, when available +

                  If 1, gets the full stored procedure or running batch, when available
                  If 0, gets only the actual statement that is currently running in the batch or procedure

                  @@ -875,8 +875,8 @@
                  -GetFullInnerText
                  -GetPlans
                  -

                  Get associated query plans for running tasks, if available -If 1, gets the plan based on the request's statement offset +

                  Get associated query plans for running tasks, if available
                  +If 1, gets the plan based on the request's statement offset
                  If 2, gets the entire plan based on the request's plan_handle

                  @@ -961,10 +961,10 @@
                  -GetTransactionInfo
                  -GetTaskInfo
                  -

                  Get information on active tasks, based on three interest levels -Level 0 does not pull any task-related information -Level 1 is a lightweight mode that pulls the top non-CXPACKET wait, giving preference to blockers -Level 2 pulls all available task-based metrics, including: +

                  Get information on active tasks, based on three interest levels
                  +Level 0 does not pull any task-related information
                  +Level 1 is a lightweight mode that pulls the top non-CXPACKET wait, giving preference to blockers
                  +Level 2 pulls all available task-based metrics, including:
                  number of active tasks, current wait stats, physical I/O, context switches, and blocker information

                  @@ -1021,7 +1021,7 @@
                  -GetLocks
                  -GetAverageTime
                  -

                  Get average time for past runs of an active query +

                  Get average time for past runs of an active query
                  (based on the combination of plan handle, sql handle, and offset)

                  @@ -1050,10 +1050,10 @@
                  -GetAverageTime
                  -GetAdditonalInfo
                  -

                  Get additional non-performance-related information about the session or request text_size, language, date_format, date_first, quoted_identifier, arithabort, ansi_null_dflt_on, ansi_defaults, -ansi_warnings, ansi_padding, ansi_nulls, concat_null_yields_null, transaction_isolation_level, lock_timeout, deadlock_priority, row_count, command_type -If a SQL Agent job is running, an subnode called agent_info will be populated with some or all of the following: job_id, job_name, step_id, step_name, msdb_query_error (in the event of an error) -If @get_task_info is set to 2 and a lock wait is detected, a subnode called block_info will be populated with some or all of the following: lock_type, database_name, object_id, file_id, hobt_id, +

                  Get additional non-performance-related information about the session or request text_size, language, date_format, date_first, quoted_identifier, arithabort, ansi_null_dflt_on, ansi_defaults,
                  +ansi_warnings, ansi_padding, ansi_nulls, concat_null_yields_null, transaction_isolation_level, lock_timeout, deadlock_priority, row_count, command_type
                  +If a SQL Agent job is running, an subnode called agent_info will be populated with some or all of the following: job_id, job_name, step_id, step_name, msdb_query_error (in the event of an error)
                  +If @get_task_info is set to 2 and a lock wait is detected, a subnode called block_info will be populated with some or all of the following: lock_type, database_name, object_id, file_id, hobt_id,
                  applock_hash, metadata_resource, metadata_class_id, object_name, schema_name

                  @@ -1082,8 +1082,8 @@
                  -GetAdditonalInfo
                  -FindBlockLeaders
                  -

                  Walk the blocking chain and count the number of -total SPIDs blocked all the way down by a given session +

                  Walk the blocking chain and count the number of
                  +total SPIDs blocked all the way down by a given session
                  Also enables task_info Level 1, if @get_task_info is set to 0

                  @@ -1112,7 +1112,7 @@
                  -FindBlockLeaders
                  -DeltaInterval
                  -

                  Pull deltas on various metrics +

                  Pull deltas on various metrics
                  Interval in seconds to wait before doing the second data pull

                  @@ -1141,10 +1141,10 @@
                  -DeltaInterval
                  -OutputColumnList
                  -

                  List of desired output columns, in desired order -Note that the final output will be the intersection of all enabled features and all columns in the list. Therefore, only columns associated with enabled features will actually appear in the output. -Likewise, removing columns from this list may effectively disable features, even if they are turned on -Each element in this list must be one of the valid output column names. Names must be delimited by square brackets. White space, formatting, and additional characters are allowed, as long as the list +

                  List of desired output columns, in desired order
                  +Note that the final output will be the intersection of all enabled features and all columns in the list. Therefore, only columns associated with enabled features will actually appear in the output.
                  +Likewise, removing columns from this list may effectively disable features, even if they are turned on
                  +Each element in this list must be one of the valid output column names. Names must be delimited by square brackets. White space, formatting, and additional characters are allowed, as long as the list
                  contains exact matches of delimited valid column names.

                  @@ -1173,14 +1173,14 @@
                  -OutputColumnList
                  -SortOrder
                  -

                  Column(s) by which to sort output, optionally with sort directions. -Valid column choices: -session_id, physical_io, reads, physical_reads, writes, tempdb_allocations, -tempdb_current, CPU, context_switches, used_memory, physical_io_delta, -reads_delta, physical_reads_delta, writes_delta, tempdb_allocations_delta, -tempdb_current_delta, CPU_delta, context_switches_delta, used_memory_delta, -tasks, tran_start_time, open_tran_count, blocking_session_id, blocked_session_count, -percent_complete, host_name, login_name, database_name, start_time, login_time +

                  Column(s) by which to sort output, optionally with sort directions.
                  +Valid column choices:
                  +session_id, physical_io, reads, physical_reads, writes, tempdb_allocations,
                  +tempdb_current, CPU, context_switches, used_memory, physical_io_delta,
                  +reads_delta, physical_reads_delta, writes_delta, tempdb_allocations_delta,
                  +tempdb_current_delta, CPU_delta, context_switches_delta, used_memory_delta,
                  +tasks, tran_start_time, open_tran_count, blocking_session_id, blocked_session_count,
                  +percent_complete, host_name, login_name, database_name, start_time, login_time
                  Note that column names in the list must be bracket-delimited. Commas and/or white space are not required.

                  @@ -1209,9 +1209,9 @@
                  -SortOrder
                  -FormatOutput
                  -

                  Formats some of the output columns in a more "human readable" form -0 disables output format -1 formats the output for variable-width fonts +

                  Formats some of the output columns in a more "human readable" form
                  +0 disables output format
                  +1 formats the output for variable-width fonts
                  2 formats the output for fixed-width fonts

                  @@ -1240,7 +1240,7 @@
                  -FormatOutput
                  -DestinationTable
                  -

                  If set to a non-blank value, the script will attempt to insert into the specified destination table. Please note that the script will not verify that the table exists, or that it has the correct +

                  If set to a non-blank value, the script will attempt to insert into the specified destination table. Please note that the script will not verify that the table exists, or that it has the correct
                  schema, before doing the insert. Table can be specified in one, two, or three-part format

                  @@ -1269,7 +1269,7 @@
                  -DestinationTable
                  -ReturnSchema
                  -

                  If set to 1, no data collection will happen and no result set will be returned; instead, a CREATE TABLE statement will be returned via the @schema parameter, which will match the schema of the result +

                  If set to 1, no data collection will happen and no result set will be returned; instead, a CREATE TABLE statement will be returned via the @schema parameter, which will match the schema of the result
                  set that would be returned by using the same collection of the rest of the parameters. The CREATE TABLE statement will have a placeholder token of <table_name> in place of an actual table name.

                  @@ -1298,7 +1298,7 @@
                  -ReturnSchema
                  -Schema
                  -

                  If set to 1, no data collection will happen and no result set will be returned; instead, a CREATE TABLE statement will be returned via the @schema parameter, which will match the schema of the result +

                  If set to 1, no data collection will happen and no result set will be returned; instead, a CREATE TABLE statement will be returned via the @schema parameter, which will match the schema of the result
                  set that would be returned by using the same collection of the rest of the parameters. The CREATE TABLE statement will have a placeholder token of <table_name> in place of an actual table name.

                  @@ -1355,7 +1355,7 @@
                  -Help
                  -As
                  -

                  Specifies output type. Valid options for this parameter are 'DataSet', 'DataTable', 'DataRow', 'PSObject'. Default is 'DataRow'. +

                  Specifies output type. Valid options for this parameter are 'DataSet', 'DataTable', 'DataRow', 'PSObject'. Default is 'DataRow'.
                  PSObject output introduces overhead but adds flexibility for working with results: https://forums.powershell.org/t/dealing-with-dbnull/2328/2

                  @@ -1388,8 +1388,8 @@
                  -As
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Invoke-DbaXEReplay.html b/Invoke-DbaXEReplay.html index 6f8b97d6..8d8b2348 100644 --- a/Invoke-DbaXEReplay.html +++ b/Invoke-DbaXEReplay.html @@ -522,7 +522,7 @@
                  Example: 3

                  Runs all batch_text for sql_batch_completed against tempdb on sql2017 and sql2016.

                  Required Parameters

                  -SqlInstance
                  -

                  Target SQL Server(s)

                  +

                  Target SQL Server(s)

                  @@ -550,7 +550,7 @@
                  -SqlInstance
                  -InputObject
                  -

                  Accepts the object output of Read-DbaXESession.

                  +

                  Accepts the object output of Read-DbaXESession.

                  @@ -579,8 +579,8 @@
                  -InputObject

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -693,8 +693,8 @@
                  -Raw
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Invoke-DbatoolsFormatter.html b/Invoke-DbatoolsFormatter.html index 1351028f..18e55079 100644 --- a/Invoke-DbatoolsFormatter.html +++ b/Invoke-DbatoolsFormatter.html @@ -504,7 +504,7 @@
                  Example: 1

                  Reformats C:\dbatools\public\Get-DbaDatabase.ps1 to dbatools' standards

                  Required Parameters

                  -Path
                  -

                  The path to the ps1 file that needs to be formatted

                  +

                  The path to the ps1 file that needs to be formatted

                  @@ -533,8 +533,8 @@
                  -Path

                  Optional Parameters

                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Invoke-DbatoolsRenameHelper.html b/Invoke-DbatoolsRenameHelper.html index c05a34cb..0824b76d 100644 --- a/Invoke-DbatoolsRenameHelper.html +++ b/Invoke-DbatoolsRenameHelper.html @@ -513,7 +513,7 @@
                  Example: 2
                  the resulting changes would be written to disk as Ascii encoded.

                  Required Parameters

                  -InputObject
                  -

                  A piped in object from Get-ChildItem

                  +

                  A piped in object from Get-ChildItem

                  @@ -542,15 +542,15 @@
                  -InputObject

                  Optional Parameters

                  -Encoding
                  -

                  Specifies the file encoding. The default is UTF8. -Valid values are: --- ASCII: Uses the encoding for the ASCII (7-bit) character set. --- BigEndianUnicode: Encodes in UTF-16 format using the big-endian byte order. --- Byte: Encodes a set of characters into a sequence of bytes. --- String: Uses the encoding type for a string. --- Unicode: Encodes in UTF-16 format using the little-endian byte order. --- UTF7: Encodes in UTF-7 format. --- UTF8: Encodes in UTF-8 format. +

                  Specifies the file encoding. The default is UTF8.
                  +Valid values are:
                  +-- ASCII: Uses the encoding for the ASCII (7-bit) character set.
                  +-- BigEndianUnicode: Encodes in UTF-16 format using the big-endian byte order.
                  +-- Byte: Encodes a set of characters into a sequence of bytes.
                  +-- String: Uses the encoding type for a string.
                  +-- Unicode: Encodes in UTF-16 format using the little-endian byte order.
                  +-- UTF7: Encodes in UTF-7 format.
                  +-- UTF8: Encodes in UTF-8 format.
                  -- Unknown: The encoding type is unknown or invalid. The data can be treated as binary.

                  @@ -583,8 +583,8 @@
                  -Encoding
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Join-DbaAvailabilityGroup.html b/Join-DbaAvailabilityGroup.html index 7289081c..d7b3c561 100644 --- a/Join-DbaAvailabilityGroup.html +++ b/Join-DbaAvailabilityGroup.html @@ -551,8 +551,8 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -609,7 +609,7 @@
                  -AvailabilityGroup
                  -ClusterType
                  -

                  Cluster type of the Availability Group. Only supported in SQL Server 2017 and above. +

                  Cluster type of the Availability Group. Only supported in SQL Server 2017 and above.
                  Options include: External, Wsfc or None.

                  @@ -670,8 +670,8 @@
                  -InputObject
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Join-DbaPath.html b/Join-DbaPath.html index 55026caa..6b800880 100644 --- a/Join-DbaPath.html +++ b/Join-DbaPath.html @@ -506,7 +506,7 @@
                  Example: 1
                  Returns 'C:/temp/Foo/Bar' on non-windows.

                  Required Parameters

                  -Path
                  -

                  The basepath to join on.

                  +

                  The basepath to join on.

                  diff --git a/Measure-DbaBackupThroughput.html b/Measure-DbaBackupThroughput.html index cf3f8433..fe5efecc 100644 --- a/Measure-DbaBackupThroughput.html +++ b/Measure-DbaBackupThroughput.html @@ -488,16 +488,16 @@

                  Synopsis

                  Determines how quickly SQL Server is backing up databases to media.

                  Description

                  Returns backup history details for one or more databases on a SQL Server.

                  -

                  Output looks like this: -SqlInstance : sql2016 -Database : SharePoint_Config -AvgThroughput : 1.07 MB -AvgSize : 24.17 -AvgDuration : 00:00:01.1000000 -MinThroughput : 0.02 MB -MaxThroughput : 2.26 MB -MinBackupDate : 8/6/2015 10:22:01 PM -MaxBackupDate : 6/19/2016 12:57:45 PM +

                  Output looks like this:
                  +SqlInstance : sql2016
                  +Database : SharePoint_Config
                  +AvgThroughput : 1.07 MB
                  +AvgSize : 24.17
                  +AvgDuration : 00:00:01.1000000
                  +MinThroughput : 0.02 MB
                  +MaxThroughput : 2.26 MB
                  +MinBackupDate : 8/6/2015 10:22:01 PM
                  +MaxBackupDate : 6/19/2016 12:57:45 PM
                  BackupCount : 10

                  Syntax

                  Measure-DbaBackupThroughput
                  @@ -542,7 +542,7 @@ 
                  Example: 6

                  Gets backup calculations, limited to the last year and only the bigoldb database

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances.

                  +

                  The target SQL Server instance or instances.

                  @@ -571,8 +571,8 @@
                  -SqlInstance

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -745,7 +745,7 @@
                  -Type
                  -DeviceType
                  -

                  Specifies one or more DeviceTypes to use in filtering backup sets. Valid values are "Disk", "Permanent Disk Device", "Tape", "Permanent Tape Device", "Pipe", "Permanent Pipe Device" and "Virtual +

                  Specifies one or more DeviceTypes to use in filtering backup sets. Valid values are "Disk", "Permanent Disk Device", "Tape", "Permanent Tape Device", "Pipe", "Permanent Pipe Device" and "Virtual
                  Device", as well as custom integers for your own DeviceTypes.

                  @@ -774,8 +774,8 @@
                  -DeviceType
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Measure-DbaDbVirtualLogFile.html b/Measure-DbaDbVirtualLogFile.html index 48b76f41..01920a02 100644 --- a/Measure-DbaDbVirtualLogFile.html +++ b/Measure-DbaDbVirtualLogFile.html @@ -489,8 +489,8 @@

                  Synopsis

                  Description

                  Having a transaction log file with too many virtual log files (VLFs) can hurt database performance.

                  Too many VLFs can cause transaction log backups to slow down and can also slow down database recovery and, in extreme cases, even affect insert/update/delete performance.

                  -

                  References: -http://www.sqlskills.com/blogs/kimberly/transaction-log-vlfs-too-many-or-too-few/ +

                  References:
                  +http://www.sqlskills.com/blogs/kimberly/transaction-log-vlfs-too-many-or-too-few/
                  http://blogs.msdn.com/b/saponsqlserver/archive/2012/02/22/too-many-virtual-log-files-vlfs-can-cause-slow-database-recovery.aspx

                  If you've got a high number of VLFs, you can use Expand-SqlTLogResponsibly to reduce the number.

                  Syntax

                  @@ -525,7 +525,7 @@
                  Example: 4

                  Returns VLF counts for the db1 and db2 databases on sqlcluster.

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances.

                  +

                  The target SQL Server instance or instances.

                  @@ -554,8 +554,8 @@
                  -SqlInstance

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -668,8 +668,8 @@
                  -IncludeSystemDBs
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Measure-DbaDiskSpaceRequirement.html b/Measure-DbaDiskSpaceRequirement.html index 6cd5bb65..5fbeeb64 100644 --- a/Measure-DbaDiskSpaceRequirement.html +++ b/Measure-DbaDiskSpaceRequirement.html @@ -487,7 +487,7 @@

                  Measure-DbaDiskSpaceRequirement

                  Synopsis

                  Calculate the space needed to copy and possibly replace a database from one SQL server to another.

                  Description

                  -

                  Returns a file list from source and destination where source file may overwrite destination. Complex scenarios where a new file may exist is taken into account. +

                  Returns a file list from source and destination where source file may overwrite destination. Complex scenarios where a new file may exist is taken into account.
                  This command will accept a hash object in pipeline with the following keys: Source, SourceDatabase, Destination. Using this command will provide a way to prepare before a complex migration with multiple databases from different sources and destinations.

                  Syntax

                  Measure-DbaDiskSpaceRequirement
                  @@ -527,7 +527,7 @@ 
                  Example: 4

                  Using a SQL table. We are DBA after all!

                  Required Parameters

                  -Source
                  -

                  Source SQL Server.

                  +

                  Source SQL Server.

                  @@ -555,7 +555,7 @@
                  -Source
                  -Database
                  -

                  The database to copy. It MUST exist.

                  +

                  The database to copy. It MUST exist.

                  @@ -583,7 +583,7 @@
                  -Database
                  -Destination
                  -

                  Destination SQL Server instance.

                  +

                  Destination SQL Server instance.

                  @@ -612,8 +612,8 @@
                  -Destination

                  Optional Parameters

                  -SourceSqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -642,7 +642,7 @@
                  -SourceSqlCredential
                  -DestinationDatabase
                  -

                  The database name at destination. +

                  The database name at destination.
                  May or may not be present, if unspecified it will default to the database name provided in SourceDatabase.

                  @@ -671,8 +671,8 @@
                  -DestinationDatabase
                  -DestinationSqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -729,8 +729,8 @@
                  -Credential
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Mount-DbaDatabase.html b/Mount-DbaDatabase.html index b1778989..55e71aa5 100644 --- a/Mount-DbaDatabase.html +++ b/Mount-DbaDatabase.html @@ -525,7 +525,7 @@
                  Example: 3

                  Shows what would happen if the command were executed (without actually performing the command)

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances.

                  +

                  The target SQL Server instance or instances.

                  @@ -553,7 +553,7 @@
                  -SqlInstance
                  -Database
                  -

                  The database(s) to attach.

                  +

                  The database(s) to attach.

                  @@ -582,8 +582,8 @@
                  -Database

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -700,8 +700,8 @@
                  -AttachOption
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Move-DbaDbFile.html b/Move-DbaDbFile.html index 29464e8a..2f5d59ed 100644 --- a/Move-DbaDbFile.html +++ b/Move-DbaDbFile.html @@ -487,11 +487,12 @@

                  Move-DbaDbFile

                  Synopsis

                  Moves database files from one local drive or folder to another.

                  Description

                  -

                  Moves database files from one local drive or folder to another. +

                  Moves database files from one local drive or folder to another.
                  It will put database offline, update metadata and set it online again.

                  Syntax

                  Move-DbaDbFile -SqlInstance <DbaInstanceParameter>
                  -    [-SqlCredential <PSCredential>] -Database <String>
                  +    [-SqlCredential <PSCredential>]
                  +    -Database <String>
                       [-FileType <String>]
                       [-FileDestination <String>]
                       [-DeleteAfterMove]
                  @@ -502,7 +503,8 @@ 

                  Syntax

                  [<CommonParameters>] Move-DbaDbFile -SqlInstance <DbaInstanceParameter> - [-SqlCredential <PSCredential>] -Database <String> + [-SqlCredential <PSCredential>] + -Database <String> [-FileToMove <Hashtable>] [-DeleteAfterMove] [-Force] @@ -512,7 +514,8 @@

                  Syntax

                  [<CommonParameters>] Move-DbaDbFile -SqlInstance <DbaInstanceParameter> - [-SqlCredential <PSCredential>] -Database <String> + [-SqlCredential <PSCredential>] + -Database <String> [-FileStructureOnly] [-Force] [-EnableException] @@ -545,7 +548,7 @@
                  Example: 3

                  Shows the current database file structure (without filenames). Example: 'dbatools'='D:\Data'

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances.

                  +

                  The target SQL Server instance or instances.

                  @@ -573,7 +576,7 @@
                  -SqlInstance
                  -Database
                  -

                  The database to be moved.

                  +

                  The database to be moved.

                  @@ -602,8 +605,8 @@
                  -Database

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -632,8 +635,8 @@
                  -SqlCredential
                  -FileType
                  -

                  Define the file type to move; accepted values: Data, Log or Both. -Default value: Both +

                  Define the file type to move; accepted values: Data, Log or Both.
                  +Default value: Both
                  Exclusive, cannot be used in conjunction with FileToMove.

                  @@ -694,7 +697,7 @@
                  -FileDestination
                  -FileToMove
                  -

                  Pass a hashtable that contains a list of database files and their destination path. +

                  Pass a hashtable that contains a list of database files and their destination path.
                  Key and value should be the logical name and then the path (e.g. 'db1_log' = 'D:\mssql\logs')

                  @@ -751,7 +754,7 @@
                  -DeleteAfterMove
                  -FileStructureOnly
                  -

                  Return a hashtable of the Database file structure. +

                  Return a hashtable of the Database file structure.
                  Modifying the hashtable it can then be utilized with the FileToMove parameter

                  @@ -808,8 +811,8 @@
                  -Force
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Move-DbaRegServer.html b/Move-DbaRegServer.html index 92faf081..82b920f6 100644 --- a/Move-DbaRegServer.html +++ b/Move-DbaRegServer.html @@ -543,8 +543,8 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -685,8 +685,8 @@
                  -InputObject
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/Move-DbaRegServerGroup.html b/Move-DbaRegServerGroup.html index f2d2b5ed..f6d0ffba 100644 --- a/Move-DbaRegServerGroup.html +++ b/Move-DbaRegServerGroup.html @@ -514,7 +514,7 @@
                  Example: 2

                  Moves the Development group within HR to the Web group

                  Required Parameters

                  -NewGroup
                  -

                  The new location.

                  +

                  The new location.

                  @@ -571,8 +571,8 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -657,8 +657,8 @@
                  -InputObject
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaAgentAlert.html b/New-DbaAgentAlert.html index edc10d3c..1a5e0893 100644 --- a/New-DbaAgentAlert.html +++ b/New-DbaAgentAlert.html @@ -532,7 +532,7 @@
                  Example: 1
                  It will send an email to the default operator and wait 60 seconds before sending another email.

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances

                  +

                  The target SQL Server instance or instances

                  @@ -560,7 +560,7 @@
                  -SqlInstance
                  -Alert
                  -

                  The name of the alert to create

                  +

                  The name of the alert to create

                  @@ -589,8 +589,8 @@
                  -Alert

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -1011,8 +1011,8 @@
                  -WmiEventQuery
                  -NotifyMethod
                  -

                  The method to use to notify the user of the alert. Valid values are 'None', 'NotifyEmail', 'Pager', 'NetSend', 'NotifyAll'. It is NotifyAll by default. -The Pager and net send options will be removed from SQL Server Agent in a future version of Microsoft SQL Server. +

                  The method to use to notify the user of the alert. Valid values are 'None', 'NotifyEmail', 'Pager', 'NetSend', 'NotifyAll'. It is NotifyAll by default.
                  +The Pager and net send options will be removed from SQL Server Agent in a future version of Microsoft SQL Server.
                  Avoid using these features in new development work, and plan to modify applications that currently use these features.

                  @@ -1045,8 +1045,8 @@
                  -NotifyMethod
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaAgentAlertCategory.html b/New-DbaAgentAlertCategory.html index 316c7434..92140858 100644 --- a/New-DbaAgentAlertCategory.html +++ b/New-DbaAgentAlertCategory.html @@ -487,7 +487,7 @@

                  New-DbaAgentAlertCategory

                  Synopsis

                  New-DbaAgentAlertCategory creates a new alert category.

                  Description

                  -

                  New-DbaAgentAlertCategory makes it possible to create a Agent Alert category that can be used with Alerts. +

                  New-DbaAgentAlertCategory makes it possible to create a Agent Alert category that can be used with Alerts.
                  It returns an array of the alert categories created .

                  Syntax

                  New-DbaAgentAlertCategory
                  @@ -514,7 +514,7 @@ 
                  Example: 2

                  Creates a new alert category with the name 'Category 2'.

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                  +

                  The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                  @@ -542,7 +542,7 @@
                  -SqlInstance
                  -Category
                  -

                  The name of the category

                  +

                  The name of the category

                  @@ -571,8 +571,8 @@
                  -Category

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -629,8 +629,8 @@
                  -Force
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaAgentJob.html b/New-DbaAgentJob.html index 87e25786..0ffa6ed4 100644 --- a/New-DbaAgentJob.html +++ b/New-DbaAgentJob.html @@ -487,7 +487,7 @@

                  New-DbaAgentJob

                  Synopsis

                  New-DbaAgentJob creates a new job

                  Description

                  -

                  New-DbaAgentJob makes is possible to create a job in the SQL Server Agent. +

                  New-DbaAgentJob makes is possible to create a job in the SQL Server Agent.
                  It returns an array of the job(s) created

                  Syntax

                  New-DbaAgentJob
                  @@ -548,7 +548,7 @@ 
                  Example: 7

                  Creates a job with the name "Job One" on multiple servers using the pipe line

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                  +

                  The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                  @@ -576,7 +576,7 @@
                  -SqlInstance
                  -Job
                  -

                  The name of the job. The name must be unique and cannot contain the percent (%) character.

                  +

                  The name of the job. The name must be unique and cannot contain the percent (%) character.

                  @@ -605,8 +605,8 @@
                  -Job

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -831,8 +831,8 @@
                  -OwnerLogin
                  -EventLogLevel
                  -

                  Specifies when to place an entry in the Microsoft Windows application log for this job. -Allowed values 0, "Never", 1, "OnSuccess", 2, "OnFailure", 3, "Always" +

                  Specifies when to place an entry in the Microsoft Windows application log for this job.
                  +Allowed values 0, "Never", 1, "OnSuccess", 2, "OnFailure", 3, "Always"
                  The text value can either be lowercase, uppercase or something in between as long as the text is correct.

                  @@ -865,8 +865,8 @@
                  -EventLogLevel
                  -EmailLevel
                  -

                  Specifies when to send an e-mail upon the completion of this job. -Allowed values 0, "Never", 1, "OnSuccess", 2, "OnFailure", 3, "Always" +

                  Specifies when to send an e-mail upon the completion of this job.
                  +Allowed values 0, "Never", 1, "OnSuccess", 2, "OnFailure", 3, "Always"
                  The text value can either be lowercase, uppercase or something in between as long as the text is correct.

                  @@ -899,8 +899,8 @@
                  -EmailLevel
                  -PageLevel
                  -

                  Specifies when to send a page upon the completion of this job. -Allowed values 0, "Never", 1, "OnSuccess", 2, "OnFailure", 3, "Always" +

                  Specifies when to send a page upon the completion of this job.
                  +Allowed values 0, "Never", 1, "OnSuccess", 2, "OnFailure", 3, "Always"
                  The text value can either be lowercase, uppercase or something in between as long as the text is correct.

                  @@ -1017,8 +1017,8 @@
                  -PageOperator
                  -DeleteLevel
                  -

                  Specifies when to delete the job. -Allowed values 0, "Never", 1, "OnSuccess", 2, "OnFailure", 3, "Always" +

                  Specifies when to delete the job.
                  +Allowed values 0, "Never", 1, "OnSuccess", 2, "OnFailure", 3, "Always"
                  The text value can either be lowercase, uppercase or something in between as long as the text is correct.

                  @@ -1079,8 +1079,8 @@
                  -Force
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaAgentJobCategory.html b/New-DbaAgentJobCategory.html index 5b439838..13e78f62 100644 --- a/New-DbaAgentJobCategory.html +++ b/New-DbaAgentJobCategory.html @@ -487,7 +487,7 @@

                  New-DbaAgentJobCategory

                  Synopsis

                  New-DbaAgentJobCategory creates a new job category.

                  Description

                  -

                  New-DbaAgentJobCategory makes it possible to create a job category that can be used with jobs. +

                  New-DbaAgentJobCategory makes it possible to create a job category that can be used with jobs.
                  It returns an array of the job categories created .

                  Syntax

                  New-DbaAgentJobCategory
                  @@ -515,7 +515,7 @@ 
                  Example: 2

                  Creates a new job category with the name 'Category 2' and assign the category type for a multi server job.

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                  +

                  The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                  @@ -543,7 +543,7 @@
                  -SqlInstance
                  -Category
                  -

                  The name of the category

                  +

                  The name of the category

                  @@ -572,8 +572,8 @@
                  -Category

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -602,7 +602,7 @@
                  -SqlCredential
                  -CategoryType
                  -

                  The type of category. This can be "LocalJob", "MultiServerJob" or "None". +

                  The type of category. This can be "LocalJob", "MultiServerJob" or "None".
                  The default is "LocalJob" and will automatically be set when no option is chosen.

                  @@ -663,8 +663,8 @@
                  -Force
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaAgentJobStep.html b/New-DbaAgentJobStep.html index 7c122428..054bb233 100644 --- a/New-DbaAgentJobStep.html +++ b/New-DbaAgentJobStep.html @@ -548,7 +548,7 @@
                  Example: 6
                  Internal StepIds will be updated, and any specific OnSuccess/OnFailure step references will also be updated

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                  +

                  The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                  @@ -576,7 +576,7 @@
                  -SqlInstance
                  -Job
                  -

                  The name of the job to which to add the step.

                  +

                  The name of the job to which to add the step.

                  @@ -604,7 +604,7 @@
                  -Job
                  -StepName
                  -

                  The name of the step.

                  +

                  The name of the step.

                  @@ -633,8 +633,8 @@
                  -StepName

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -691,8 +691,8 @@
                  -StepId
                  -Subsystem
                  -

                  The subsystem used by the SQL Server Agent service to execute command. -Allowed values 'ActiveScripting','AnalysisCommand','AnalysisQuery','CmdExec','Distribution','LogReader','Merge','PowerShell','QueueReader','Snapshot','Ssis','TransactSql' +

                  The subsystem used by the SQL Server Agent service to execute command.
                  +Allowed values 'ActiveScripting','AnalysisCommand','AnalysisQuery','CmdExec','Distribution','LogReader','Merge','PowerShell','QueueReader','Snapshot','Ssis','TransactSql'
                  The default is 'TransactSql'

                  @@ -809,8 +809,8 @@
                  -CmdExecSuccessCode
                  -OnSuccessAction
                  -

                  The action to perform if the step succeeds. -Allowed values "QuitWithSuccess" (default), "QuitWithFailure", "GoToNextStep", "GoToStep". +

                  The action to perform if the step succeeds.
                  +Allowed values "QuitWithSuccess" (default), "QuitWithFailure", "GoToNextStep", "GoToStep".
                  The text value van either be lowercase, uppercase or something in between as long as the text is correct.

                  @@ -871,8 +871,8 @@
                  -OnSuccessStepId
                  -OnFailAction
                  -

                  The action to perform if the step fails. -Allowed values "QuitWithSuccess" (default), "QuitWithFailure", "GoToNextStep", "GoToStep". +

                  The action to perform if the step fails.
                  +Allowed values "QuitWithSuccess" (default), "QuitWithFailure", "GoToNextStep", "GoToStep".
                  The text value van either be lowercase, uppercase or something in between as long as the text is correct.

                  @@ -1073,7 +1073,7 @@
                  -OutputFileName
                  -Insert
                  -

                  This switch indicates the new step is inserted at the specified stepid. +

                  This switch indicates the new step is inserted at the specified stepid.
                  All following steps will have their IDs incremented by, and success/failure next steps incremented accordingly

                  @@ -1104,12 +1104,12 @@
                  -Insert
                  -Flag

                  Sets the flag(s) for the job step. Flag Description

                  -

                  AppendAllCmdExecOutputToJobHistory Job history, including command output, is appended to the job history file. -AppendToJobHistory Job history is appended to the job history file. -AppendToLogFile Job history is appended to the SQL Server log file. -AppendToTableLog Job history is appended to a log table. -LogToTableWithOverwrite Job history is written to a log table, overwriting previous contents. -None Job history is not appended to a file. +

                  AppendAllCmdExecOutputToJobHistory Job history, including command output, is appended to the job history file.
                  +AppendToJobHistory Job history is appended to the job history file.
                  +AppendToLogFile Job history is appended to the SQL Server log file.
                  +AppendToTableLog Job history is appended to a log table.
                  +LogToTableWithOverwrite Job history is written to a log table, overwriting previous contents.
                  +None Job history is not appended to a file.
                  ProvideStopProcessEvent Job processing is stopped.

                  @@ -1198,8 +1198,8 @@
                  -Force
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaAgentOperator.html b/New-DbaAgentOperator.html index bef293f7..4b34497f 100644 --- a/New-DbaAgentOperator.html +++ b/New-DbaAgentOperator.html @@ -527,7 +527,7 @@
                  Example: 2
                  Saturday start time of 7am, Saturday end time of 6pm, Sunday start time of 8am, Sunday end time of 5pm, Weekday start time of 6am, and Weekday end time of 7pm.

                  Required Parameters

                  -Operator
                  -

                  Name of the operator in SQL Agent.

                  +

                  Name of the operator in SQL Agent.

                  @@ -584,8 +584,8 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -698,8 +698,8 @@
                  -PagerAddress
                  -PagerDay
                  -

                  Defines what days the pager portion of the operator will be used. The default is 'Everyday'. Valid parameters -are 'EveryDay', 'Weekdays', 'Weekend', 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', and +

                  Defines what days the pager portion of the operator will be used. The default is 'Everyday'. Valid parameters
                  +are 'EveryDay', 'Weekdays', 'Weekend', 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', and
                  'Saturday'.

                  @@ -928,7 +928,7 @@
                  -IsFailsafeOperator
                  -FailsafeNotificationMethod
                  -

                  Defines the notification method for the failsafe oeprator. Value must be NotifyMail or NotifyPager. +

                  Defines the notification method for the failsafe oeprator. Value must be NotifyMail or NotifyPager.
                  The default is NotifyEmail.

                  @@ -1013,8 +1013,8 @@
                  -InputObject
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaAgentProxy.html b/New-DbaAgentProxy.html index 6539845a..469a95de 100644 --- a/New-DbaAgentProxy.html +++ b/New-DbaAgentProxy.html @@ -528,7 +528,7 @@
                  Example: 2
                  The proxy is then added to the CmdExec and PowerShell subsystems

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances.You must have sysadmin access and server version must be SQL Server version 2000 or higher.

                  +

                  The target SQL Server instance or instances.You must have sysadmin access and server version must be SQL Server version 2000 or higher.

                  @@ -556,7 +556,7 @@
                  -SqlInstance
                  -Name
                  -

                  The name of the proxy or proxies you want to create

                  +

                  The name of the proxy or proxies you want to create

                  @@ -584,7 +584,7 @@
                  -Name
                  -ProxyCredential
                  -

                  The associated SQL Server Credential. The credential must be created prior to creating the Proxy.

                  +

                  The associated SQL Server Credential. The credential must be created prior to creating the Proxy.

                  @@ -613,8 +613,8 @@
                  -ProxyCredential

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -643,18 +643,18 @@
                  -SqlCredential
                  -SubSystem
                  -

                  The associated subsystem or subsystems. Defaults to CmdExec. -Valid options include: -ActiveScripting -AnalysisCommand -AnalysisQuery -CmdExec -Distribution -LogReader -Merge -PowerShell -QueueReader -Snapshot +

                  The associated subsystem or subsystems. Defaults to CmdExec.
                  +Valid options include:
                  +ActiveScripting
                  +AnalysisCommand
                  +AnalysisQuery
                  +CmdExec
                  +Distribution
                  +LogReader
                  +Merge
                  +PowerShell
                  +QueueReader
                  +Snapshot
                  Ssis

                  @@ -855,8 +855,8 @@
                  -Force
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaAgentSchedule.html b/New-DbaAgentSchedule.html index 607482d1..3497856f 100644 --- a/New-DbaAgentSchedule.html +++ b/New-DbaAgentSchedule.html @@ -487,7 +487,7 @@

                  New-DbaAgentSchedule

                  Synopsis

                  New-DbaAgentSchedule creates a new schedule in the msdb database.

                  Description

                  -

                  New-DbaAgentSchedule will help create a new schedule for a job. +

                  New-DbaAgentSchedule will help create a new schedule for a job.
                  If the job parameter is not supplied the schedule will not be attached to a job.

                  Syntax

                  New-DbaAgentSchedule
                  @@ -534,7 +534,7 @@ 
                  Example: 4

                  Create a schedule that will run jobs once a week on Sunday @ 1:00AM

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                  +

                  The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                  @@ -563,8 +563,8 @@
                  -SqlInstance

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -677,12 +677,12 @@
                  -Disabled
                  -FrequencyType
                  -

                  A value indicating when a job is to be executed. -Allowed values: 'Once', 'OneTime', 'Daily', 'Weekly', 'Monthly', 'MonthlyRelative', 'AgentStart', 'AutoStart', 'IdleComputer', 'OnIdle' -The following synonyms provide flexibility to the allowed values for this function parameter: -Once=OneTime -AgentStart=AutoStart -IdleComputer=OnIdle +

                  A value indicating when a job is to be executed.
                  +Allowed values: 'Once', 'OneTime', 'Daily', 'Weekly', 'Monthly', 'MonthlyRelative', 'AgentStart', 'AutoStart', 'IdleComputer', 'OnIdle'
                  +The following synonyms provide flexibility to the allowed values for this function parameter:
                  +Once=OneTime
                  +AgentStart=AutoStart
                  +IdleComputer=OnIdle
                  If force is used the default will be "Once".

                  @@ -715,11 +715,11 @@
                  -FrequencyType
                  -FrequencyInterval
                  -

                  The days that a job is executed -Allowed values for FrequencyType 'Daily': EveryDay or a number between 1 and 365. -Allowed values for FrequencyType 'Weekly': Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Weekdays, Weekend or EveryDay. -Allowed values for FrequencyType 'Monthly': Numbers 1 to 31 for each day of the month. -If "Weekdays", "Weekend" or "EveryDay" is used it over writes any other value that has been passed before. +

                  The days that a job is executed
                  +Allowed values for FrequencyType 'Daily': EveryDay or a number between 1 and 365.
                  +Allowed values for FrequencyType 'Weekly': Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Weekdays, Weekend or EveryDay.
                  +Allowed values for FrequencyType 'Monthly': Numbers 1 to 31 for each day of the month.
                  +If "Weekdays", "Weekend" or "EveryDay" is used it over writes any other value that has been passed before.
                  If force is used the default will be 1.

                  @@ -748,12 +748,12 @@
                  -FrequencyInterval
                  -FrequencySubdayType
                  -

                  Specifies the units for the subday FrequencyInterval. -Allowed values: 'Once', 'Time', 'Seconds', 'Second', 'Minutes', 'Minute', 'Hours', 'Hour' -The following synonyms provide flexibility to the allowed values for this function parameter: -Once=Time -Seconds=Second -Minutes=Minute +

                  Specifies the units for the subday FrequencyInterval.
                  +Allowed values: 'Once', 'Time', 'Seconds', 'Second', 'Minutes', 'Minute', 'Hours', 'Hour'
                  +The following synonyms provide flexibility to the allowed values for this function parameter:
                  +Once=Time
                  +Seconds=Second
                  +Minutes=Minute
                  Hours=Hour

                  @@ -786,7 +786,7 @@
                  -FrequencySubdayType
                  -FrequencySubdayInterval
                  -

                  The number of subday type periods to occur between each execution of a job. +

                  The number of subday type periods to occur between each execution of a job.
                  The interval needs to be at least 10 seconds long.

                  @@ -815,7 +815,7 @@
                  -FrequencySubdayInterval
                  -FrequencyRelativeInterval
                  -

                  A job's occurrence of FrequencyInterval in each month, if FrequencyInterval is 32 (monthlyrelative). +

                  A job's occurrence of FrequencyInterval in each month, if FrequencyInterval is 32 (monthlyrelative).
                  Allowed values: First, Second, Third, Fourth or Last

                  @@ -848,7 +848,7 @@
                  -FrequencyRelativeInterval
                  -FrequencyRecurrenceFactor
                  -

                  The number of weeks or months between the scheduled execution of a job. +

                  The number of weeks or months between the scheduled execution of a job.
                  FrequencyRecurrenceFactor is used only if FrequencyType is "Weekly", "Monthly" or "MonthlyRelative".

                  @@ -877,7 +877,7 @@
                  -FrequencyRecurrenceFactor
                  -StartDate
                  -

                  The date on which execution of a job can begin. +

                  The date on which execution of a job can begin.
                  If force is used the start date will be the current day

                  @@ -906,7 +906,7 @@
                  -StartDate
                  -EndDate
                  -

                  The date on which execution of a job can stop. +

                  The date on which execution of a job can stop.
                  If force is used the end date will be '9999-12-31'

                  @@ -935,9 +935,9 @@
                  -EndDate
                  -StartTime
                  -

                  The time on any day to begin execution of a job. Format HHMMSS / 24 hour clock. -Example: '010000' for 01:00:00 AM. -Example: '140000' for 02:00:00 PM. +

                  The time on any day to begin execution of a job. Format HHMMSS / 24 hour clock.
                  +Example: '010000' for 01:00:00 AM.
                  +Example: '140000' for 02:00:00 PM.
                  If force is used the start time will be '00:00:00'

                  @@ -966,9 +966,9 @@
                  -StartTime
                  -EndTime
                  -

                  The time on any day to end execution of a job. Format HHMMSS / 24 hour clock. -Example: '010000' for 01:00:00 AM. -Example: '140000' for 02:00:00 PM. +

                  The time on any day to end execution of a job. Format HHMMSS / 24 hour clock.
                  +Example: '010000' for 01:00:00 AM.
                  +Example: '140000' for 02:00:00 PM.
                  If force is used the start time will be '23:59:59'

                  @@ -997,7 +997,7 @@
                  -EndTime
                  -Force
                  -

                  The force parameter will ignore some errors in the parameters and assume defaults. +

                  The force parameter will ignore some errors in the parameters and assume defaults.
                  It will also remove the any present schedules with the same name for the specific job.

                  @@ -1026,8 +1026,8 @@
                  -Force
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaAvailabilityGroup.html b/New-DbaAvailabilityGroup.html index c5d5ca5e..4f0a9eba 100644 --- a/New-DbaAvailabilityGroup.html +++ b/New-DbaAvailabilityGroup.html @@ -510,13 +510,13 @@

                  Description

                • If a backup / restore is performed, the backups will be left intact on the network share.
                • If you're using SQL Server on Linux and a fully qualified domain name is required, please use the FQDN to create a proper Endpoint
                • -

                  PLEASE NOTE THE CHANGED DEFAULTS: -Starting with version 1.1.x we changed the defaults of the following parameters to have the same defaults +

                  PLEASE NOTE THE CHANGED DEFAULTS:
                  +Starting with version 1.1.x we changed the defaults of the following parameters to have the same defaults
                  as the T-SQL command "CREATE AVAILABILITY GROUP" and the wizard in SQL Server Management Studio:

                  • ClusterType from External to Wsfc (Windows Server Failover Cluster).
                  • FailureConditionLevel from OnServerDown (Level 1) to OnCriticalServerErrors (Level 3).
                  • -
                  • ConnectionModeInSecondaryRole from AllowAllConnections (ALL) to AllowNoConnections (NO). +
                  • ConnectionModeInSecondaryRole from AllowAllConnections (ALL) to AllowNoConnections (NO).
                    To change these defaults we have introduced configuration parameters for all of them, see documentation of the parameters for details.

                  Thanks for this, Thomas Stringer! https://blogs.technet.microsoft.com/heyscriptingguy/2013/04/29/set-up-an-alwayson-availability-group-with-powershell/

                  @@ -615,7 +615,7 @@
                  Example: 9

                  This exact command was used to create an availability group on docker!

                  Required Parameters

                  -Name
                  -

                  The name of the Availability Group.

                  +

                  The name of the Availability Group.

                  @@ -672,8 +672,8 @@
                  -Primary
                  -PrimarySqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -730,8 +730,8 @@
                  -Secondary
                  -SecondarySqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -760,7 +760,7 @@
                  -SecondarySqlCredential
                  -IsContained
                  -

                  Builds the Availability Group as contained. Only supported in SQL Server 2022 or higher. +

                  Builds the Availability Group as contained. Only supported in SQL Server 2022 or higher.
                  https://learn.microsoft.com/en-us/sql/database-engine/availability-groups/windows/contained-availability-groups-overview

                  @@ -845,10 +845,10 @@
                  -DtcSupport
                  -ClusterType
                  -

                  Cluster type of the Availability Group. Only supported in SQL Server 2017 and above. -Options include: Wsfc, External or None. -Defaults to Wsfc (Windows Server Failover Cluster). -The default can be changed with: +

                  Cluster type of the Availability Group. Only supported in SQL Server 2017 and above.
                  +Options include: Wsfc, External or None.
                  +Defaults to Wsfc (Windows Server Failover Cluster).
                  +The default can be changed with:
                  Set-DbatoolsConfig -FullName 'AvailabilityGroups.Default.ClusterType' -Value '...' -Passthru | Register-DbatoolsConfig

                  @@ -913,15 +913,15 @@
                  -AutomatedBackupPreference
                  -FailureConditionLevel
                  -

                  Specifies the different conditions that can trigger an automatic failover in Availability Group. -Defaults to OnCriticalServerErrors (Level 3). -From https://docs.microsoft.com/en-us/sql/t-sql/statements/create-availability-group-transact-sql: -Level 1 = OnServerDown -Level 2 = OnServerUnresponsive -Level 3 = OnCriticalServerErrors (the default in CREATE AVAILABILITY GROUP and in this command) -Level 4 = OnModerateServerErrors -Level 5 = OnAnyQualifiedFailureCondition -The default can be changed with: +

                  Specifies the different conditions that can trigger an automatic failover in Availability Group.
                  +Defaults to OnCriticalServerErrors (Level 3).
                  +From https://docs.microsoft.com/en-us/sql/t-sql/statements/create-availability-group-transact-sql:
                  +Level 1 = OnServerDown
                  +Level 2 = OnServerUnresponsive
                  +Level 3 = OnCriticalServerErrors (the default in CREATE AVAILABILITY GROUP and in this command)
                  +Level 4 = OnModerateServerErrors
                  +Level 5 = OnAnyQualifiedFailureCondition
                  +The default can be changed with:
                  Set-DbatoolsConfig -FullName 'AvailabilityGroups.Default.FailureConditionLevel' -Value 'On...' -Passthru | Register-DbatoolsConfig

                  @@ -954,9 +954,9 @@
                  -FailureConditionLevel
                  -HealthCheckTimeout
                  -

                  This setting used to specify the length of time, in milliseconds, that the SQL Server resource DLL should wait for information returned by the sp_server_diagnostics stored procedure before reporting -the Always On Failover Cluster Instance (FCI) as unresponsive. -Changes that are made to the timeout settings are effective immediately and do not require a restart of the SQL Server resource. +

                  This setting used to specify the length of time, in milliseconds, that the SQL Server resource DLL should wait for information returned by the sp_server_diagnostics stored procedure before reporting
                  +the Always On Failover Cluster Instance (FCI) as unresponsive.
                  +Changes that are made to the timeout settings are effective immediately and do not require a restart of the SQL Server resource.
                  Defaults to 30000 (30 seconds).

                  @@ -985,7 +985,7 @@
                  -HealthCheckTimeout
                  -Basic
                  -

                  Indicates whether the availability group is Basic Availability Group. +

                  Indicates whether the availability group is Basic Availability Group.
                  https://docs.microsoft.com/en-us/sql/database-engine/availability-groups/windows/basic-availability-groups-always-on-availability-groups

                  @@ -1098,8 +1098,8 @@
                  -Database
                  -SharedPath
                  -

                  The network share where the backups will be backed up and restored from. -Each SQL Server service account must have access to this share. +

                  The network share where the backups will be backed up and restored from.
                  +Each SQL Server service account must have access to this share.
                  NOTE: If a backup / restore is performed, the backups will be left in tact on the network share.

                  @@ -1308,10 +1308,10 @@
                  -ConnectionModeInPrimaryRole
                  -ConnectionModeInSecondaryRole
                  -

                  Specifies the connection modes of an Availability Replica in secondary role. -Options include: AllowNoConnections (Alias: No), AllowReadIntentConnectionsOnly (Alias: Read-intent only), AllowAllConnections (Alias: Yes) -Defaults to AllowNoConnections. -The default can be changed with: +

                  Specifies the connection modes of an Availability Replica in secondary role.
                  +Options include: AllowNoConnections (Alias: No), AllowReadIntentConnectionsOnly (Alias: Read-intent only), AllowAllConnections (Alias: Yes)
                  +Defaults to AllowNoConnections.
                  +The default can be changed with:
                  Set-DbatoolsConfig -FullName 'AvailabilityGroups.Default.ConnectionModeInSecondaryRole' -Value '...' -Passthru | Register-DbatoolsConfig

                  @@ -1344,8 +1344,8 @@
                  -ConnectionModeInSecondaryRole
                  -SeedingMode
                  -

                  Specifies how the secondary replica will be initially seeded. -Automatic enables direct seeding. This method will seed the secondary replica over the network. This method does not require you to backup and restore a copy of the primary database on the replica. +

                  Specifies how the secondary replica will be initially seeded.
                  +Automatic enables direct seeding. This method will seed the secondary replica over the network. This method does not require you to backup and restore a copy of the primary database on the replica.
                  Manual requires you to create a backup of the database on the primary replica and manually restore that backup on the secondary replica.

                  @@ -1378,7 +1378,7 @@
                  -SeedingMode
                  -Endpoint
                  -

                  By default, this command will attempt to find a DatabaseMirror endpoint. If one does not exist, it will create it. +

                  By default, this command will attempt to find a DatabaseMirror endpoint. If one does not exist, it will create it.
                  If an endpoint must be created, the name "hadr_endpoint" will be used. If an alternative is preferred, use Endpoint.

                  @@ -1407,10 +1407,10 @@
                  -Endpoint
                  -EndpointUrl
                  -

                  By default, the property Fqdn of Get-DbaEndpoint is used as EndpointUrl. -Use EndpointUrl if different URLs are required due to special network configurations. -EndpointUrl has to be an array of strings in format 'TCP://system-address:port', one entry for every instance. -First entry for the primary instance, following entries for secondary instances in the order they show up in Secondary. +

                  By default, the property Fqdn of Get-DbaEndpoint is used as EndpointUrl.
                  +Use EndpointUrl if different URLs are required due to special network configurations.
                  +EndpointUrl has to be an array of strings in format 'TCP://system-address:port', one entry for every instance.
                  +First entry for the primary instance, following entries for secondary instances in the order they show up in Secondary.
                  See details regarding the format at: https://docs.microsoft.com/en-us/sql/database-engine/availability-groups/windows/specify-endpoint-url-adding-or-modifying-availability-replica

                  @@ -1439,7 +1439,7 @@
                  -EndpointUrl
                  -Certificate
                  -

                  Specifies that the endpoint is to authenticate the connection using the certificate specified by certificate_name to establish identity for authorization. +

                  Specifies that the endpoint is to authenticate the connection using the certificate specified by certificate_name to establish identity for authorization.
                  The far endpoint must have a certificate with the public key matching the private key of the specified certificate.

                  @@ -1468,7 +1468,7 @@
                  -Certificate
                  -ConfigureXESession
                  -

                  Configure the AlwaysOn_health extended events session to start automatically on every replica as the SSMS wizard would do. +

                  Configure the AlwaysOn_health extended events session to start automatically on every replica as the SSMS wizard would do.
                  https://docs.microsoft.com/en-us/sql/database-engine/availability-groups/windows/always-on-extended-events#BKMK_alwayson_health

                  @@ -1609,8 +1609,8 @@
                  -Dhcp
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaAzAccessToken.html b/New-DbaAzAccessToken.html index 58715482..a01ad401 100644 --- a/New-DbaAzAccessToken.html +++ b/New-DbaAzAccessToken.html @@ -523,10 +523,10 @@
                  Example: 3
                  Once the connection is made, it is used to perform a test query.

                  Required Parameters

                  -Type
                  -

                  The type of request: -ManagedIdentity -ServicePrincipal -RenewableServicePrincipal

                  +

                  The type of request:
                  +ManagedIdentity
                  +ServicePrincipal
                  +RenewableServicePrincipal

                  @@ -559,15 +559,15 @@
                  -Type

                  Optional Parameters

                  -Subtype
                  -

                  The subtype. Options include: -AzureSqlDb (default) -ResourceManager -DataLake -EventHubs -KeyVault -ResourceManager -ServiceBus -Storage +

                  The subtype. Options include:
                  +AzureSqlDb (default)
                  +ResourceManager
                  +DataLake
                  +EventHubs
                  +KeyVault
                  +ResourceManager
                  +ServiceBus
                  +Storage
                  Read more here: https://docs.microsoft.com/en-us/azure/active-directory/managed-identities-azure-resources/tutorial-windows-vm-access-sql

                  @@ -628,7 +628,7 @@
                  -Config
                  -Credential
                  -

                  When using the ServicePrincipal type, a Credential is required. The username is the App ID and Password is the App Password +

                  When using the ServicePrincipal type, a Credential is required. The username is the App ID and Password is the App Password
                  https://docs.microsoft.com/en-us/azure/active-directory/user-help/multi-factor-authentication-end-user-app-passwords

                  @@ -745,8 +745,8 @@
                  -Store
                  -EnableException
                  -

                  By default in most of our commands, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This command, however, gifts you with "sea of red" exceptions, by default, because it is useful for advanced scripting. +

                  By default in most of our commands, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This command, however, gifts you with "sea of red" exceptions, by default, because it is useful for advanced scripting.
                  Using this switch turns our "nice by default" feature on which makes errors into pretty warnings.

                  diff --git a/New-DbaClientAlias.html b/New-DbaClientAlias.html index 5c5c048a..b18bfa33 100644 --- a/New-DbaClientAlias.html +++ b/New-DbaClientAlias.html @@ -518,7 +518,7 @@
                  Example: 3

                  Creates a new NamedPipes alias on the local workstation called sp, which points sqlcluster\sharepoint

                  Required Parameters

                  -ServerName
                  -

                  The target SQL Server

                  +

                  The target SQL Server

                  @@ -546,7 +546,7 @@
                  -ServerName
                  -Alias
                  -

                  The alias to be created

                  +

                  The alias to be created

                  @@ -663,8 +663,8 @@
                  -Protocol
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaCmConnection.html b/New-DbaCmConnection.html index 88c3365e..f8fea771 100644 --- a/New-DbaCmConnection.html +++ b/New-DbaCmConnection.html @@ -483,11 +483,11 @@

                  New-DbaCmConnection

                  Synopsis

                  Generates a connection object for use in remote computer management.

                  Description

                  -

                  Generates a connection object for use in remote computer management. +

                  Generates a connection object for use in remote computer management.
                  Those objects are used for the purpose of cim/wmi queries, caching which protocol worked, optimizing performance and minimizing authentication errors.

                  -

                  New-DbaCmConnection will create a NEW object and overwrite any existing ones for the specified computer. +

                  New-DbaCmConnection will create a NEW object and overwrite any existing ones for the specified computer.
                  Furthermore, information stored in the input beyond the computername will be discarded in favor of the new settings.

                  -

                  Unless the connection cache has been disabled, all connections will automatically be registered in the cache, so no further action is necessary. +

                  Unless the connection cache has been disabled, all connections will automatically be registered in the cache, so no further action is necessary.
                  The output is primarily for information purposes, however it may be used to pass objects and circumvent the cache with those.

                  NOTE: Generally, this function need not be used, as a first connection to a computer using any connecting function such as "Get-DbaCmObject" will automatically register a new default connection for it.

                  This function exists to be able to preconfigure connections.

                  @@ -609,7 +609,7 @@
                  -Credential
                  -UseWindowsCredentials
                  -

                  Whether using the default windows credentials is legit. +

                  Whether using the default windows credentials is legit.
                  Not setting this will not exclude using windows credentials, but only not pre-confirm them as working.

                  @@ -638,7 +638,7 @@
                  -UseWindowsCredentials
                  -OverrideExplicitCredential
                  -

                  Setting this will enable the credential override. +

                  Setting this will enable the credential override.
                  The override will cause the system to ignore explicitly specified credentials, so long as known, good credentials are available.

                  @@ -667,7 +667,7 @@
                  -OverrideExplicitCredential
                  -DisabledConnectionTypes
                  -

                  Explicitly disable connection types. +

                  Explicitly disable connection types.
                  These types will then not be used for connecting to the computer.

                  @@ -780,7 +780,7 @@
                  -DisableCredentialAutoRegister
                  -EnableCredentialFailover
                  -

                  Will enable automatic failing over to known to work credentials, when using bad credentials. +

                  Will enable automatic failing over to known to work credentials, when using bad credentials.
                  By default, passing bad credentials will cause the Computer Management functions to interrupt with a warning (Or exception if in silent mode).

                  @@ -837,7 +837,7 @@
                  -WindowsCredentialsAreBad
                  -CimWinRMOptions
                  -

                  Specify a set of options to use when connecting to the target computer using CIM over WinRM. +

                  Specify a set of options to use when connecting to the target computer using CIM over WinRM.
                  Use 'New-CimSessionOption' to create such an object.

                  @@ -866,7 +866,7 @@
                  -CimWinRMOptions
                  -CimDCOMOptions
                  -

                  Specify a set of options to use when connecting to the target computer using CIM over DCOM. +

                  Specify a set of options to use when connecting to the target computer using CIM over DCOM.
                  Use 'New-CimSessionOption' to create such an object.

                  @@ -895,8 +895,8 @@
                  -CimDCOMOptions
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaComputerCertificate.html b/New-DbaComputerCertificate.html index bcfba17e..79de264e 100644 --- a/New-DbaComputerCertificate.html +++ b/New-DbaComputerCertificate.html @@ -491,9 +491,9 @@

                  Description

                  By default, a key with a length of 1024 and a friendly name of the machines FQDN is generated.

                  This command was originally intended to help automate the process so that SSL certificates can be available for enforcing encryption on connections.

                  It makes a lot of assumptions - namely, that your account is allowed to auto-enroll and that you have permission to do everything it needs to do ;)

                  -

                  References: -https://www.itprotoday.com/sql-server/7-steps-ssl-encryption -https://azurebi.jppp.org/2016/01/23/using-lets-encrypt-certificates-for-secure-sql-server-connections/ +

                  References:
                  +https://www.itprotoday.com/sql-server/7-steps-ssl-encryption
                  +https://azurebi.jppp.org/2016/01/23/using-lets-encrypt-certificates-for-secure-sql-server-connections/
                  https://blogs.msdn.microsoft.com/sqlserverfaq/2016/09/26/creating-and-registering-ssl-certificates/

                  The certificate is generated using AD's webserver SSL template on the client machine and pushed to the remote machine.

                  Syntax

                  @@ -859,18 +859,18 @@
                  -Folder
                  -Flag
                  -

                  Defines where and how to import the private key of an X.509 certificate. -Defaults to: Exportable, PersistKeySet -EphemeralKeySet -The key associated with a PFX file is created in memory and not persisted on disk when importing a certificate. -Exportable -Imported keys are marked as exportable. -NonExportable -Expliictly mark keys as nonexportable. -PersistKeySet -The key associated with a PFX file is persisted when importing a certificate. -UserProtected -Notify the user through a dialog box or other method that the key is accessed. The Cryptographic Service Provider (CSP) in use defines the precise behavior. NOTE: This can only be used when you +

                  Defines where and how to import the private key of an X.509 certificate.
                  +Defaults to: Exportable, PersistKeySet
                  +EphemeralKeySet
                  +The key associated with a PFX file is created in memory and not persisted on disk when importing a certificate.
                  +Exportable
                  +Imported keys are marked as exportable.
                  +NonExportable
                  +Expliictly mark keys as nonexportable.
                  +PersistKeySet
                  +The key associated with a PFX file is persisted when importing a certificate.
                  +UserProtected
                  +Notify the user through a dialog box or other method that the key is accessed. The Cryptographic Service Provider (CSP) in use defines the precise behavior. NOTE: This can only be used when you
                  add a certificate to localhost, as it causes a prompt to appear.

                  @@ -959,8 +959,8 @@
                  -SelfSigned
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaComputerCertificateSigningRequest.html b/New-DbaComputerCertificateSigningRequest.html index 046e688d..ca694a62 100644 --- a/New-DbaComputerCertificateSigningRequest.html +++ b/New-DbaComputerCertificateSigningRequest.html @@ -721,8 +721,8 @@
                  -Dns
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaConnectionString.html b/New-DbaConnectionString.html index 2f6066be..18fd26c5 100644 --- a/New-DbaConnectionString.html +++ b/New-DbaConnectionString.html @@ -490,8 +490,8 @@

                  Description

                  Builds or extracts a SQL Server Connection String. Note that dbatools-style syntax is used.

                  So you do not need to specify "Data Source", you can just specify -SqlInstance and -SqlCredential and we'll handle it for you.

                  This is the simplified PowerShell approach to connection string building. See examples for more info.

                  -

                  See https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.connectionstring.aspx -and https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnectionstringbuilder.aspx +

                  See https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.connectionstring.aspx
                  +and https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnectionstringbuilder.aspx
                  and https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.aspx

                  Syntax

                  New-DbaConnectionString
                  @@ -572,7 +572,7 @@ 
                  Example: 9

                  Creates a connection string with ReadOnly ApplicationIntent.

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances.

                  +

                  The target SQL Server instance or instances.

                  @@ -601,9 +601,9 @@
                  -SqlInstance

                  Optional Parameters

                  -Credential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. -For MFA support, please use Connect-DbaInstance. be it Windows or SQL Server. Windows users are determined by the existence of a backslash, so if you are intending to use an alternative Windows +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  +For MFA support, please use Connect-DbaInstance. be it Windows or SQL Server. Windows users are determined by the existence of a backslash, so if you are intending to use an alternative Windows
                  connection instead of a SQL login, ensure it contains a backslash.

                  @@ -720,7 +720,7 @@
                  -BatchSeparator
                  -ClientName
                  -

                  By default, this command sets the client's ApplicationName property to "dbatools PowerShell module - dbatools.io". If you're doing anything that requires profiling, you can look for this client name. +

                  By default, this command sets the client's ApplicationName property to "dbatools PowerShell module - dbatools.io". If you're doing anything that requires profiling, you can look for this client name.
                  Using -ClientName allows you to set your own custom client application name.

                  @@ -749,8 +749,8 @@
                  -ClientName
                  -ConnectTimeout
                  -

                  The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error. -Valid values are greater than or equal to 0 and less than or equal to 2147483647. +

                  The length of time (in seconds) to wait for a connection to the server before terminating the attempt and generating an error.
                  +Valid values are greater than or equal to 0 and less than or equal to 2147483647.
                  When opening a connection to a Azure SQL Database, set the connection timeout to 30 seconds.

                  @@ -807,11 +807,11 @@
                  -Database
                  -EncryptConnection
                  -

                  Valid options are: 'Mandatory', 'Optional', 'Strict' -When true, SQL Server uses SSL encryption for all data sent between the client and server if the server has a certificate installed. Recognized values are true, false, yes, and no. For more -information, see Connection String Syntax. -Beginning in .NET Framework 4.5, when TrustServerCertificate is false and Encrypt is true, the server name (or IP address) in a SQL Server SSL certificate must exactly match the server name (or IP -address) specified in the connection string. Otherwise, the connection attempt will fail. For information about support for certificates whose subject starts with a wildcard character (*), see +

                  Valid options are: 'Mandatory', 'Optional', 'Strict'
                  +When true, SQL Server uses SSL encryption for all data sent between the client and server if the server has a certificate installed. Recognized values are true, false, yes, and no. For more
                  +information, see Connection String Syntax.
                  +Beginning in .NET Framework 4.5, when TrustServerCertificate is false and Encrypt is true, the server name (or IP address) in a SQL Server SSL certificate must exactly match the server name (or IP
                  +address) specified in the connection string. Otherwise, the connection attempt will fail. For information about support for certificates whose subject starts with a wildcard character (*), see
                  Accepted wildcards used by server certificates for server authentication.

                  @@ -844,12 +844,12 @@
                  -EncryptConnection
                  -FailoverPartner
                  -

                  The name of the failover partner server where database mirroring is configured. -If the value of this key is "", then Initial Catalog must be present, and its value must not be "". -The server name can be 128 characters or less. -If you specify a failover partner but the failover partner server is not configured for database mirroring and the primary server (specified with the Server keyword) is not available, then the -connection will fail. -If you specify a failover partner and the primary server is not configured for database mirroring, the connection to the primary server (specified with the Server keyword) will succeed if the primary +

                  The name of the failover partner server where database mirroring is configured.
                  +If the value of this key is "", then Initial Catalog must be present, and its value must not be "".
                  +The server name can be 128 characters or less.
                  +If you specify a failover partner but the failover partner server is not configured for database mirroring and the primary server (specified with the Server keyword) is not available, then the
                  +connection will fail.
                  +If you specify a failover partner and the primary server is not configured for database mirroring, the connection to the primary server (specified with the Server keyword) will succeed if the primary
                  server is available.

                  @@ -990,7 +990,7 @@
                  -MinPoolSize
                  -MultipleActiveResultSets
                  -

                  When used, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on +

                  When used, an application can maintain multiple active result sets (MARS). When false, an application must process or cancel all result sets from one batch before it can execute any other batch on
                  that connection.

                  @@ -1019,7 +1019,7 @@
                  -MultipleActiveResultSets
                  -MultiSubnetFailover
                  -

                  If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover provides faster detection of and connection to the (currently) active +

                  If your application is connecting to an AlwaysOn availability group (AG) on different subnets, setting MultiSubnetFailover provides faster detection of and connection to the (currently) active
                  server. For more information about SqlClient support for Always On Availability Groups

                  @@ -1136,8 +1136,8 @@
                  -PacketSize
                  -PooledConnectionLifetime
                  -

                  When a connection is returned to the pool, its creation time is compared with the current time, and the connection is destroyed if that time span (in seconds) exceeds the value specified by -Connection Lifetime. This is useful in clustered configurations to force load balancing between a running server and a server just brought online. +

                  When a connection is returned to the pool, its creation time is compared with the current time, and the connection is destroyed if that time span (in seconds) exceeds the value specified by
                  +Connection Lifetime. This is useful in clustered configurations to force load balancing between a running server and a server just brought online.
                  A value of zero (0) causes pooled connections to have the maximum connection timeout.

                  @@ -1166,7 +1166,7 @@
                  -PooledConnectionLifetime
                  -SqlExecutionModes
                  -

                  The SqlExecutionModes enumeration contains values that are used to specify whether the commands sent to the referenced connection to the server are executed immediately or saved in a buffer. +

                  The SqlExecutionModes enumeration contains values that are used to specify whether the commands sent to the referenced connection to the server are executed immediately or saved in a buffer.
                  Valid values include CaptureSql, ExecuteAndCaptureSql and ExecuteSql.

                  diff --git a/New-DbaConnectionStringBuilder.html b/New-DbaConnectionStringBuilder.html index c831de06..ab85d973 100644 --- a/New-DbaConnectionStringBuilder.html +++ b/New-DbaConnectionStringBuilder.html @@ -604,7 +604,7 @@
                  -DataSource
                  -SqlCredential
                  -

                  Credential object used to connect to the SQL Server Instance as a different user. This can be a Windows or SQL Server account. Windows users are determined by the existence of a backslash, so if you +

                  Credential object used to connect to the SQL Server Instance as a different user. This can be a Windows or SQL Server account. Windows users are determined by the existence of a backslash, so if you
                  are intending to use an alternative Windows connection instead of a SQL login, ensure it contains a backslash.

                  diff --git a/New-DbaCredential.html b/New-DbaCredential.html index ab2f8e18..97c5152e 100644 --- a/New-DbaCredential.html +++ b/New-DbaCredential.html @@ -549,7 +549,7 @@
                  Example: 5
                  As no password is needed in this case, we just don't pass the -SecurePassword parameter.

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server(s)

                  +

                  The target SQL Server(s)

                  @@ -577,7 +577,7 @@
                  -SqlInstance
                  -Identity
                  -

                  The Credential Identity

                  +

                  The Credential Identity

                  @@ -606,8 +606,8 @@
                  -Identity

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -780,8 +780,8 @@
                  -Force
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaCustomError.html b/New-DbaCustomError.html index 98f7e3d1..8650ea94 100644 --- a/New-DbaCustomError.html +++ b/New-DbaCustomError.html @@ -536,8 +536,8 @@
                  Example: 4

                  The resulting updated message object is available in $alteredMessage.

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function -to be executed against multiple SQL Server instances.

                  +

                  The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
                  +to be executed against multiple SQL Server instances.

                  @@ -566,8 +566,8 @@
                  -SqlInstance

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -736,8 +736,8 @@
                  -WithLog
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaDacOption.html b/New-DbaDacOption.html index 0e1488d9..8335e567 100644 --- a/New-DbaDacOption.html +++ b/New-DbaDacOption.html @@ -488,9 +488,9 @@

                  Synopsis

                  Creates a new Microsoft.SqlServer.Dac.DacExtractOptions/DacExportOptions object depending on the chosen Type

                  Description

                  Creates a new Microsoft.SqlServer.Dac.DacExtractOptions/DacExportOptions object that can be used during DacPackage extract. Basically saves you the time from remembering the SMO assembly name ;)

                  -

                  See: -https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.dac.dacexportoptions.aspx -https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.dac.dacextractoptions.aspx +

                  See:
                  +https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.dac.dacexportoptions.aspx
                  +https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.dac.dacextractoptions.aspx
                  for more information

                  Syntax

                  New-DbaDacOption
                  @@ -527,7 +527,7 @@ 
                  Example: 3

                  Uses DacOption object to set Deployment Options and publish the db.dacpac dacpac file as DB1 on sql2016

                  Required Parameters

                  -Action
                  -

                  Choosing an intended action: Publish or Export.

                  +

                  Choosing an intended action: Publish or Export.

                  @@ -620,9 +620,9 @@
                  -PublishXml
                  -Property
                  -

                  A Hashtable that would be used to initialize Options object properties. -If you want to specify DeployOptions parameters, which is a property of the options object, -add the DeployOptions key with an appropriate hashtable as a value: +

                  A Hashtable that would be used to initialize Options object properties.
                  +If you want to specify DeployOptions parameters, which is a property of the options object,
                  +add the DeployOptions key with an appropriate hashtable as a value:
                  @}

                  @@ -651,8 +651,8 @@
                  -Property
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaDacProfile.html b/New-DbaDacProfile.html index 26fc5738..14916428 100644 --- a/New-DbaDacProfile.html +++ b/New-DbaDacProfile.html @@ -487,11 +487,11 @@

                  New-DbaDacProfile

                  Synopsis

                  Creates a new Publish Profile.

                  Description

                  -

                  The New-DbaDacProfile command generates a standard publish profile xml file that can be used by the DacFx (this and everything else) to control the deployment of your dacpac -This generates a standard template XML which is enough to dpeloy a dacpac but it is highly recommended that you add additional options to the publish profile. -If you use Visual Studio you can open a publish.xml file and use the ui to edit the file - -To create a new file, right click on an SSDT project, choose "Publish" then "Load Profile" and load your profile or create a new one. -Once you have loaded it in Visual Studio, clicking advanced shows you the list of options available to you. +

                  The New-DbaDacProfile command generates a standard publish profile xml file that can be used by the DacFx (this and everything else) to control the deployment of your dacpac
                  +This generates a standard template XML which is enough to dpeloy a dacpac but it is highly recommended that you add additional options to the publish profile.
                  +If you use Visual Studio you can open a publish.xml file and use the ui to edit the file -
                  +To create a new file, right click on an SSDT project, choose "Publish" then "Load Profile" and load your profile or create a new one.
                  +Once you have loaded it in Visual Studio, clicking advanced shows you the list of options available to you.
                  For a full list of options that you can add to the profile, google "sqlpackage.exe command line switches" or (https://msdn.microsoft.com/en-us/library/hh550080(v=vs.103).aspx)

                  Syntax

                  New-DbaDacProfile
                  @@ -521,7 +521,7 @@ 
                  Example: 2

                  In this example, no connections are made, and a Publish Profile XML would be created at C:\temp\localdb-MSSQLLocalDB-WorldWideImporters-publish.xml

                  Required Parameters

                  -Database
                  -

                  The database name you are targeting

                  +

                  The database name you are targeting

                  @@ -578,8 +578,8 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -636,7 +636,7 @@
                  -Path
                  -ConnectionString
                  -

                  The connection string to the database you are upgrading. +

                  The connection string to the database you are upgrading.
                  Alternatively, you can provide a SqlInstance (and optionally SqlCredential) and the script will connect and generate the connectionstring.

                  @@ -693,8 +693,8 @@
                  -PublishOptions
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaDatabase.html b/New-DbaDatabase.html index f96fa10a..565b3e36 100644 --- a/New-DbaDatabase.html +++ b/New-DbaDatabase.html @@ -564,7 +564,7 @@
                  Example: 5
                  newDb_MainData_1 (Secondary filegroup files)

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances.

                  +

                  The target SQL Server instance or instances.

                  @@ -593,8 +593,8 @@
                  -SqlInstance

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -679,7 +679,7 @@
                  -Collation
                  -RecoveryModel
                  -

                  The recovery model for the database, if not supplied the recovery model from the model database will be used. +

                  The recovery model for the database, if not supplied the recovery model from the model database will be used.
                  Valid options are: Simple, Full, BulkLogged.

                  @@ -1192,8 +1192,8 @@
                  -SecondaryDataFileSuffix
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaDbAsymmetricKey.html b/New-DbaDbAsymmetricKey.html index 96b28c97..5afabcf5 100644 --- a/New-DbaDbAsymmetricKey.html +++ b/New-DbaDbAsymmetricKey.html @@ -551,8 +551,8 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -693,7 +693,7 @@
                  -Owner
                  -KeySource
                  -

                  The path to the Executable, File or Assembly to be passed in. +

                  The path to the Executable, File or Assembly to be passed in.
                  The path is parsed by the SQL Server instance, so needs to be visible to the instance

                  @@ -722,7 +722,7 @@
                  -KeySource
                  -KeySourceType
                  -

                  The source of external keys loaded in, can be one of Executable, File or Assembly +

                  The source of external keys loaded in, can be one of Executable, File or Assembly
                  We do not currently support Provider

                  @@ -783,7 +783,7 @@
                  -InputObject
                  -Algorithm
                  -

                  The algorithm used to generate the key. Can be one of RSA512, RSA1024, RSA1024, RSA2048, RSA3072 or RSA4096. If not specified RSA2048 is the default +

                  The algorithm used to generate the key. Can be one of RSA512, RSA1024, RSA1024, RSA2048, RSA3072 or RSA4096. If not specified RSA2048 is the default
                  This value will be ignored when KeySource is supplied, as the algorithm is embedded in the KeySource

                  @@ -816,8 +816,8 @@
                  -Algorithm
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaDbCertificate.html b/New-DbaDbCertificate.html index 309ee0aa..d90098ce 100644 --- a/New-DbaDbCertificate.html +++ b/New-DbaDbCertificate.html @@ -547,8 +547,8 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -661,7 +661,7 @@
                  -Subject
                  -StartDate
                  -

                  Optional start date that will be used when creating all certificates +

                  Optional start date that will be used when creating all certificates
                  By default, certs will start immediately

                  @@ -690,7 +690,7 @@
                  -StartDate
                  -ExpirationDate
                  -

                  Optional expiration that will be used when creating all certificates +

                  Optional expiration that will be used when creating all certificates
                  By default, certs will last 5 years

                  @@ -803,8 +803,8 @@
                  -InputObject
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaDbDataGeneratorConfig.html b/New-DbaDbDataGeneratorConfig.html index 621639ed..ef29de09 100644 --- a/New-DbaDbDataGeneratorConfig.html +++ b/New-DbaDbDataGeneratorConfig.html @@ -488,8 +488,8 @@

                  Synopsis

                  Generates a new data generation configuration file.

                  Description

                  Generates a new data generation configuration file. This file is important to apply any data generation to a table in a database.

                  -

                  Read more here: -https://sachabarbs.wordpress.com/2018/06/11/bogus-simple-fake-data-tool/ +

                  Read more here:
                  +https://sachabarbs.wordpress.com/2018/06/11/bogus-simple-fake-data-tool/
                  https://github.com/bchavez/Bogus

                  Syntax

                  New-DbaDbDataGeneratorConfig
                  @@ -521,7 +521,7 @@ 
                  Example: 2

                  Process only table Customer with all the columns

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances.

                  +

                  The target SQL Server instance or instances.

                  @@ -549,8 +549,8 @@
                  -SqlInstance
                  -Path
                  -

                  Path where to save the generated JSON files. -The naming convention will be "servername.databasename.tables.json".

                  +

                  Path where to save the generated JSON files.
                  +The naming convention will be "servername.databasename.tables.json".

                  @@ -579,8 +579,8 @@
                  -Path

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -777,8 +777,8 @@
                  -Force
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaDbEncryptionKey.html b/New-DbaDbEncryptionKey.html index a1d4a746..1d41d53e 100644 --- a/New-DbaDbEncryptionKey.html +++ b/New-DbaDbEncryptionKey.html @@ -549,8 +549,8 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -607,7 +607,7 @@
                  -Database
                  -EncryptorName
                  -

                  The name of the encryptor (Certificate or Asymmetric Key) in master that will be used. Tries to find one if one is not specified. +

                  The name of the encryptor (Certificate or Asymmetric Key) in master that will be used. Tries to find one if one is not specified.
                  In order to encrypt the database encryption key with an asymmetric key, you must use an asymmetric key that resides on an extensible key management provider.

                  @@ -668,7 +668,7 @@
                  -Type
                  -EncryptionAlgorithm
                  -

                  Specifies an encryption algorithm. Defaults to Aes256. +

                  Specifies an encryption algorithm. Defaults to Aes256.
                  Options are: "Aes128", "Aes192", "Aes256", "TripleDes"

                  @@ -729,8 +729,8 @@
                  -InputObject
                  -Force
                  -

                  When a certificate encryptor is used, this command will refuse to create an encryption key for a certificate that has not been backed up -Use Force to create an encryption key even though the specified cert has not been backed up +

                  When a certificate encryptor is used, this command will refuse to create an encryption key for a certificate that has not been backed up
                  +Use Force to create an encryption key even though the specified cert has not been backed up
                  Also, if EncryptorName is specified and the certificate does not exist, it will be created when Force is specified

                  @@ -759,8 +759,8 @@
                  -Force
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaDbFileGroup.html b/New-DbaDbFileGroup.html index 2a7c4495..6ac40369 100644 --- a/New-DbaDbFileGroup.html +++ b/New-DbaDbFileGroup.html @@ -523,7 +523,7 @@
                  Example: 4

                  Passes in the TestDB database via pipeline and creates the HRFG1 filegroup on the TestDb database on the sqldev1 instance.

                  Optional Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function +

                  The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
                  to be executed against multiple SQL Server instances.

                  @@ -552,8 +552,8 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -698,8 +698,8 @@
                  -InputObject
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaDbMailAccount.html b/New-DbaDbMailAccount.html index 5fea5cc0..e77bd6b9 100644 --- a/New-DbaDbMailAccount.html +++ b/New-DbaDbMailAccount.html @@ -514,7 +514,7 @@
                  Example: 1

                  Creates a new database mail account with the email address admin@ad.local on sql2017 named "The DBA Team" using the smtp.ad.local mail server.

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

                  +

                  The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

                  @@ -542,7 +542,7 @@
                  -SqlInstance
                  -Account
                  -

                  The name of the account to be created.

                  +

                  The name of the account to be created.

                  @@ -570,7 +570,7 @@
                  -Account
                  -EmailAddress
                  -

                  Sets the e-mail address of the mail account.

                  +

                  Sets the e-mail address of the mail account.

                  @@ -599,8 +599,8 @@
                  -EmailAddress

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -769,8 +769,8 @@
                  -Force
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaDbMailProfile.html b/New-DbaDbMailProfile.html index 2ac9fec0..ba25177a 100644 --- a/New-DbaDbMailProfile.html +++ b/New-DbaDbMailProfile.html @@ -511,7 +511,7 @@
                  Example: 1

                  Creates a new database mail profile.

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

                  +

                  The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

                  @@ -539,7 +539,7 @@
                  -SqlInstance
                  -Profile
                  -

                  The name of the profile to be created.

                  +

                  The name of the profile to be created.

                  @@ -568,8 +568,8 @@
                  -Profile

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -682,8 +682,8 @@
                  -MailAccountPriority
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaDbMaskingConfig.html b/New-DbaDbMaskingConfig.html index db89b46b..3ebb43a0 100644 --- a/New-DbaDbMaskingConfig.html +++ b/New-DbaDbMaskingConfig.html @@ -488,16 +488,16 @@

                  Synopsis

                  Generates a new data masking configuration file to be used with Invoke-DbaDbDataMasking

                  Description

                  Generates a new data masking configuration file. This file is important to apply any data masking to the data in a database.

                  -

                  Note that the following column and data types are not currently supported: -Identity -ForeignKey -Computed -Hierarchyid -Geography -Geometry +

                  Note that the following column and data types are not currently supported:
                  +Identity
                  +ForeignKey
                  +Computed
                  +Hierarchyid
                  +Geography
                  +Geometry
                  Xml

                  -

                  Read more here: -https://sachabarbs.wordpress.com/2018/06/11/bogus-simple-fake-data-tool/ +

                  Read more here:
                  +https://sachabarbs.wordpress.com/2018/06/11/bogus-simple-fake-data-tool/
                  https://github.com/bchavez/Bogus

                  Syntax

                  New-DbaDbMaskingConfig
                  @@ -539,8 +539,8 @@ 
                  Example: 3

                  Process only table Customer and only the column named "City"

                  Required Parameters

                  -Path
                  -

                  Path where to save the generated JSON files. -Th naming convention will be "servername.databasename.tables.json"

                  +

                  Path where to save the generated JSON files.
                  +Th naming convention will be "servername.databasename.tables.json"

                  @@ -597,8 +597,8 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -963,8 +963,8 @@
                  -InputObject
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaDbMasterKey.html b/New-DbaDbMasterKey.html index 7d51deb0..661c83b7 100644 --- a/New-DbaDbMasterKey.html +++ b/New-DbaDbMasterKey.html @@ -547,8 +547,8 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -689,8 +689,8 @@
                  -InputObject
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaDbRole.html b/New-DbaDbRole.html index 3df50c79..4d24ac8d 100644 --- a/New-DbaDbRole.html +++ b/New-DbaDbRole.html @@ -540,8 +540,8 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -710,8 +710,8 @@
                  -InputObject
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaDbSchema.html b/New-DbaDbSchema.html index 86944313..103bb7cd 100644 --- a/New-DbaDbSchema.html +++ b/New-DbaDbSchema.html @@ -523,7 +523,7 @@
                  Example: 4

                  Passes in the example1 db via pipeline and creates the TestSchema1 and TestSchema2 schemas and assigns the dbatools user as the owner of the schemas.

                  Optional Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function +

                  The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
                  to be executed against multiple SQL Server instances.

                  @@ -552,8 +552,8 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -694,8 +694,8 @@
                  -InputObject
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaDbSequence.html b/New-DbaDbSequence.html index fc82061f..a392a077 100644 --- a/New-DbaDbSequence.html +++ b/New-DbaDbSequence.html @@ -526,7 +526,7 @@
                  Example: 3

                  Using a pipeline this command creates a new bigint sequence named TestSchema.TestSequence in the TestDB database on the sqldev01 instance.

                  Required Parameters

                  -Sequence
                  -

                  The name of the new sequence

                  +

                  The name of the new sequence

                  @@ -555,7 +555,7 @@
                  -Sequence

                  Optional Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function +

                  The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
                  to be executed against multiple SQL Server instances.

                  @@ -584,8 +584,8 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -894,8 +894,8 @@
                  -InputObject
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaDbSnapshot.html b/New-DbaDbSnapshot.html index 0af20a8f..f9c42c60 100644 --- a/New-DbaDbSnapshot.html +++ b/New-DbaDbSnapshot.html @@ -559,8 +559,8 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -673,7 +673,7 @@
                  -AllDatabases
                  -Name
                  -

                  The specific snapshot name you want to create. Works only if you target a single database. If you need to create multiple snapshot, +

                  The specific snapshot name you want to create. Works only if you target a single database. If you need to create multiple snapshot,
                  you must use the NameSuffix parameter

                  @@ -702,7 +702,7 @@
                  -Name
                  -NameSuffix
                  -

                  When you pass a simple string, it'll be appended to use it to build the name of the snapshot. By default snapshots are created with yyyyMMdd_HHmmss suffix +

                  When you pass a simple string, it'll be appended to use it to build the name of the snapshot. By default snapshots are created with yyyyMMdd_HHmmss suffix
                  You can also pass a standard placeholder, in which case it'll be interpolated (e.g. '{0}' gets replaced with the database name)

                  @@ -759,9 +759,9 @@
                  -Path
                  -Force
                  -

                  Databases with Filestream FG can be snapshotted, but the Filestream FG is marked offline -in the snapshot. To create a "partial" snapshot, you need to pass -Force explicitly -NB: You can't then restore the Database from the newly-created snapshot. +

                  Databases with Filestream FG can be snapshotted, but the Filestream FG is marked offline
                  +in the snapshot. To create a "partial" snapshot, you need to pass -Force explicitly
                  +NB: You can't then restore the Database from the newly-created snapshot.
                  For details, check https://msdn.microsoft.com/en-us/library/bb895334.aspx

                  @@ -818,8 +818,8 @@
                  -InputObject
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaDbSynonym.html b/New-DbaDbSynonym.html index 424cde4c..7f940e4f 100644 --- a/New-DbaDbSynonym.html +++ b/New-DbaDbSynonym.html @@ -540,7 +540,7 @@
                  Example: 7

                  Will create a new synonym named synObj1 within dbo schema in all user databases on sql2017a instance for Obj1 object in the respective databases.

                  Required Parameters

                  -BaseObject
                  -

                  The object name. Can be table, view, stored procedure, function, etc.

                  +

                  The object name. Can be table, view, stored procedure, function, etc.

                  @@ -597,8 +597,8 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -851,8 +851,8 @@
                  -InputObject
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaDbTable.html b/New-DbaDbTable.html index 7e1b860b..b4414a6a 100644 --- a/New-DbaDbTable.html +++ b/New-DbaDbTable.html @@ -690,8 +690,8 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -2260,8 +2260,8 @@
                  -InputObject
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaDbTransfer.html b/New-DbaDbTransfer.html index 049f6dbe..5b81d2e9 100644 --- a/New-DbaDbTransfer.html +++ b/New-DbaDbTransfer.html @@ -487,7 +487,7 @@

                  New-DbaDbTransfer

                  Synopsis

                  Creates a transfer object to clone objects from one database to another.

                  Description

                  -

                  Returns an SMO Transfer object that controls the process of copying database objects from one database to another. +

                  Returns an SMO Transfer object that controls the process of copying database objects from one database to another.
                  Does not perform any actions unless explicitly called with .TransferData() or piped into Invoke-DbaDbTransfer.

                  Syntax

                  New-DbaDbTransfer
                  @@ -550,8 +550,8 @@ 
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -608,7 +608,7 @@
                  -DestinationSqlInstance
                  -DestinationSqlCredential
                  -

                  Login to the source instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). +

                  Login to the source instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  Only SQL authentication is supported. When not specified, uses Trusted Authentication.

                  @@ -833,35 +833,35 @@
                  -CopyAllObjects
                  -CopyAll
                  -

                  Object types to be transferred from a database. Allowed values: -FullTextCatalogs -FullTextStopLists -SearchPropertyLists -Tables -Views -StoredProcedures -UserDefinedFunctions -UserDefinedDataTypes -UserDefinedTableTypes -PlanGuides -Rules -Defaults -Users -Roles -PartitionSchemes -PartitionFunctions -XmlSchemaCollections -SqlAssemblies -UserDefinedAggregates -UserDefinedTypes -Schemas -Synonyms -Sequences -DatabaseTriggers -DatabaseScopedCredentials -ExternalFileFormats -ExternalDataSources -Logins +

                  Object types to be transferred from a database. Allowed values:
                  +FullTextCatalogs
                  +FullTextStopLists
                  +SearchPropertyLists
                  +Tables
                  +Views
                  +StoredProcedures
                  +UserDefinedFunctions
                  +UserDefinedDataTypes
                  +UserDefinedTableTypes
                  +PlanGuides
                  +Rules
                  +Defaults
                  +Users
                  +Roles
                  +PartitionSchemes
                  +PartitionFunctions
                  +XmlSchemaCollections
                  +SqlAssemblies
                  +UserDefinedAggregates
                  +UserDefinedTypes
                  +Schemas
                  +Synonyms
                  +Sequences
                  +DatabaseTriggers
                  +DatabaseScopedCredentials
                  +ExternalFileFormats
                  +ExternalDataSources
                  +Logins
                  ExternalLibraries

                  @@ -950,8 +950,8 @@
                  -DataOnly
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaDbUser.html b/New-DbaDbUser.html index 6f8c67e0..225cf40d 100644 --- a/New-DbaDbUser.html +++ b/New-DbaDbUser.html @@ -494,7 +494,8 @@

                  Syntax

                  [-SqlCredential <PSCredential>] [-Database <String[]>] [-ExcludeDatabase <String[]>] - [-IncludeSystem] -Login <String> + [-IncludeSystem] + -Login <String> [-Username <String>] [-DefaultSchema <String>] [-Force] @@ -508,8 +509,10 @@

                  Syntax

                  [-SqlCredential <PSCredential>] [-Database <String[]>] [-ExcludeDatabase <String[]>] - [-IncludeSystem] -Username <String> - [-DefaultSchema <String>] -ExternalProvider + [-IncludeSystem] + -Username <String> + [-DefaultSchema <String>] + -ExternalProvider [-Force] [-EnableException] [-WhatIf] @@ -521,8 +524,10 @@

                  Syntax

                  [-SqlCredential <PSCredential>] [-Database <String[]>] [-ExcludeDatabase <String[]>] - [-IncludeSystem] -Username <String> - [-DefaultSchema <String>] -Password <SecureString> + [-IncludeSystem] + -Username <String> + [-DefaultSchema <String>] + -Password <SecureString> [-Force] [-EnableException] [-WhatIf] @@ -534,7 +539,8 @@

                  Syntax

                  [-SqlCredential <PSCredential>] [-Database <String[]>] [-ExcludeDatabase <String[]>] - [-IncludeSystem] -Username <String> + [-IncludeSystem] + -Username <String> [-DefaultSchema <String>] [-Force] [-EnableException] @@ -572,7 +578,7 @@
                  Example: 6

                  Creates a new cointained sql user named user1 in the database given database with the password specified.

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances. Defaults to the default instance on localhost.

                  +

                  The target SQL Server instance or instances. Defaults to the default instance on localhost.

                  @@ -600,7 +606,7 @@
                  -SqlInstance
                  -Login
                  -

                  When specified, the user will be associated to this SQL login and have the same name as the Login.

                  +

                  When specified, the user will be associated to this SQL login and have the same name as the Login.

                  @@ -628,7 +634,7 @@
                  -Login
                  -Password
                  -

                  When specified, the user will be created as a contained user. Standalone databases partial containment should be turned on to succeed. By default, in Azure SQL databases this is turned on.

                  +

                  When specified, the user will be created as a contained user. Standalone databases partial containment should be turned on to succeed. By default, in Azure SQL databases this is turned on.

                  @@ -656,8 +662,8 @@
                  -Password
                  -ExternalProvider
                  -

                  Specifies that the user is for Azure AD Authentication. -Equivalent to T-SQL: 'CREATE USER [claudio@********.onmicrosoft.com] FROM EXTERNAL PROVIDER`

                  +

                  Specifies that the user is for Azure AD Authentication.
                  +Equivalent to T-SQL: 'CREATE USER [claudio@********.onmicrosoft.com] FROM EXTERNAL PROVIDER`

                  @@ -686,8 +692,8 @@
                  -ExternalProvider

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -884,8 +890,8 @@
                  -Force
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaDiagnosticAdsNotebook.html b/New-DbaDiagnosticAdsNotebook.html index 7e25315f..bb8cf12c 100644 --- a/New-DbaDiagnosticAdsNotebook.html +++ b/New-DbaDiagnosticAdsNotebook.html @@ -487,7 +487,7 @@

                  New-DbaDiagnosticAdsNotebook

                  Synopsis

                  Creates a new Diagnostic Jupyter Notebook for use with Azure Data Studio

                  Description

                  -

                  Creates a new Jupyter Notebook for use with Azure Data Studio, based on Glenn Berry's +

                  Creates a new Jupyter Notebook for use with Azure Data Studio, based on Glenn Berry's
                  popular Diagnostic queries

                  Syntax

                  New-DbaDiagnosticAdsNotebook
                  @@ -519,7 +519,7 @@ 
                  Example: 3

                  Creates a new Jupyter Notebook named "myNotebook" based on the version "2017" of diagnostic queries, including database-specific queries

                  Required Parameters

                  -Path
                  -

                  Specifies the output path of the Jupyter Notebook

                  +

                  Specifies the output path of the Jupyter Notebook

                  @@ -576,8 +576,8 @@
                  -SqlInstance
                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -606,7 +606,7 @@
                  -SqlCredential
                  -TargetVersion
                  -

                  If you are not creating the notebook for a specific instance of SQL Server, you can specify the version that you want to create the notebook for. +

                  If you are not creating the notebook for a specific instance of SQL Server, you can specify the version that you want to create the notebook for.
                  Must be one of "2005", "2008", "2008R2", "2012", "2014", "2016", "2016SP2", "2017", "2019", "2022", "AzureSQLDatabase"

                  @@ -667,8 +667,8 @@
                  -IncludeDatabaseSpecific
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaDirectory.html b/New-DbaDirectory.html index 4bcc6463..283ac303 100644 --- a/New-DbaDirectory.html +++ b/New-DbaDirectory.html @@ -487,7 +487,7 @@

                  New-DbaDirectory

                  Synopsis

                  Creates new path as specified by the path variable

                  Description

                  -

                  Uses master.dbo.xp_create_subdir to create the path +

                  Uses master.dbo.xp_create_subdir to create the path
                  Returns $true if the path can be created, $false otherwise

                  Syntax

                  New-DbaDirectory
                  @@ -514,7 +514,7 @@ 
                  Example: 2

                  If the SQL Server instance sqlcluster can create the path L:\MSAS12.MSSQLSERVER\OLAP it will do and return $true, if not it will return $false. Uses a SqlCredential to connect

                  Required Parameters

                  -SqlInstance
                  -

                  The SQL Server you want to run the test on.

                  +

                  The SQL Server you want to run the test on.

                  @@ -542,7 +542,7 @@
                  -SqlInstance
                  -Path
                  -

                  The Path to tests. Can be a file or directory.

                  +

                  The Path to tests. Can be a file or directory.

                  @@ -571,8 +571,8 @@
                  -Path

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -601,8 +601,8 @@
                  -SqlCredential
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaEndpoint.html b/New-DbaEndpoint.html index 38a73152..034bbecc 100644 --- a/New-DbaEndpoint.html +++ b/New-DbaEndpoint.html @@ -527,7 +527,7 @@
                  Example: 3

                  Creates a database mirroring endpoint on localhost\sql2017 which binds only on ipaddress 192.168.0.15 and port 5055

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances.

                  +

                  The target SQL Server instance or instances.

                  @@ -556,8 +556,8 @@
                  -SqlInstance

                  Optional Parameters

                  -SqlCredential
                  -

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                  Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                  +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                  For MFA support, please use Connect-DbaInstance.

                  @@ -710,9 +710,9 @@
                  -Role
                  -EndpointEncryption
                  -

                  Used to specify the state of encryption on the endpoint. Defaults to required. -Disabled -Required +

                  Used to specify the state of encryption on the endpoint. Defaults to required.
                  +Disabled
                  +Required
                  Supported

                  @@ -745,12 +745,12 @@
                  -EndpointEncryption
                  -EncryptionAlgorithm
                  -

                  Specifies an encryption algorithm used on an endpoint. Defaults to Aes. -Options are: -AesRC4 -Aes -None -RC4 +

                  Specifies an encryption algorithm used on an endpoint. Defaults to Aes.
                  +Options are:
                  +AesRC4
                  +Aes
                  +None
                  +RC4
                  RC4Aes

                  @@ -783,17 +783,17 @@
                  -EncryptionAlgorithm
                  -AuthenticationOrder
                  -

                  The type of connection authentication required for connections to this endpoint. Defaults to Negotiate. -Options are: -Certificate -CertificateKerberos -CertificateNegotiate -CertificateNtlm -Kerberos -KerberosCertificate -Negotiate -NegotiateCertificate -Ntlm +

                  The type of connection authentication required for connections to this endpoint. Defaults to Negotiate.
                  +Options are:
                  +Certificate
                  +CertificateKerberos
                  +CertificateNegotiate
                  +CertificateNtlm
                  +Kerberos
                  +KerberosCertificate
                  +Negotiate
                  +NegotiateCertificate
                  +Ntlm
                  NtlmCertificate

                  @@ -854,7 +854,7 @@
                  -Certificate
                  -IPAddress
                  -

                  Specifies the IP address that the endpoint will listen on. The default is ALL. This means that the listener will accept a connection on any valid IP address. +

                  Specifies the IP address that the endpoint will listen on. The default is ALL. This means that the listener will accept a connection on any valid IP address.
                  Currently only IPv4 is supported by this command.

                  @@ -967,8 +967,8 @@
                  -Owner
                  -EnableException
                  -

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                  By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                  +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                  Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                  diff --git a/New-DbaFirewallRule.html b/New-DbaFirewallRule.html index ba13d3f4..79775542 100644 --- a/New-DbaFirewallRule.html +++ b/New-DbaFirewallRule.html @@ -488,43 +488,43 @@

                  Synopsis

                  Creates a new inbound firewall rule for a SQL Server instance and adds the rule to the target computer.

                  Description

                  Creates a new inbound firewall rule for a SQL Server instance and adds the rule to the target computer.

                  -

                  This is basically a wrapper around New-NetFirewallRule executed at the target computer. +

                  This is basically a wrapper around New-NetFirewallRule executed at the target computer.
                  So this only works if New-NetFirewallRule works on the target computer.

                  -

                  Both DisplayName and Name are set to the same value, since DisplayName is required -but only Name uniquely defines the rule, thus avoiding duplicate rules with different settings. +

                  Both DisplayName and Name are set to the same value, since DisplayName is required
                  +but only Name uniquely defines the rule, thus avoiding duplicate rules with different settings.
                  The names and the group for all rules are fixed to be able to get them back with Get-DbaFirewallRule.

                  The functionality is currently limited. Help to extend the functionality is welcome.

                  -

                  As long as you can read this note here, there may be breaking changes in future versions. +

                  As long as you can read this note here, there may be breaking changes in future versions.
                  So please review your scripts using this command after updating dbatools.

                  The firewall rule for the instance itself will have the following configuration (parameters for New-NetFirewallRule):

                  -
                  DisplayName = 'SQL Server default instance' or 'SQL Server instance <InstanceName>'
                  -Name        = 'SQL Server default instance' or 'SQL Server instance <InstanceName>'
                  -Group       = 'SQL Server'
                  -Enabled     = 'True'
                  -Direction   = 'Inbound'
                  -Protocol    = 'TCP'
                  -LocalPort   = '<Port>' (for instances with static port)
                  -Program     = '<Path ending with MSSQL\Binn\sqlservr.exe>' (for instances with dynamic port)
                  +
                  DisplayName = 'SQL Server default instance' or 'SQL Server instance <InstanceName>'  
                  +Name        = 'SQL Server default instance' or 'SQL Server instance <InstanceName>'  
                  +Group       = 'SQL Server'  
                  +Enabled     = 'True'  
                  +Direction   = 'Inbound'  
                  +Protocol    = 'TCP'  
                  +LocalPort   = '<Port>' (for instances with static port)  
                  +Program     = '<Path ending with MSSQL\Binn\sqlservr.exe>' (for instances with dynamic port)  
                   

                  The firewall rule for the SQL Server Browser will have the following configuration (parameters for New-NetFirewallRule):

                  -
                  DisplayName = 'SQL Server Browser'
                  -Name        = 'SQL Server Browser'
                  -Group       = 'SQL Server'
                  -Enabled     = 'True'
                  -Direction   = 'Inbound'
                  -Protocol    = 'UDP'
                  -LocalPort   = '1434'
                  +
                  DisplayName = 'SQL Server Browser'  
                  +Name        = 'SQL Server Browser'  
                  +Group       = 'SQL Server'  
                  +Enabled     = 'True'  
                  +Direction   = 'Inbound'  
                  +Protocol    = 'UDP'  
                  +LocalPort   = '1434'  
                   

                  The firewall rule for the dedicated admin connection (DAC) will have the following configuration (parameters for New-NetFirewallRule):

                  -
                  DisplayName = 'SQL Server default instance (DAC)' or 'SQL Server instance <InstanceName> (DAC)'
                  -Name        = 'SQL Server default instance (DAC)' or 'SQL Server instance <InstanceName> (DAC)'
                  -Group       = 'SQL Server'
                  -Enabled     = 'True'
                  -Direction   = 'Inbound'
                  -Protocol    = 'TCP'
                  -LocalPort   = '<Port>' (typically 1434 for a default instance, but will be fetched from ERRORLOG)
                  +
                  DisplayName = 'SQL Server default instance (DAC)' or 'SQL Server instance <InstanceName> (DAC)'  
                  +Name        = 'SQL Server default instance (DAC)' or 'SQL Server instance <InstanceName> (DAC)'  
                  +Group       = 'SQL Server'  
                  +Enabled     = 'True'  
                  +Direction   = 'Inbound'  
                  +Protocol    = 'TCP'  
                  +LocalPort   = '<Port>' (typically 1434 for a default instance, but will be fetched from ERRORLOG)  
                   
                  -

                  The firewall rule for the DAC will only be created if the DAC is configured for listening remotely. +

                  The firewall rule for the DAC will only be created if the DAC is configured for listening remotely.
                  Use Set-DbaSpConfigure -SqlInstance SRV1 -Name RemoteDacConnectionsEnabled -Value 1 to enable remote DAC before running this command.

                  Syntax

                  New-DbaFirewallRule
                  @@ -557,7 +557,7 @@ 
                  Example: 3

                  Creates or recreates the firewall rule for the instance TEST on SRV1. Does not prompt for confirmation.

                  Required Parameters

                  -SqlInstance
                  -

                  The target SQL Server instance or instances.

                  +

                  The target SQL Server instance or instances.

                  @@ -614,12 +614,12 @@
                  -Credential
                  -Type
                  -

                  Creates firewall rules for the given type(s). +

                  Creates firewall rules for the given type(s).
                  Valid values are:

                  • Engine - for the SQL Server instance
                  • Browser - for the SQL Server Browser
                  • -
                  • DAC - for the dedicated admin connection (DAC) +
                  • DAC - for the dedicated admin connection (DAC)
                    If this parameter is not used:
                  • The firewall rule for the SQL Server instance will be created.
                  • In case the instance is listening on a port other than 1433, also the firewall rule for the SQL Server Browser will be created if not already in place.
                  • @@ -656,9 +656,9 @@
                    -Type
                    -Configuration
                    -

                    A hashtable with custom configuration parameters that are used when calling New-NetFirewallRule. -These will override the default settings. -Parameters Name, DisplayName and Group are not allowed here and will be silently ignored. +

                    A hashtable with custom configuration parameters that are used when calling New-NetFirewallRule.
                    +These will override the default settings.
                    +Parameters Name, DisplayName and Group are not allowed here and will be silently ignored.
                    https://docs.microsoft.com/en-us/powershell/module/netsecurity/new-netfirewallrule

                    @@ -687,7 +687,7 @@
                    -Configuration
                    -Force
                    -

                    If the rule to be created already exists, a warning is displayed. +

                    If the rule to be created already exists, a warning is displayed.
                    If this switch is enabled, the rule will be deleted and created again.

                    @@ -716,8 +716,8 @@
                    -Force
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/New-DbaLinkedServer.html b/New-DbaLinkedServer.html index 7153f0f3..456df03e 100644 --- a/New-DbaLinkedServer.html +++ b/New-DbaLinkedServer.html @@ -527,7 +527,7 @@
                    Example: 3
                    mapped to the remote server will use the current login's security context.

                    Optional Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function +

                    The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
                    to be executed against multiple SQL Server instances.

                    @@ -556,8 +556,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -782,9 +782,9 @@
                    -Catalog
                    -SecurityContext
                    -

                    Specifies the security context option found on the SSMS Security tab of the linked server. This is a separate configuration from the mapping of a local login to a remote login. It specifies the -connection behavior for a login that is not explicitly mapped. 'NoConnection' means that a connection will not be made. 'WithoutSecurityContext' means the connection will be made without using a -security context. 'CurrentSecurityContext' means the connection will be made using the login's current security context. 'SpecifiedSecurityContext' means the specified username and password will be +

                    Specifies the security context option found on the SSMS Security tab of the linked server. This is a separate configuration from the mapping of a local login to a remote login. It specifies the
                    +connection behavior for a login that is not explicitly mapped. 'NoConnection' means that a connection will not be made. 'WithoutSecurityContext' means the connection will be made without using a
                    +security context. 'CurrentSecurityContext' means the connection will be made using the login's current security context. 'SpecifiedSecurityContext' means the specified username and password will be
                    used. The default value is 'WithoutSecurityContext'. For more details see the Microsoft documentation for sp_addlinkedsrvlogin and also review the SSMS Security tab of the linked server.

                    @@ -845,7 +845,7 @@
                    -SecurityContextRemoteUser
                    -SecurityContextRemoteUserPassword
                    -

                    Specifies the remote login password. This param is used when SecurityContext is set to SpecifiedSecurityContext. To map a local login to a remote login use New-DbaLinkedServerLogin. NOTE: passwords +

                    Specifies the remote login password. This param is used when SecurityContext is set to SpecifiedSecurityContext. To map a local login to a remote login use New-DbaLinkedServerLogin. NOTE: passwords
                    are sent to the SQL Server instance in plain text. Check with your security administrator before using this parameter.

                    @@ -902,8 +902,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/New-DbaLinkedServerLogin.html b/New-DbaLinkedServerLogin.html index b501808f..0b50e4f0 100644 --- a/New-DbaLinkedServerLogin.html +++ b/New-DbaLinkedServerLogin.html @@ -527,7 +527,7 @@
                    Example: 3
                    sp_addlinkedsrvlogin for more details.

                    Optional Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function +

                    The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
                    to be executed against multiple SQL Server instances.

                    @@ -556,8 +556,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -670,7 +670,7 @@
                    -RemoteUser
                    -RemoteUserPassword
                    -

                    Specifies the remote login password as a secure string. NOTE: passwords are sent to the SQL Server instance in plain text. Check with your security administrator before using this parameter. View the +

                    Specifies the remote login password as a secure string. NOTE: passwords are sent to the SQL Server instance in plain text. Check with your security administrator before using this parameter. View the
                    documentation for sp_addlinkedsrvlogin for more details.

                    @@ -755,8 +755,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/New-DbaLogin.html b/New-DbaLogin.html index 4e5b9ce6..583104ef 100644 --- a/New-DbaLogin.html +++ b/New-DbaLogin.html @@ -611,7 +611,7 @@
                    Example: 7

                    Creates a new login named 'claudio@********.onmicrosoft.com' mapped to Azure Active Directory (AAD).

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server(s)

                    +

                    The target SQL Server(s)

                    @@ -640,8 +640,8 @@
                    -SqlInstance

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -1034,7 +1034,7 @@
                    -PasswordPolicyEnforced
                    -PasswordMustChange
                    -

                    Enforces user must change password at next login. +

                    Enforces user must change password at next login.
                    When specified will enforce PasswordExpirationEnabled and PasswordPolicyEnforced as they are required for the must change.

                    @@ -1147,7 +1147,7 @@
                    -NewSid
                    -ExternalProvider
                    -

                    Specifies that the login is for Azure AD Authentication. +

                    Specifies that the login is for Azure AD Authentication.
                    Equivalent to T-SQL: 'CREATE LOGIN [claudio@********.onmicrosoft.com] FROM EXTERNAL PROVIDER`

                    @@ -1204,8 +1204,8 @@
                    -Force
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/New-DbaReplCreationScriptOptions.html b/New-DbaReplCreationScriptOptions.html index c9a665fc..d6b7ce24 100644 --- a/New-DbaReplCreationScriptOptions.html +++ b/New-DbaReplCreationScriptOptions.html @@ -526,7 +526,7 @@
                    Example: 2

                    Adds the stores table to the testPub publication from mssql1.pubs with the ClusteredIndexes and Identity options set, excludes default options.

                    Optional Parameters

                    -Options
                    -

                    The options to set on published articles. +

                    The options to set on published articles.
                    See https://docs.microsoft.com/en-us/dotnet/api/microsoft.sqlserver.replication.creationscriptoptions for a list of available options

                    @@ -555,11 +555,11 @@
                    -Options
                    -NoDefaults
                    -

                    If specified, no default options will be set on the object -Defaults are copied from when you add an article in SQL Server Management Studio and include: -PrimaryObject, CustomProcedures, Identity, KeepTimestamp, -ClusteredIndexes, DriPrimaryKey, Collation, DriUniqueKeys, -MarkReplicatedCheckConstraintsAsNotForReplication, +

                    If specified, no default options will be set on the object
                    +Defaults are copied from when you add an article in SQL Server Management Studio and include:
                    +PrimaryObject, CustomProcedures, Identity, KeepTimestamp,
                    +ClusteredIndexes, DriPrimaryKey, Collation, DriUniqueKeys,
                    +MarkReplicatedCheckConstraintsAsNotForReplication,
                    MarkReplicatedForeignKeyConstraintsAsNotForReplication, and Schema

                    diff --git a/New-DbaReplPublication.html b/New-DbaReplPublication.html index b8d0015d..b798048a 100644 --- a/New-DbaReplPublication.html +++ b/New-DbaReplPublication.html @@ -520,7 +520,7 @@
                    Example: 3

                    Creates a merge publication called mergePub for the pubs database on mssql1

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances.

                    +

                    The target SQL Server instance or instances.

                    @@ -548,7 +548,7 @@
                    -SqlInstance
                    -Database
                    -

                    The database that contains the articles to be replicated.

                    +

                    The database that contains the articles to be replicated.

                    @@ -576,7 +576,7 @@
                    -Database
                    -Name
                    -

                    The name of the replication publication.

                    +

                    The name of the replication publication.

                    @@ -604,8 +604,8 @@
                    -Name
                    -Type
                    -

                    The flavour of replication. -Options are Transactional, Snapshot, Merge

                    +

                    The flavour of replication.
                    +Options are Transactional, Snapshot, Merge

                    @@ -638,8 +638,8 @@
                    -Type

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -668,9 +668,9 @@
                    -SqlCredential
                    -LogReaderAgentCredential
                    -

                    Used to provide the credentials for the Microsoft Windows account under which the Log Reader Agent runs -Setting LogReaderAgentProcessSecurity is not required when the publication is created by a member of the sysadmin fixed server role. -In this case, the agent will impersonate the SQL Server Agent account. For more information, see Replication Agent Security Model. +

                    Used to provide the credentials for the Microsoft Windows account under which the Log Reader Agent runs
                    +Setting LogReaderAgentProcessSecurity is not required when the publication is created by a member of the sysadmin fixed server role.
                    +In this case, the agent will impersonate the SQL Server Agent account. For more information, see Replication Agent Security Model.
                    TODO: test LogReaderAgentCredential parameters

                    @@ -699,8 +699,8 @@
                    -LogReaderAgentCredential
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/New-DbaReplSubscription.html b/New-DbaReplSubscription.html index 522ff692..2844fca7 100644 --- a/New-DbaReplSubscription.html +++ b/New-DbaReplSubscription.html @@ -518,7 +518,7 @@
                    Example: 2

                    Creates a pull subscription from sql2017 to sql2019 for the pubs database.

                    Required Parameters

                    -SqlInstance
                    -

                    The target publishing SQL Server instance or instances.

                    +

                    The target publishing SQL Server instance or instances.

                    @@ -546,7 +546,7 @@
                    -SqlInstance
                    -SubscriberSqlInstance
                    -

                    The subscriber SQL instance.

                    +

                    The subscriber SQL instance.

                    @@ -574,7 +574,7 @@
                    -SubscriberSqlInstance
                    -PublicationName
                    -

                    The name of the replication publication

                    +

                    The name of the replication publication

                    @@ -602,7 +602,7 @@
                    -PublicationName
                    -Type
                    -

                    The flavour of the subscription. Push or Pull.

                    +

                    The flavour of the subscription. Push or Pull.

                    @@ -635,8 +635,8 @@
                    -Type

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target publishing instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target publishing instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -693,8 +693,8 @@
                    -Database
                    -SubscriberSqlCredential
                    -

                    Login to the subscriber instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the subscriber instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -779,8 +779,8 @@
                    -SubscriptionSqlCredential
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/New-DbaRgResourcePool.html b/New-DbaRgResourcePool.html index a7a8e929..ab24e364 100644 --- a/New-DbaRgResourcePool.html +++ b/New-DbaRgResourcePool.html @@ -487,7 +487,7 @@

                    New-DbaRgResourcePool

                    Synopsis

                    Creates a resource pool for use by the Resource Governor on the specified SQL Server.

                    Description

                    -

                    Creates a resource pool for use by the Resource Governor on the specified SQL Server. +

                    Creates a resource pool for use by the Resource Governor on the specified SQL Server.
                    A resource pool represents a subset of the physical resources (memory, CPUs and IO) of an instance of the Database Engine.

                    Syntax

                    New-DbaRgResourcePool -SqlInstance <DbaInstanceParameter[]>
                    @@ -551,7 +551,7 @@ 
                    Example: 2
                    until it is reconfigured.

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances.

                    +

                    The target SQL Server instance or instances.

                    @@ -724,7 +724,7 @@
                    -MaximumCpuPercentage
                    -CapCpuPercentage
                    -

                    Specifies a hard cap on the CPU bandwidth that all requests in the resource pool will receive. +

                    Specifies a hard cap on the CPU bandwidth that all requests in the resource pool will receive.
                    Limits the maximum CPU bandwidth level to be the same as the specified value. Only for SQL Server 2012+

                    @@ -865,7 +865,7 @@
                    -MaximumIOPSPerVolume
                    -MaximumProcesses
                    -

                    Specifies the maximum number of processes allowed for the external resource pool. +

                    Specifies the maximum number of processes allowed for the external resource pool.
                    Specify 0 to set an unlimited threshold for the pool, which is thereafter bound only by computer resources.

                    @@ -894,7 +894,7 @@
                    -MaximumProcesses
                    -SkipReconfigure
                    -

                    Resource Governor requires a reconfiguriation for resource pool changes to take effect. +

                    Resource Governor requires a reconfiguriation for resource pool changes to take effect.
                    Use this switch to skip issuing a reconfigure for the Resource Governor.

                    @@ -951,8 +951,8 @@
                    -Force
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/New-DbaRgWorkloadGroup.html b/New-DbaRgWorkloadGroup.html index 4fd9d40a..a9c939f2 100644 --- a/New-DbaRgWorkloadGroup.html +++ b/New-DbaRgWorkloadGroup.html @@ -487,7 +487,7 @@

                    New-DbaRgWorkloadGroup

                    Synopsis

                    Creates a Resource Governor workload group and associates the workload group with a Resource Governor resource pool.

                    Description

                    -

                    Creates a Resource Governor workload group and associates the workload group with a Resource Governor resource pool. +

                    Creates a Resource Governor workload group and associates the workload group with a Resource Governor resource pool.
                    A workload group represents a subset of the resources of a resource pool in instance of the Database Engine.

                    Syntax

                    New-DbaRgWorkloadGroup
                    @@ -839,7 +839,7 @@ 
                    -GroupMaximumRequests
                    -SkipReconfigure
                    -

                    Resource Governor requires a reconfiguriation for workload group changes to take effect. +

                    Resource Governor requires a reconfiguriation for workload group changes to take effect.
                    Use this switch to skip issuing a reconfigure for the Resource Governor.

                    @@ -896,8 +896,8 @@
                    -Force
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/New-DbaServerRole.html b/New-DbaServerRole.html index 2d723d84..7110dfd8 100644 --- a/New-DbaServerRole.html +++ b/New-DbaServerRole.html @@ -509,7 +509,7 @@
                    Example: 1

                    Will create a new server role named dbExecuter and grant ownership to the login sa on sql2017a instance.

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances.

                    +

                    The target SQL Server instance or instances.

                    @@ -538,8 +538,8 @@
                    -SqlInstance

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -624,8 +624,8 @@
                    -Owner
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/New-DbaServiceMasterKey.html b/New-DbaServiceMasterKey.html index f734e549..e1c11582 100644 --- a/New-DbaServiceMasterKey.html +++ b/New-DbaServiceMasterKey.html @@ -509,7 +509,7 @@
                    Example: 1

                    You will be prompted to securely enter your Service Key password, then a master key will be created in the master database on server1 if it does not exist.

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances.

                    +

                    The target SQL Server instance or instances.

                    @@ -538,8 +538,8 @@
                    -SqlInstance

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -624,8 +624,8 @@
                    -SecurePassword
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/New-DbaSqlParameter.html b/New-DbaSqlParameter.html index a6edf3c4..a1f6ec6d 100644 --- a/New-DbaSqlParameter.html +++ b/New-DbaSqlParameter.html @@ -624,8 +624,8 @@
                    -Direction
                    -ForceColumnEncryption
                    -

                    Enforces encryption of a parameter when using Always Encrypted. -If SQL Server informs the driver that the parameter does not need to be encrypted, the query using the parameter will fail. +

                    Enforces encryption of a parameter when using Always Encrypted.
                    +If SQL Server informs the driver that the parameter does not need to be encrypted, the query using the parameter will fail.
                    This property provides additional protection against security attacks that involve a compromised SQL Server providing incorrect encryption metadata to the client, which may lead to data disclosure.

                    @@ -654,7 +654,7 @@
                    -ForceColumnEncryption
                    -IsNullable
                    -

                    Sets a value that indicates whether the parameter accepts null values. +

                    Sets a value that indicates whether the parameter accepts null values.
                    IsNullable is not used to validate the parameter's value and will not prevent sending or receiving a null value when executing a command.

                    @@ -1083,8 +1083,8 @@
                    -Value
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/New-DbaSsisCatalog.html b/New-DbaSsisCatalog.html index 2b56b2fb..928759bc 100644 --- a/New-DbaSsisCatalog.html +++ b/New-DbaSsisCatalog.html @@ -516,7 +516,7 @@
                    Example: 2
                    This is simply an easier way to get a secure password.

                    Required Parameters

                    -SqlInstance
                    -

                    SQL Server you wish to run the function on.

                    +

                    SQL Server you wish to run the function on.

                    @@ -545,8 +545,8 @@
                    -SqlInstance

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -659,8 +659,8 @@
                    -SsisCatalog
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/New-DbaXESession.html b/New-DbaXESession.html index 073f0c27..4fdedab8 100644 --- a/New-DbaXESession.html +++ b/New-DbaXESession.html @@ -512,7 +512,7 @@
                    Example: 1

                    Returns a new XE Session object from sql2017 then adds an event, an action then creates it.

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

                    +

                    The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

                    @@ -540,7 +540,7 @@
                    -SqlInstance
                    -Name
                    -

                    The Name of the session to be created.

                    +

                    The Name of the session to be created.

                    @@ -569,8 +569,8 @@
                    -Name

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -599,8 +599,8 @@
                    -SqlCredential
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/New-DbaXESmartCsvWriter.html b/New-DbaXESmartCsvWriter.html index 2cec5212..ab57e3f1 100644 --- a/New-DbaXESmartCsvWriter.html +++ b/New-DbaXESmartCsvWriter.html @@ -512,7 +512,7 @@
                    Example: 1

                    Writes Extended Events to the file "C:\temp\workload.csv".

                    Required Parameters

                    -OutputFile
                    -

                    Specifies the path to the output CSV file.

                    +

                    Specifies the path to the output CSV file.

                    @@ -597,8 +597,8 @@
                    -Event
                    -OutputColumn
                    -

                    Specifies the list of columns to output from the events. XESmartTarget will capture in memory and write to the target table only the columns (fields or targets) that are present in this list. -Fields and actions are matched in a case-sensitive manner. +

                    Specifies the list of columns to output from the events. XESmartTarget will capture in memory and write to the target table only the columns (fields or targets) that are present in this list.
                    +Fields and actions are matched in a case-sensitive manner.
                    Expression columns are supported. Specify a column with ColumnName AS Expression to add an expression column (Example: Total AS Reads + Writes)

                    @@ -627,7 +627,7 @@
                    -OutputColumn
                    -Filter
                    -

                    Specifies a filter expression in the same form as you would use in the WHERE clause of a SQL query. +

                    Specifies a filter expression in the same form as you would use in the WHERE clause of a SQL query.
                    Example: duration > 10000 AND cpu_time > 10000

                    @@ -656,8 +656,8 @@
                    -Filter
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/New-DbaXESmartEmail.html b/New-DbaXESmartEmail.html index 28ce1dd7..e42c141b 100644 --- a/New-DbaXESmartEmail.html +++ b/New-DbaXESmartEmail.html @@ -529,7 +529,7 @@
                    Example: 1

                    Sends an email each time a querytracker event is captured.

                    Required Parameters

                    -SmtpServer
                    -

                    Address of the SMTP server for outgoing mail.

                    +

                    Address of the SMTP server for outgoing mail.

                    @@ -557,7 +557,7 @@
                    -SmtpServer
                    -Sender
                    -

                    Sender's email address.

                    +

                    Sender's email address.

                    @@ -585,7 +585,7 @@
                    -Sender
                    -To
                    -

                    Address of the To recipient(s).

                    +

                    Address of the To recipient(s).

                    @@ -613,9 +613,9 @@
                    -To
                    -Subject
                    -

                    Subject of the mail message. Accepts placeholders in the text. -Placeholders are in the form , where PropertyName is one of the fields or actions available in the Event object. -For instance, a valid Subject in a configuration file looks like this: "An event of name occurred at "

                    +

                    Subject of the mail message. Accepts placeholders in the text.
                    +Placeholders are in the form , where PropertyName is one of the fields or actions available in the Event object.
                    +For instance, a valid Subject in a configuration file looks like this: "An event of name occurred at "

                    @@ -643,7 +643,7 @@
                    -Subject
                    -Body
                    -

                    Body of the mail message. The body can be static text or any property taken from the underlying event. See Subject for a description of how placeholders work.

                    +

                    Body of the mail message. The body can be static text or any property taken from the underlying event. See Subject for a description of how placeholders work.

                    @@ -756,7 +756,7 @@
                    -Credential
                    -Attachment
                    -

                    Data to attach to the email message. At this time, it can be any of the fields/actions of the underlying event. The data from the field/action is attached to the message as an ASCII stream. A single +

                    Data to attach to the email message. At this time, it can be any of the fields/actions of the underlying event. The data from the field/action is attached to the message as an ASCII stream. A single
                    attachment is supported.

                    @@ -869,7 +869,7 @@
                    -Event
                    -Filter
                    -

                    You can specify a filter expression by using this attribute. The filter expression is in the same form that you would use in a SQL query. For example, a valid example looks like this: duration > +

                    You can specify a filter expression by using this attribute. The filter expression is in the same form that you would use in a SQL query. For example, a valid example looks like this: duration >
                    10000 AND cpu_time > 10000

                    @@ -898,8 +898,8 @@
                    -Filter
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/New-DbaXESmartQueryExec.html b/New-DbaXESmartQueryExec.html index c2074637..f215a531 100644 --- a/New-DbaXESmartQueryExec.html +++ b/New-DbaXESmartQueryExec.html @@ -512,7 +512,7 @@
                    Example: 1

                    Executes a T-SQL command against dbadb on sql2017 whenever a deadlock event is recorded.

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

                    +

                    The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

                    @@ -541,8 +541,8 @@
                    -SqlInstance

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -599,7 +599,7 @@
                    -Database
                    -Query
                    -

                    The T-SQL command to execute. This string can contain placeholders for properties taken from the events. +

                    The T-SQL command to execute. This string can contain placeholders for properties taken from the events.
                    Placeholders are in the form , where PropertyName is one of the fields or actions available in the Event object.

                    @@ -628,8 +628,8 @@
                    -Query
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    @@ -686,7 +686,7 @@
                    -Event
                    -Filter
                    -

                    You can specify a filter expression by using this attribute. The filter expression is in the same form that you would use in a SQL query. For example, a valid example looks like this: duration > +

                    You can specify a filter expression by using this attribute. The filter expression is in the same form that you would use in a SQL query. For example, a valid example looks like this: duration >
                    10000 AND cpu_time > 10000

                    diff --git a/New-DbaXESmartReplay.html b/New-DbaXESmartReplay.html index 9dabe08d..adec734b 100644 --- a/New-DbaXESmartReplay.html +++ b/New-DbaXESmartReplay.html @@ -520,7 +520,7 @@
                    Example: 2

                    Replays events from the 'Profiler Standard' session on sql2016 to sql2017's planning database. Does not run as a job so you can see the raw output.

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

                    +

                    The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

                    @@ -549,8 +549,8 @@
                    -SqlInstance

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -579,7 +579,7 @@
                    -SqlCredential
                    -Database
                    -

                    Name of the initial catalog to connect to. Statements will be replayed by changing database to the same database where the event was originally captured, so this property only controls the initial +

                    Name of the initial catalog to connect to. Statements will be replayed by changing database to the same database where the event was originally captured, so this property only controls the initial
                    database to connect to.

                    @@ -636,7 +636,7 @@
                    -Event
                    -Filter
                    -

                    Specifies a filter expression in the same form as you would use in the WHERE clause of a SQL query. +

                    Specifies a filter expression in the same form as you would use in the WHERE clause of a SQL query.
                    Example: duration > 10000 AND cpu_time > 10000

                    @@ -749,8 +749,8 @@
                    -ReplayIntervalSeconds
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/New-DbaXESmartTableWriter.html b/New-DbaXESmartTableWriter.html index b0bad438..388d2fae 100644 --- a/New-DbaXESmartTableWriter.html +++ b/New-DbaXESmartTableWriter.html @@ -518,7 +518,7 @@
                    Example: 1

                    Writes Extended Events to the deadlocktracker table in dbadb on sql2017.

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

                    +

                    The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

                    @@ -546,7 +546,7 @@
                    -SqlInstance
                    -Database
                    -

                    Specifies the name of the database that contains the target table.

                    +

                    Specifies the name of the database that contains the target table.

                    @@ -574,7 +574,7 @@
                    -Database
                    -Table
                    -

                    Specifies the name of the target table.

                    +

                    Specifies the name of the target table.

                    @@ -603,8 +603,8 @@
                    -Table

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -633,7 +633,7 @@
                    -SqlCredential
                    -AutoCreateTargetTable
                    -

                    If this switch is enabled, XESmartTarget will infer the definition of the target table from the columns captured in the Extended Events session. +

                    If this switch is enabled, XESmartTarget will infer the definition of the target table from the columns captured in the Extended Events session.
                    If the target table already exists, it will not be recreated.

                    @@ -718,8 +718,8 @@
                    -Event
                    -OutputColumn
                    -

                    Specifies the list of columns to output from the events. XESmartTarget will capture in memory and write to the target table only the columns (fields or targets) that are present in this list. -Fields and actions are matched in a case-sensitive manner. +

                    Specifies the list of columns to output from the events. XESmartTarget will capture in memory and write to the target table only the columns (fields or targets) that are present in this list.
                    +Fields and actions are matched in a case-sensitive manner.
                    Expression columns are supported. Specify a column with ColumnName AS Expression to add an expression column (Example: Total AS Reads + Writes)

                    @@ -748,7 +748,7 @@
                    -OutputColumn
                    -Filter
                    -

                    Specifies a filter expression in the same form as you would use in the WHERE clause of a SQL query. +

                    Specifies a filter expression in the same form as you would use in the WHERE clause of a SQL query.
                    Example: duration > 10000 AND cpu_time > 10000

                    @@ -777,8 +777,8 @@
                    -Filter
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/New-DbatoolsSupportPackage.html b/New-DbatoolsSupportPackage.html index fe1d01e8..dd937ec2 100644 --- a/New-DbatoolsSupportPackage.html +++ b/New-DbatoolsSupportPackage.html @@ -547,7 +547,7 @@
                    -Path
                    -Variables
                    -

                    Name of additional variables to attach. +

                    Name of additional variables to attach.
                    This allows you to add the content of variables to the support package, if you believe them to be relevant to the case.

                    @@ -604,8 +604,8 @@
                    -PassThru
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Publish-DbaDacPackage.html b/Publish-DbaDacPackage.html index 8f6ac7e3..00f4e9a3 100644 --- a/Publish-DbaDacPackage.html +++ b/Publish-DbaDacPackage.html @@ -491,7 +491,9 @@

                    Description

                    Syntax

                    Publish-DbaDacPackage
                         [-SqlInstance <DbaInstanceParameter[]>]
                    -    [-SqlCredential <PSCredential>] -Path <String> -Database <String[]>
                    +    [-SqlCredential <PSCredential>]
                    +    -Path <String>
                    +    -Database <String[]>
                         [-ConnectionString <String[]>]
                         [-GenerateDeploymentReport]
                         [-ScriptOnly]
                    @@ -507,8 +509,10 @@ 

                    Syntax

                    Publish-DbaDacPackage [-SqlInstance <DbaInstanceParameter[]>] - [-SqlCredential <PSCredential>] -Path <String> - [-PublishXml <String>] -Database <String[]> + [-SqlCredential <PSCredential>] + -Path <String> + [-PublishXml <String>] + -Database <String[]> [-ConnectionString <String[]>] [-GenerateDeploymentReport] [-ScriptOnly] @@ -552,7 +556,7 @@
                    Example: 5

                    Does not deploy the changes, but will generate the deployment script that would be executed against WideWorldImporters.

                    Required Parameters

                    -Path
                    -

                    Specifies the filesystem path to the DACPAC

                    +

                    Specifies the filesystem path to the DACPAC

                    @@ -580,7 +584,7 @@
                    -Path
                    -Database
                    -

                    Specifies the name of the database being published.

                    +

                    Specifies the name of the database being published.

                    @@ -637,7 +641,7 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    Only SQL authentication is supported. When not specified, uses Trusted Authentication.

                    @@ -894,8 +898,8 @@
                    -DacOption
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Read-DbaAuditFile.html b/Read-DbaAuditFile.html index 71c15a33..df26e4a2 100644 --- a/Read-DbaAuditFile.html +++ b/Read-DbaAuditFile.html @@ -513,7 +513,7 @@
                    Example: 3

                    Reads remote Audit details by accessing the file over the admin UNC share.

                    Required Parameters

                    -Path
                    -

                    The path to the *.sqlaudit file. This is relative to the computer executing the command. UNC paths are supported.

                    +

                    The path to the *.sqlaudit file. This is relative to the computer executing the command. UNC paths are supported.

                    @@ -570,8 +570,8 @@
                    -Raw
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Read-DbaBackupHeader.html b/Read-DbaBackupHeader.html index d608a164..8bf6c896 100644 --- a/Read-DbaBackupHeader.html +++ b/Read-DbaBackupHeader.html @@ -539,7 +539,7 @@
                    Example: 8

                    Gets the backup header information from the SQL Server backup file stored at https://dbatoolsaz.blob.core.windows.net/azbackups/restoretime/restoretime_201705131850.bak on Azure

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances.

                    +

                    The target SQL Server instance or instances.

                    @@ -567,7 +567,7 @@
                    -SqlInstance
                    -Path
                    -

                    Path to SQL Server backup file. This can be a full, differential or log backup file. Accepts valid filesystem paths and URLs.

                    +

                    Path to SQL Server backup file. This can be a full, differential or log backup file. Accepts valid filesystem paths and URLs.

                    @@ -596,8 +596,8 @@
                    -Path

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -710,8 +710,8 @@
                    -AzureCredential
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because -it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because
                    +it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Read-DbaTraceFile.html b/Read-DbaTraceFile.html index 3b852644..d7950ced 100644 --- a/Read-DbaTraceFile.html +++ b/Read-DbaTraceFile.html @@ -532,7 +532,7 @@
                    Example: 4

                    Reads every trace file on sql2014

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances.

                    +

                    The target SQL Server instance or instances.

                    @@ -561,8 +561,8 @@
                    -SqlInstance

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -899,72 +899,72 @@
                    -ObjectName
                    -Where
                    -

                    Custom where clause - use without the word "WHERE". Here are the available columns: -TextData -BinaryData -DatabaseID -TransactionID -LineNumber -NTUserName -NTDomainName -HostName -ClientProcessID -ApplicationName -LoginName -SPID -Duration -StartTime -EndTime -Reads -Writes -CPU -Permissions -Severity -EventSubClass -ObjectID -Success -IndexID -IntegerData -ServerName -EventClass -ObjectType -NestLevel -State -Error -Mode -Handle -ObjectName -DatabaseName -FileName -OwnerName -RoleName -TargetUserName -DBUserName -LoginSid -TargetLoginName -TargetLoginSid -ColumnPermissions -LinkedServerName -ProviderName -MethodName -RowCounts -RequestID -XactSequence -EventSequence -BigintData1 -BigintData2 -GUID -IntegerData2 -ObjectID2 -Type -OwnerID -ParentName -IsSystem -Offset -SourceDatabaseID -SqlHandle -SessionLoginName -PlanHandle +

                    Custom where clause - use without the word "WHERE". Here are the available columns:
                    +TextData
                    +BinaryData
                    +DatabaseID
                    +TransactionID
                    +LineNumber
                    +NTUserName
                    +NTDomainName
                    +HostName
                    +ClientProcessID
                    +ApplicationName
                    +LoginName
                    +SPID
                    +Duration
                    +StartTime
                    +EndTime
                    +Reads
                    +Writes
                    +CPU
                    +Permissions
                    +Severity
                    +EventSubClass
                    +ObjectID
                    +Success
                    +IndexID
                    +IntegerData
                    +ServerName
                    +EventClass
                    +ObjectType
                    +NestLevel
                    +State
                    +Error
                    +Mode
                    +Handle
                    +ObjectName
                    +DatabaseName
                    +FileName
                    +OwnerName
                    +RoleName
                    +TargetUserName
                    +DBUserName
                    +LoginSid
                    +TargetLoginName
                    +TargetLoginSid
                    +ColumnPermissions
                    +LinkedServerName
                    +ProviderName
                    +MethodName
                    +RowCounts
                    +RequestID
                    +XactSequence
                    +EventSequence
                    +BigintData1
                    +BigintData2
                    +GUID
                    +IntegerData2
                    +ObjectID2
                    +Type
                    +OwnerID
                    +ParentName
                    +IsSystem
                    +Offset
                    +SourceDatabaseID
                    +SqlHandle
                    +SessionLoginName
                    +PlanHandle
                    GroupID

                    @@ -993,8 +993,8 @@
                    -Where
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Read-DbaTransactionLog.html b/Read-DbaTransactionLog.html index a7b0f28c..14bff533 100644 --- a/Read-DbaTransactionLog.html +++ b/Read-DbaTransactionLog.html @@ -489,8 +489,8 @@

                    Synopsis

                    Description

                    Using the fn_dblog function, the live transaction log is read and returned as a PowerShell object

                    This function returns the whole of the log. The information is presented in the format that the logging subsystem uses.

                    -

                    A soft limit of 0.5GB of log as been implemented. This is based on testing. This limit can be overridden -at the users request, but please be aware that this may have an impact on your target databases and on the +

                    A soft limit of 0.5GB of log as been implemented. This is based on testing. This limit can be overridden
                    +at the users request, but please be aware that this may have an impact on your target databases and on the
                    system running this function

                    Syntax

                    Read-DbaTransactionLog
                    @@ -516,7 +516,7 @@ 
                    Example: 2

                    Will read the contents of the transaction log of MyDatabase on SQL Server Instance sql2016 into the local PowerShell object $Log, ignoring the recommendation of not returning more that 0.5GB of log

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances

                    +

                    The target SQL Server instance or instances

                    @@ -544,7 +544,7 @@
                    -SqlInstance
                    -Database
                    -

                    Database to read the transaction log of

                    +

                    Database to read the transaction log of

                    @@ -573,8 +573,8 @@
                    -Database

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -659,8 +659,8 @@
                    -RowLimit
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Read-DbaXEFile.html b/Read-DbaXEFile.html index 8672068c..a37746dd 100644 --- a/Read-DbaXEFile.html +++ b/Read-DbaXEFile.html @@ -514,8 +514,8 @@
                    Example: 3

                    Reads remote XEvents by accessing the file over the admin UNC share.

                    Required Parameters

                    -Path
                    -

                    The path to the *.xem or *.xem file. This is relative to the computer executing the command. UNC paths are supported. -Piping from Get-DbaXESession is also supported.

                    +

                    The path to the *.xem or *.xem file. This is relative to the computer executing the command. UNC paths are supported.
                    +Piping from Get-DbaXESession is also supported.

                    @@ -572,8 +572,8 @@
                    -Raw
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Register-DbatoolsConfig.html b/Register-DbatoolsConfig.html index 53a9cd8a..bab6138f 100644 --- a/Register-DbatoolsConfig.html +++ b/Register-DbatoolsConfig.html @@ -487,8 +487,8 @@

                    Register-DbatoolsConfig

                    Synopsis

                    Registers an existing configuration object in registry.

                    Description

                    -

                    Registers an existing configuration object in registry. -This allows simple persisting of settings across powershell consoles. +

                    Registers an existing configuration object in registry.
                    +This allows simple persisting of settings across powershell consoles.
                    It also can be used to generate a registry template, which can then be used to create policies.

                    Syntax

                    Register-DbatoolsConfig
                    @@ -528,7 +528,7 @@ 
                    Example: 4
                    to be able to pipe the output and register them in registry for the current user.

                    Required Parameters

                    -Module
                    -

                    The name of the module, whose settings should be written to registry.

                    +

                    The name of the module, whose settings should be written to registry.

                    @@ -557,7 +557,7 @@
                    -Module

                    Optional Parameters

                    -Config
                    -

                    The configuration object to write to registry. +

                    The configuration object to write to registry.
                    Can be retrieved using Get-DbatoolsConfig.

                    @@ -614,7 +614,7 @@
                    -FullName
                    -Name
                    -

                    Default: "*" +

                    Default: "*"
                    Used in conjunction with the -Module parameter to restrict the number of configuration items written to registry.

                    @@ -643,8 +643,8 @@
                    -Name
                    -Scope
                    -

                    Default: UserDefault -Who will be affected by this export how? Current user or all? Default setting or enforced? +

                    Default: UserDefault
                    +Who will be affected by this export how? Current user or all? Default setting or enforced?
                    Legal values: UserDefault, UserMandatory, SystemDefault, SystemMandatory

                    @@ -673,7 +673,7 @@
                    -Scope
                    -EnableException
                    -

                    This parameters disables user-friendly warnings and enables the throwing of exceptions. +

                    This parameters disables user-friendly warnings and enables the throwing of exceptions.
                    This is less user friendly, but allows catching exceptions in calling scripts.

                    diff --git a/Remove-DbaAgDatabase.html b/Remove-DbaAgDatabase.html index 25f9cadc..06960199 100644 --- a/Remove-DbaAgDatabase.html +++ b/Remove-DbaAgDatabase.html @@ -546,8 +546,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -660,8 +660,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaAgListener.html b/Remove-DbaAgListener.html index 629903f6..f23f2d9a 100644 --- a/Remove-DbaAgListener.html +++ b/Remove-DbaAgListener.html @@ -542,8 +542,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -656,8 +656,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaAgReplica.html b/Remove-DbaAgReplica.html index c50cf7d5..7be0b74f 100644 --- a/Remove-DbaAgReplica.html +++ b/Remove-DbaAgReplica.html @@ -542,8 +542,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -656,8 +656,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaAgentAlert.html b/Remove-DbaAgentAlert.html index ad98b588..b294ee5e 100644 --- a/Remove-DbaAgentAlert.html +++ b/Remove-DbaAgentAlert.html @@ -487,8 +487,8 @@

                    Remove-DbaAgentAlert

                    Synopsis

                    Removes SQL Agent agent alert(s).

                    Description

                    -

                    Removes the SQL Agent alert(s) that have passed through the pipeline. -If not used with a pipeline, Get-DbaAgentAlert will be executed with the parameters provided +

                    Removes the SQL Agent alert(s) that have passed through the pipeline.
                    +If not used with a pipeline, Get-DbaAgentAlert will be executed with the parameters provided
                    and the returned SQL Agent alert(s) will be removed.

                    Syntax

                    Remove-DbaAgentAlert
                    @@ -525,7 +525,7 @@ 
                    Example: 3

                    Using a pipeline this command gets all SQL Agent alerts on SRV1, lets the user select those to remove and then removes the selected SQL Agent alerts.

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances.

                    +

                    The target SQL Server instance or instances.

                    @@ -553,7 +553,7 @@
                    -SqlInstance
                    -InputObject
                    -

                    Allows piping from Get-DbaAgentAlert.

                    +

                    Allows piping from Get-DbaAgentAlert.

                    @@ -582,8 +582,8 @@
                    -InputObject

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -668,8 +668,8 @@
                    -ExcludeAlert
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    @@ -726,7 +726,7 @@
                    -WhatIf
                    -Confirm
                    -

                    Prompts you for confirmation before executing any changing operations within the command. +

                    Prompts you for confirmation before executing any changing operations within the command.
                    This is the default. Use -Confirm:$false to suppress these prompts.

                    diff --git a/Remove-DbaAgentAlertCategory.html b/Remove-DbaAgentAlertCategory.html index fccd3444..c108beb1 100644 --- a/Remove-DbaAgentAlertCategory.html +++ b/Remove-DbaAgentAlertCategory.html @@ -487,7 +487,7 @@

                    Remove-DbaAgentAlertCategory

                    Synopsis

                    Remove-DbaAgentAlertCategory removes an alert category.

                    Description

                    -

                    Remove-DbaAgentAlertCategory makes it possible to remove an alert category. +

                    Remove-DbaAgentAlertCategory makes it possible to remove an alert category.
                    Insure that the category you want to remove is not used with any alerts. If an alert uses this category it will be get the category [Uncategorized].

                    Syntax

                    Remove-DbaAgentAlertCategory
                    @@ -527,7 +527,7 @@ 
                    Example: 4

                    Using a pipeline this command gets all SQL Agent alert category(-ies) on SRV1, lets the user select those to remove and then removes the selected SQL Agent alert category(-ies).

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                    +

                    The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                    @@ -555,7 +555,7 @@
                    -SqlInstance
                    -InputObject
                    -

                    Allows piping from Get-DbaAgentAlertCategory.

                    +

                    Allows piping from Get-DbaAgentAlertCategory.

                    @@ -584,8 +584,8 @@
                    -InputObject

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -642,8 +642,8 @@
                    -Category
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaAgentJob.html b/Remove-DbaAgentJob.html index 39b8b5d7..cd7c2e34 100644 --- a/Remove-DbaAgentJob.html +++ b/Remove-DbaAgentJob.html @@ -551,8 +551,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -637,7 +637,7 @@
                    -KeepHistory
                    -KeepUnusedSchedule
                    -

                    Specifies to keep the schedules attached to this job if they are not attached to any other job. +

                    Specifies to keep the schedules attached to this job if they are not attached to any other job.
                    By default the unused schedule is deleted.

                    @@ -694,8 +694,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaAgentJobCategory.html b/Remove-DbaAgentJobCategory.html index 6ad183b4..ed73e321 100644 --- a/Remove-DbaAgentJobCategory.html +++ b/Remove-DbaAgentJobCategory.html @@ -487,7 +487,7 @@

                    Remove-DbaAgentJobCategory

                    Synopsis

                    Remove-DbaAgentJobCategory removes a job category.

                    Description

                    -

                    Remove-DbaAgentJobCategory makes it possible to remove a job category. +

                    Remove-DbaAgentJobCategory makes it possible to remove a job category.
                    Be assured that the category you want to remove is not used with other jobs. If another job uses this category it will be get the category [Uncategorized (Local)].

                    Syntax

                    Remove-DbaAgentJobCategory
                    @@ -528,7 +528,7 @@ 
                    Example: 4

                    Using a pipeline this command gets all SQL Agent job category(-ies) on SRV1, lets the user select those to remove and then removes the selected SQL Agent job category(-ies).

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                    +

                    The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                    @@ -556,7 +556,7 @@
                    -SqlInstance
                    -InputObject
                    -

                    Allows piping from Get-DbaAgentJobCategory.

                    +

                    Allows piping from Get-DbaAgentJobCategory.

                    @@ -585,8 +585,8 @@
                    -InputObject

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -643,7 +643,7 @@
                    -Category
                    -CategoryType
                    -

                    The type of category. This can be "LocalJob", "MultiServerJob" or "None". +

                    The type of category. This can be "LocalJob", "MultiServerJob" or "None".
                    If no category is used all categories types will be removed.

                    @@ -676,8 +676,8 @@
                    -CategoryType
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaAgentJobStep.html b/Remove-DbaAgentJobStep.html index a0d2e652..d906ccaf 100644 --- a/Remove-DbaAgentJobStep.html +++ b/Remove-DbaAgentJobStep.html @@ -521,7 +521,7 @@
                    Example: 4

                    Remove the job step from the job on multiple servers using pipeline.

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

                    +

                    The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

                    @@ -549,7 +549,7 @@
                    -SqlInstance
                    -Job
                    -

                    The name of the job.

                    +

                    The name of the job.

                    @@ -577,7 +577,7 @@
                    -Job
                    -StepName
                    -

                    The name of the job step.

                    +

                    The name of the job step.

                    @@ -606,8 +606,8 @@
                    -StepName

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -636,8 +636,8 @@
                    -SqlCredential
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaAgentOperator.html b/Remove-DbaAgentOperator.html index 62534d24..652e0e45 100644 --- a/Remove-DbaAgentOperator.html +++ b/Remove-DbaAgentOperator.html @@ -502,7 +502,8 @@

                    Syntax

                    [-SqlInstance <DbaInstanceParameter[]>] [-SqlCredential <PSCredential>] [-Operator <String[]>] - [-ExcludeOperator <String[]>] -InputObject <Operator[]> + [-ExcludeOperator <String[]>] + -InputObject <Operator[]> [-EnableException] [-WhatIf] [-Confirm] @@ -521,7 +522,7 @@
                    Example: 2

                    Using a pipeline this command gets all SQL Agent operator(s) on SRV1, lets the user select those to remove and then removes the selected SQL Agent alert category(-ies).

                    Required Parameters

                    -InputObject
                    -

                    Allows piping from Get-DbaAgentOperator.

                    +

                    Allows piping from Get-DbaAgentOperator.

                    @@ -578,8 +579,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -664,8 +665,8 @@
                    -ExcludeOperator
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaAgentProxy.html b/Remove-DbaAgentProxy.html index 691a9dfa..dc4ef2e9 100644 --- a/Remove-DbaAgentProxy.html +++ b/Remove-DbaAgentProxy.html @@ -487,8 +487,8 @@

                    Remove-DbaAgentProxy

                    Synopsis

                    Removes SQL Agent agent proxy(s).

                    Description

                    -

                    Removes the SQL Agent proxy(s) that have passed through the pipeline. -If not used with a pipeline, Get-DbaAgentProxy will be executed with the parameters provided +

                    Removes the SQL Agent proxy(s) that have passed through the pipeline.
                    +If not used with a pipeline, Get-DbaAgentProxy will be executed with the parameters provided
                    and the returned SQL Agent proxy(s) will be removed.

                    Syntax

                    Remove-DbaAgentProxy
                    @@ -504,7 +504,8 @@ 

                    Syntax

                    [-SqlInstance <DbaInstanceParameter[]>] [-SqlCredential <PSCredential>] [-Proxy <String[]>] - [-ExcludeProxy <String[]>] -InputObject <ProxyAccount[]> + [-ExcludeProxy <String[]>] + -InputObject <ProxyAccount[]> [-EnableException] [-WhatIf] [-Confirm] @@ -528,7 +529,7 @@
                    Example: 3

                    Using a pipeline this command gets all SQL Agent proxies on SRV1, lets the user select those to remove and then removes the selected SQL Agent proxies.

                    Required Parameters

                    -InputObject
                    -

                    Allows piping from Get-DbaAgentProxy.

                    +

                    Allows piping from Get-DbaAgentProxy.

                    @@ -585,8 +586,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -671,8 +672,8 @@
                    -ExcludeProxy
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    @@ -729,7 +730,7 @@
                    -WhatIf
                    -Confirm
                    -

                    Prompts you for confirmation before executing any changing operations within the command. +

                    Prompts you for confirmation before executing any changing operations within the command.
                    This is the default. Use -Confirm:$false to suppress these prompts.

                    diff --git a/Remove-DbaAgentSchedule.html b/Remove-DbaAgentSchedule.html index ba3ebe86..664ffddc 100644 --- a/Remove-DbaAgentSchedule.html +++ b/Remove-DbaAgentSchedule.html @@ -488,7 +488,7 @@

                    Synopsis

                    Removes job schedules.

                    Description

                    Removes the schedules that have passed through the pipeline.

                    -

                    If not used with a pipeline, Get-DbaAgentSchedule will be executed with the parameters provided +

                    If not used with a pipeline, Get-DbaAgentSchedule will be executed with the parameters provided
                    and the returned schedules will be removed.

                    Syntax

                    Remove-DbaAgentSchedule
                    @@ -562,8 +562,8 @@ 
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -592,7 +592,7 @@
                    -SqlCredential
                    -Schedule
                    -

                    The name of the job schedule. +

                    The name of the job schedule.
                    Please note that there can be several schedules with the same name. These differ then only in the Id or the ScheduleUid.

                    @@ -705,8 +705,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaAvailabilityGroup.html b/Remove-DbaAvailabilityGroup.html index 00bced8e..920ab899 100644 --- a/Remove-DbaAvailabilityGroup.html +++ b/Remove-DbaAvailabilityGroup.html @@ -488,11 +488,11 @@

                    Synopsis

                    Removes availability groups on a SQL Server instance.

                    Description

                    Removes availability groups on a SQL Server instance.

                    -

                    If possible, remove the availability group only while connected to the server instance that hosts the primary replica. -When the availability group is dropped from the primary replica, changes are allowed in the former primary databases (without high availability protection). +

                    If possible, remove the availability group only while connected to the server instance that hosts the primary replica.
                    +When the availability group is dropped from the primary replica, changes are allowed in the former primary databases (without high availability protection).
                    Deleting an availability group from a secondary replica leaves the primary replica in the RESTORING state, and changes are not allowed on the databases.

                    -

                    Avoid dropping an availability group when the Windows Server Failover Clustering (WSFC) cluster has no quorum. -If you must drop an availability group while the cluster lacks quorum, the metadata availability group that is stored in the cluster is not removed. +

                    Avoid dropping an availability group when the Windows Server Failover Clustering (WSFC) cluster has no quorum.
                    +If you must drop an availability group while the cluster lacks quorum, the metadata availability group that is stored in the cluster is not removed.
                    After the cluster regains quorum, you will need to drop the availability group again to remove it from the WSFC cluster.

                    For more information: https://docs.microsoft.com/en-us/sql/t-sql/statements/drop-availability-group-transact-sql

                    Syntax

                    @@ -553,8 +553,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -667,8 +667,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaBackup.html b/Remove-DbaBackup.html index e3183040..68c4cf56 100644 --- a/Remove-DbaBackup.html +++ b/Remove-DbaBackup.html @@ -527,7 +527,7 @@
                    Example: 4

                    '*.bak' files in 'C:\MSSQL\Backup' and all subdirectories that are more than 1 week old will be removed. Any folders left empty will be removed as well.

                    Required Parameters

                    -Path
                    -

                    Specifies the name of the base level folder to search for backup files. Deletion of backup files will be recursive from this location.

                    +

                    Specifies the name of the base level folder to search for backup files. Deletion of backup files will be recursive from this location.

                    @@ -555,7 +555,7 @@
                    -Path
                    -BackupFileExtension
                    -

                    Specifies the filename extension of the backup files you wish to remove (typically 'bak', 'trn' or 'log'). Do not include the period.

                    +

                    Specifies the filename extension of the backup files you wish to remove (typically 'bak', 'trn' or 'log'). Do not include the period.

                    @@ -585,16 +585,16 @@
                    -BackupFileExtension
                    -RetentionPeriod

                    Specifies the retention period for backup files. Correct format is ##U.

                    is the retention value and must be an integer value

                    -

                    U signifies the units where the valid units are: -h = hours -d = days -w = weeks -m = months -Formatting Examples: -'48h' = 48 hours -'7d' = 7 days -'4w' = 4 weeks -'1m' = 1 month

                    +

                    U signifies the units where the valid units are:
                    +h = hours
                    +d = days
                    +w = weeks
                    +m = months
                    +Formatting Examples:
                    +'48h' = 48 hours
                    +'7d' = 7 days
                    +'4w' = 4 weeks
                    +'1m' = 1 month

                    @@ -623,7 +623,7 @@

                    is the retention va

                    Optional Parameters

                    -CheckArchiveBit
                    -

                    If this switch is enabled, the filesystem Archive bit is checked before deletion. If this bit is set (which translates to "it has not been backed up to another location yet", the file won't be +

                    If this switch is enabled, the filesystem Archive bit is checked before deletion. If this bit is set (which translates to "it has not been backed up to another location yet", the file won't be
                    deleted.

                    @@ -680,8 +680,8 @@
                    -RemoveEmptyBackupFolder
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaClientAlias.html b/Remove-DbaClientAlias.html index 3bf69d91..5111c120 100644 --- a/Remove-DbaClientAlias.html +++ b/Remove-DbaClientAlias.html @@ -512,7 +512,7 @@
                    Example: 2

                    Removes all SQL Server client aliases on the local computer

                    Required Parameters

                    -Alias
                    -

                    The alias or array of aliases to be deleted

                    +

                    The alias or array of aliases to be deleted

                    @@ -597,8 +597,8 @@
                    -Credential
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaCmConnection.html b/Remove-DbaCmConnection.html index 11060a9d..fcee8417 100644 --- a/Remove-DbaCmConnection.html +++ b/Remove-DbaCmConnection.html @@ -510,7 +510,7 @@
                    Example: 2

                    Clears the entire connection cache.

                    Required Parameters

                    -ComputerName
                    -

                    The target computer. Accepts both text as well as the output of Get-DbaCmConnection.

                    +

                    The target computer. Accepts both text as well as the output of Get-DbaCmConnection.

                    @@ -539,8 +539,8 @@
                    -ComputerName

                    Optional Parameters

                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaComputerCertificate.html b/Remove-DbaComputerCertificate.html index aa9d1f28..12e375fd 100644 --- a/Remove-DbaComputerCertificate.html +++ b/Remove-DbaComputerCertificate.html @@ -518,7 +518,7 @@
                    Example: 3

                    Removes certificate with thumbprint C2BBE81A94FEE7A26FFF86C2DFDAF6BFD28C6C94 in the User\My (Personal) store on Server1

                    Required Parameters

                    -Thumbprint
                    -

                    The thumbprint of the certificate object

                    +

                    The thumbprint of the certificate object

                    @@ -659,8 +659,8 @@
                    -Folder
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaCredential.html b/Remove-DbaCredential.html index 8d2f8017..3841f039 100644 --- a/Remove-DbaCredential.html +++ b/Remove-DbaCredential.html @@ -487,8 +487,8 @@

                    Remove-DbaCredential

                    Synopsis

                    Removes SQL credential(s).

                    Description

                    -

                    Removes the SQL credential(s) that have passed through the pipeline. -If not used with a pipeline, Get-DbaCredential will be executed with the parameters provided +

                    Removes the SQL credential(s) that have passed through the pipeline.
                    +If not used with a pipeline, Get-DbaCredential will be executed with the parameters provided
                    and the returned SQL credential(s) will be removed.

                    Syntax

                    Remove-DbaCredential
                    @@ -508,7 +508,8 @@ 

                    Syntax

                    [-Credential <String[]>] [-ExcludeCredential <String[]>] [-Identity <String[]>] - [-ExcludeIdentity <String[]>] -InputObject <Credential[]> + [-ExcludeIdentity <String[]>] + -InputObject <Credential[]> [-EnableException] [-WhatIf] [-Confirm] @@ -532,7 +533,7 @@
                    Example: 3

                    Using a pipeline this command gets all SQL credentials on SRV1, lets the user select those to remove and then removes the selected SQL credentials.

                    Required Parameters

                    -InputObject
                    -

                    Allows piping from Get-DbaCredential.

                    +

                    Allows piping from Get-DbaCredential.

                    @@ -589,8 +590,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -675,7 +676,7 @@
                    -ExcludeCredential
                    -Identity
                    -

                    Only include specific identities +

                    Only include specific identities
                    Note: if spaces exist in the credential identity, you will have to type "" or '' around it.

                    @@ -732,8 +733,8 @@
                    -ExcludeIdentity
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    @@ -790,7 +791,7 @@
                    -WhatIf
                    -Confirm
                    -

                    Prompts you for confirmation before executing any changing operations within the command. +

                    Prompts you for confirmation before executing any changing operations within the command.
                    This is the default. Use -Confirm:$false to suppress these prompts.

                    diff --git a/Remove-DbaCustomError.html b/Remove-DbaCustomError.html index 2b287008..2d6adeab 100644 --- a/Remove-DbaCustomError.html +++ b/Remove-DbaCustomError.html @@ -528,8 +528,8 @@
                    Example: 3

                    The resulting updated message object is available in $alteredMessage.

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function -to be executed against multiple SQL Server instances.

                    +

                    The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
                    +to be executed against multiple SQL Server instances.

                    @@ -558,8 +558,8 @@
                    -SqlInstance

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -644,8 +644,8 @@
                    -Language
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaDatabase.html b/Remove-DbaDatabase.html index f800a0bf..29bc178a 100644 --- a/Remove-DbaDatabase.html +++ b/Remove-DbaDatabase.html @@ -497,14 +497,16 @@

                    Syntax

                    [<CommonParameters>] Remove-DbaDatabase -SqlInstance <DbaInstanceParameter[]> - [-SqlCredential <PSCredential>] -Database <Object[]> + [-SqlCredential <PSCredential>] + -Database <Object[]> [-EnableException] [-WhatIf] [-Confirm] [<CommonParameters>] Remove-DbaDatabase - [-SqlCredential <PSCredential>] -InputObject <Database[]> + [-SqlCredential <PSCredential>] + -InputObject <Database[]> [-EnableException] [-WhatIf] [-Confirm] @@ -536,7 +538,7 @@
                    Example: 5

                    Removes all the user databases from server\instance without any confirmation

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances.You must have sysadmin access and server version must be SQL Server version 2000 or higher.

                    +

                    The target SQL Server instance or instances.You must have sysadmin access and server version must be SQL Server version 2000 or higher.

                    @@ -564,7 +566,7 @@
                    -SqlInstance
                    -Database
                    -

                    The database(s) to process - this list is auto-populated from the server. If unspecified, all databases will be processed.

                    +

                    The database(s) to process - this list is auto-populated from the server. If unspecified, all databases will be processed.

                    @@ -592,7 +594,7 @@
                    -Database
                    -InputObject
                    -

                    A collection of databases (such as returned by Get-DbaDatabase), to be removed.

                    +

                    A collection of databases (such as returned by Get-DbaDatabase), to be removed.

                    @@ -621,8 +623,8 @@
                    -InputObject

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -651,8 +653,8 @@
                    -SqlCredential
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaDatabaseSafely.html b/Remove-DbaDatabaseSafely.html index ecaae828..6e8bb347 100644 --- a/Remove-DbaDatabaseSafely.html +++ b/Remove-DbaDatabaseSafely.html @@ -548,7 +548,7 @@
                    Example: 5
                    If there is a DBCC Error, the function will continue to perform rest of the actions and will create an Agent job with 'DBCCERROR' in the name and a Backup file with 'DBCCError' in the name.

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

                    +

                    The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

                    @@ -577,7 +577,7 @@
                    -SqlInstance
                    -BackupFolder

                    Specifies the path to a folder where the final backups of the removed databases will be stored. If you are using separate source and destination servers, you must specify a UNC path such as
                    -\SERVER1\BACKUPSHARE<br>

                    +\SERVER1\BACKUPSHARE\

                    @@ -606,8 +606,8 @@
                    -BackupFolder

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -664,7 +664,7 @@
                    -Database
                    -Destination
                    -

                    If specified, Agent jobs will be created on this server. By default, the jobs will be created on the server specified by SqlInstance. You must have sysadmin access and the server must be SQL Server +

                    If specified, Agent jobs will be created on this server. By default, the jobs will be created on the server specified by SqlInstance. You must have sysadmin access and the server must be SQL Server
                    2000 or higher. The SQL Agent service will be started if it is not already running.

                    @@ -693,8 +693,8 @@
                    -Destination
                    -DestinationSqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -723,8 +723,8 @@
                    -DestinationSqlCredential
                    -NoDbccCheckDb
                    -

                    If this switch is enabled, the initial DBCC CHECK DB will be skipped. This will make the process quicker but will also allow you to create an Agent job that restores a database backup containing a -corrupt database. +

                    If this switch is enabled, the initial DBCC CHECK DB will be skipped. This will make the process quicker but will also allow you to create an Agent job that restores a database backup containing a
                    +corrupt database.
                    A second DBCC CHECKDB is performed on the restored database so you will still be notified BUT USE THIS WITH CARE.

                    @@ -925,8 +925,8 @@
                    -Force
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaDbAsymmetricKey.html b/Remove-DbaDbAsymmetricKey.html index 9d5b5abb..58ce98c0 100644 --- a/Remove-DbaDbAsymmetricKey.html +++ b/Remove-DbaDbAsymmetricKey.html @@ -542,8 +542,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -656,8 +656,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaDbBackupRestoreHistory.html b/Remove-DbaDbBackupRestoreHistory.html index 052e1027..0e3484fb 100644 --- a/Remove-DbaDbBackupRestoreHistory.html +++ b/Remove-DbaDbBackupRestoreHistory.html @@ -488,10 +488,10 @@

                    Synopsis

                    Reduces the size of the backup and restore history tables by deleting old entries for backup sets.

                    Description

                    Reduces the size of the backup and restore history tables by deleting the entries for backup sets.

                    -

                    Can be used at server level, in this case a retention period -KeepDays can be set (default is 30 days). +

                    Can be used at server level, in this case a retention period -KeepDays can be set (default is 30 days).
                    Can also be used at database level, in this case the complete history for the database(s) is deleted.

                    The backup and restore history tables reside in the msdb database.

                    -

                    To periodically remove old data from backup and restore history tables it is recommended to schedule the agent job sp_delete_backuphistory from the +

                    To periodically remove old data from backup and restore history tables it is recommended to schedule the agent job sp_delete_backuphistory from the
                    SQL Server Maintenance Solution created by Ola Hallengren (https://ola.hallengren.com).

                    Syntax

                    Remove-DbaDbBackupRestoreHistory
                    @@ -555,8 +555,8 @@ 
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -669,8 +669,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaDbCertificate.html b/Remove-DbaDbCertificate.html index e7bc327a..f2378b29 100644 --- a/Remove-DbaDbCertificate.html +++ b/Remove-DbaDbCertificate.html @@ -542,8 +542,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -656,8 +656,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaDbCheckConstraint.html b/Remove-DbaDbCheckConstraint.html index d3e9158d..75950ef7 100644 --- a/Remove-DbaDbCheckConstraint.html +++ b/Remove-DbaDbCheckConstraint.html @@ -504,7 +504,8 @@

                    Syntax

                    [-SqlCredential <PSCredential>] [-Database <Object[]>] [-ExcludeDatabase <Object[]>] - [-ExcludeSystemTable] -InputObject <Check[]> + [-ExcludeSystemTable] + -InputObject <Check[]> [-EnableException] [-WhatIf] [-Confirm] @@ -529,7 +530,7 @@
                    Example: 3

                    Removes all check constraints except those in system tables from db1 and db2 on the local and sql2016 SQL Server instances.

                    Required Parameters

                    -InputObject
                    -

                    Allows piping from Get-DbaDbCheckConstraint.

                    +

                    Allows piping from Get-DbaDbCheckConstraint.

                    @@ -586,8 +587,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -700,8 +701,8 @@
                    -ExcludeSystemTable
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    @@ -758,7 +759,7 @@
                    -WhatIf
                    -Confirm
                    -

                    Prompts you for confirmation before executing any changing operations within the command. +

                    Prompts you for confirmation before executing any changing operations within the command.
                    This is the default. Use -Confirm:$false to suppress these prompts.

                    diff --git a/Remove-DbaDbData.html b/Remove-DbaDbData.html index b4bc5b66..e278c5cb 100644 --- a/Remove-DbaDbData.html +++ b/Remove-DbaDbData.html @@ -552,8 +552,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -666,7 +666,7 @@
                    -InputObject
                    -Path
                    -

                    Specifies the directory where the file or files will be exported. +

                    Specifies the directory where the file or files will be exported.
                    Will default to Path.DbatoolsExport Configuration entry

                    @@ -695,8 +695,8 @@
                    -Path
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaDbEncryptionKey.html b/Remove-DbaDbEncryptionKey.html index 82c03b7d..48b0cd3f 100644 --- a/Remove-DbaDbEncryptionKey.html +++ b/Remove-DbaDbEncryptionKey.html @@ -541,8 +541,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -627,8 +627,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaDbFileGroup.html b/Remove-DbaDbFileGroup.html index ad41aea2..182a2dc8 100644 --- a/Remove-DbaDbFileGroup.html +++ b/Remove-DbaDbFileGroup.html @@ -518,7 +518,7 @@
                    Example: 3

                    Passes in the HRFG1 filegroup from the TestDB database on the sqldev1 instance and removes the filegroup.

                    Optional Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function +

                    The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
                    to be executed against multiple SQL Server instances.

                    @@ -547,8 +547,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -661,8 +661,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaDbLogShipping.html b/Remove-DbaDbLogShipping.html index 6b7ac4b0..88d76d55 100644 --- a/Remove-DbaDbLogShipping.html +++ b/Remove-DbaDbLogShipping.html @@ -489,7 +489,7 @@

                    Synopsis

                    Description

                    The command Remove-DbaDbLogShipping will remove one or more databases from log shipping

                    After running the command it will remove all the jobs, configurations set up for log shipping

                    -

                    By default the secondary database will NOT be removed. +

                    By default the secondary database will NOT be removed.
                    Use -RemoveSecondaryDatabase to make the command the secondary database

                    Syntax

                    Remove-DbaDbLogShipping
                    @@ -526,8 +526,8 @@ 
                    Example: 4

                    Remove the log shipping for database DB2 and remove the database from the secondary instance

                    Required Parameters

                    -PrimarySqlInstance
                    -

                    Primary SQL Server instance which contains the primary database(s). -You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                    +

                    Primary SQL Server instance which contains the primary database(s).
                    +You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                    @@ -555,8 +555,8 @@
                    -PrimarySqlInstance
                    -Database
                    -

                    Database to remove from log shipping. -This is the name of the database located on the primary instance

                    +

                    Database to remove from log shipping.
                    +This is the name of the database located on the primary instance

                    @@ -585,7 +585,7 @@
                    -Database

                    Optional Parameters

                    -SecondarySqlInstance
                    -

                    Secondary SQL Server instance which contains the secondary database(s) +

                    Secondary SQL Server instance which contains the secondary database(s)
                    You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                    @@ -614,8 +614,8 @@
                    -SecondarySqlInstance
                    -PrimarySqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -644,8 +644,8 @@
                    -PrimarySqlCredential
                    -SecondarySqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -674,7 +674,7 @@
                    -SecondarySqlCredential
                    -RemoveSecondaryDatabase
                    -

                    By default the command will not remove the database from the secondary instance. +

                    By default the command will not remove the database from the secondary instance.
                    Use this parameter to make the command remove that database

                    diff --git a/Remove-DbaDbMailAccount.html b/Remove-DbaDbMailAccount.html index 87f2dfa5..06d71726 100644 --- a/Remove-DbaDbMailAccount.html +++ b/Remove-DbaDbMailAccount.html @@ -487,8 +487,8 @@

                    Remove-DbaDbMailAccount

                    Synopsis

                    Removes database mail account(s).

                    Description

                    -

                    Removes the database mail account(s) that have passed through the pipeline. -If not used with a pipeline, Get-DbaDbMailAccount will be executed with the parameters provided +

                    Removes the database mail account(s) that have passed through the pipeline.
                    +If not used with a pipeline, Get-DbaDbMailAccount will be executed with the parameters provided
                    and the returned database mail account(s) will be removed.

                    Syntax

                    Remove-DbaDbMailAccount
                    @@ -525,7 +525,7 @@ 
                    Example: 3

                    Using a pipeline this command gets all database mail accounts on SRV1, lets the user select those to remove and then removes the selected database mail accounts.

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances.

                    +

                    The target SQL Server instance or instances.

                    @@ -553,7 +553,7 @@
                    -SqlInstance
                    -InputObject
                    -

                    Allows piping from Get-DbaDbMailAccount.

                    +

                    Allows piping from Get-DbaDbMailAccount.

                    @@ -582,8 +582,8 @@
                    -InputObject

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -668,8 +668,8 @@
                    -ExcludeAccount
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    @@ -726,7 +726,7 @@
                    -WhatIf
                    -Confirm
                    -

                    Prompts you for confirmation before executing any changing operations within the command. +

                    Prompts you for confirmation before executing any changing operations within the command.
                    This is the default. Use -Confirm:$false to suppress these prompts.

                    diff --git a/Remove-DbaDbMailProfile.html b/Remove-DbaDbMailProfile.html index 21f69b57..85894db1 100644 --- a/Remove-DbaDbMailProfile.html +++ b/Remove-DbaDbMailProfile.html @@ -488,7 +488,7 @@

                    Synopsis

                    Removes database mail profile(s).

                    Description

                    Removes the database mail profile(s) that have passed through the pipeline.

                    -

                    If not used with a pipeline, Get-DbaDbMailProfile will be executed with the parameters provided +

                    If not used with a pipeline, Get-DbaDbMailProfile will be executed with the parameters provided
                    and the returned database mail profile(s) will be removed.

                    Syntax

                    Remove-DbaDbMailProfile
                    @@ -525,7 +525,7 @@ 
                    Example: 3

                    Using a pipeline this command gets all database mail profiles on SRV1, lets the user select those to remove and then removes the selected database mail profiles.

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances.

                    +

                    The target SQL Server instance or instances.

                    @@ -553,7 +553,7 @@
                    -SqlInstance
                    -InputObject
                    -

                    Allows piping from Get-DbaDbMailProfile.

                    +

                    Allows piping from Get-DbaDbMailProfile.

                    @@ -582,8 +582,8 @@
                    -InputObject

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -668,8 +668,8 @@
                    -ExcludeProfile
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    @@ -726,7 +726,7 @@
                    -WhatIf
                    -Confirm
                    -

                    Prompts you for confirmation before executing any changing operations within the command. +

                    Prompts you for confirmation before executing any changing operations within the command.
                    This is the default. Use -Confirm:$false to suppress these prompts.

                    diff --git a/Remove-DbaDbMasterKey.html b/Remove-DbaDbMasterKey.html index 358c9637..a59aa995 100644 --- a/Remove-DbaDbMasterKey.html +++ b/Remove-DbaDbMasterKey.html @@ -547,8 +547,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -689,8 +689,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaDbMirror.html b/Remove-DbaDbMirror.html index 335d3e76..684b087e 100644 --- a/Remove-DbaDbMirror.html +++ b/Remove-DbaDbMirror.html @@ -517,7 +517,7 @@
                    Example: 3

                    Stops the database mirroring session for the TestDB1 and TestDB2 databases on the localhost instance.

                    Optional Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function +

                    The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
                    to be executed against multiple SQL Server instances.

                    @@ -546,8 +546,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -632,8 +632,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaDbMirrorMonitor.html b/Remove-DbaDbMirrorMonitor.html index ffd1e661..55466824 100644 --- a/Remove-DbaDbMirrorMonitor.html +++ b/Remove-DbaDbMirrorMonitor.html @@ -508,7 +508,7 @@
                    Example: 1

                    Stops and deletes the mirroring monitor job for all the databases on sql2008 and sql2012.

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance

                    +

                    The target SQL Server instance

                    @@ -537,8 +537,8 @@
                    -SqlInstance

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -567,8 +567,8 @@
                    -SqlCredential
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaDbOrphanUser.html b/Remove-DbaDbOrphanUser.html index 858ee6e8..149a38f0 100644 --- a/Remove-DbaDbOrphanUser.html +++ b/Remove-DbaDbOrphanUser.html @@ -488,7 +488,7 @@

                    Synopsis

                    Drop orphan users with no existing login to map

                    Description

                    Allows the removal of orphan users from one or more databases

                    -

                    Orphaned users in SQL Server occur when a database user is based on a login in the master database, but the login no longer exists in master. +

                    Orphaned users in SQL Server occur when a database user is based on a login in the master database, but the login no longer exists in master.
                    This can occur when the login is deleted, or when the database is moved to another server where the login does not exist.

                    If user is the owner of the schema with the same name and if if the schema does not have any underlying objects the schema will be dropped.

                    If user owns more than one schema, the owner of the schemas that does not have the same name as the user, will be changed to 'dbo'. If schemas have underlying objects, you must specify the -Force parameter so the user can be dropped.

                    @@ -536,7 +536,7 @@
                    Example: 6

                    Removes user OrphanUser from all databases even if they have a matching Login. Any schema that the user owns will change ownership to dbo.

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances.

                    +

                    The target SQL Server instance or instances.

                    @@ -565,8 +565,8 @@
                    -SqlInstance

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -679,8 +679,8 @@
                    -User
                    -Force
                    -

                    If this switch is enabled: -If exists any schema which owner is the User, this will force the change of the owner to 'dbo'. +

                    If this switch is enabled:
                    +If exists any schema which owner is the User, this will force the change of the owner to 'dbo'.
                    If a login of the same name exists the drop will not be performed unless you specify this parameter.

                    @@ -709,8 +709,8 @@
                    -Force
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaDbPartitionFunction.html b/Remove-DbaDbPartitionFunction.html index f241aed4..93d24a41 100644 --- a/Remove-DbaDbPartitionFunction.html +++ b/Remove-DbaDbPartitionFunction.html @@ -502,7 +502,8 @@

                    Syntax

                    [-SqlInstance <DbaInstanceParameter[]>] [-SqlCredential <PSCredential>] [-Database <String[]>] - [-ExcludeDatabase <Object[]>] -InputObject <PartitionFunction[]> + [-ExcludeDatabase <Object[]>] + -InputObject <PartitionFunction[]> [-EnableException] [-WhatIf] [-Confirm] @@ -522,7 +523,7 @@
                    Example: 2

                    Using a pipeline this command gets all partition functions on SRV1, lets the user select those to remove and then removes the selected partition functions.

                    Required Parameters

                    -InputObject
                    -

                    Allows piping from Get-DbaDbPartitionFunction.

                    +

                    Allows piping from Get-DbaDbPartitionFunction.

                    @@ -579,8 +580,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -665,8 +666,8 @@
                    -ExcludeDatabase
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    @@ -723,7 +724,7 @@
                    -WhatIf
                    -Confirm
                    -

                    Prompts you for confirmation before executing any changing operations within the command. +

                    Prompts you for confirmation before executing any changing operations within the command.
                    This is the default. Use -Confirm:$false to suppress these prompts.

                    diff --git a/Remove-DbaDbPartitionScheme.html b/Remove-DbaDbPartitionScheme.html index ec43df98..7e74bec7 100644 --- a/Remove-DbaDbPartitionScheme.html +++ b/Remove-DbaDbPartitionScheme.html @@ -502,7 +502,8 @@

                    Syntax

                    [-SqlInstance <DbaInstanceParameter[]>] [-SqlCredential <PSCredential>] [-Database <String[]>] - [-ExcludeDatabase <Object[]>] -InputObject <PartitionScheme[]> + [-ExcludeDatabase <Object[]>] + -InputObject <PartitionScheme[]> [-EnableException] [-WhatIf] [-Confirm] @@ -522,7 +523,7 @@
                    Example: 2

                    Using a pipeline this command gets all partition schemes on SRV1, lets the user select those to remove and then removes the selected partition schemes.

                    Required Parameters

                    -InputObject
                    -

                    Allows piping from Get-DbaDbPartitionScheme.

                    +

                    Allows piping from Get-DbaDbPartitionScheme.

                    @@ -579,8 +580,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -665,8 +666,8 @@
                    -ExcludeDatabase
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    @@ -723,7 +724,7 @@
                    -WhatIf
                    -Confirm
                    -

                    Prompts you for confirmation before executing any changing operations within the command. +

                    Prompts you for confirmation before executing any changing operations within the command.
                    This is the default. Use -Confirm:$false to suppress these prompts.

                    diff --git a/Remove-DbaDbRole.html b/Remove-DbaDbRole.html index 9dd19cfe..6355d686 100644 --- a/Remove-DbaDbRole.html +++ b/Remove-DbaDbRole.html @@ -555,8 +555,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -753,8 +753,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaDbRoleMember.html b/Remove-DbaDbRoleMember.html index eb9aedb6..0c0b3787 100644 --- a/Remove-DbaDbRoleMember.html +++ b/Remove-DbaDbRoleMember.html @@ -529,7 +529,7 @@
                    Example: 5

                    Required Parameters

                    -User
                    -

                    The user(s) to remove from the role(s) specified.

                    +

                    The user(s) to remove from the role(s) specified.

                    @@ -586,8 +586,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -700,8 +700,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaDbSchema.html b/Remove-DbaDbSchema.html index b571edba..5e99510a 100644 --- a/Remove-DbaDbSchema.html +++ b/Remove-DbaDbSchema.html @@ -514,7 +514,7 @@
                    Example: 2

                    Passes in the example1 db via pipeline and removes the TestSchema1 and TestSchema2 schemas.

                    Required Parameters

                    -Schema
                    -

                    The name(s) of the schema(s)

                    +

                    The name(s) of the schema(s)

                    @@ -543,7 +543,7 @@
                    -Schema

                    Optional Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function +

                    The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
                    to be executed against multiple SQL Server instances.

                    @@ -572,8 +572,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -658,8 +658,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaDbSequence.html b/Remove-DbaDbSequence.html index a2f4f91e..d5059da9 100644 --- a/Remove-DbaDbSequence.html +++ b/Remove-DbaDbSequence.html @@ -488,7 +488,7 @@

                    Synopsis

                    Removes sequences.

                    Description

                    Removes the sequences that have passed through the pipeline.

                    -

                    If not used with a pipeline, Get-DbaDbSequence will be executed with the parameters provided +

                    If not used with a pipeline, Get-DbaDbSequence will be executed with the parameters provided
                    and the returned sequences will be removed.

                    Syntax

                    Remove-DbaDbSequence
                    @@ -522,7 +522,7 @@ 
                    Example: 2

                    Using a pipeline this command gets all sequences on SRV1, lets the user select those to remove and then removes the selected sequences.

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances.

                    +

                    The target SQL Server instance or instances.

                    @@ -550,7 +550,7 @@
                    -SqlInstance
                    -InputObject
                    -

                    Allows piping from Get-DbaDbSequence.

                    +

                    Allows piping from Get-DbaDbSequence.

                    @@ -579,8 +579,8 @@
                    -InputObject

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -693,8 +693,8 @@
                    -Schema
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    @@ -751,7 +751,7 @@
                    -WhatIf
                    -Confirm
                    -

                    Prompts you for confirmation before executing any changing operations within the command. +

                    Prompts you for confirmation before executing any changing operations within the command.
                    This is the default. Use -Confirm:$false to suppress these prompts.

                    diff --git a/Remove-DbaDbSnapshot.html b/Remove-DbaDbSnapshot.html index 3671d559..ef8411d4 100644 --- a/Remove-DbaDbSnapshot.html +++ b/Remove-DbaDbSnapshot.html @@ -569,8 +569,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -767,8 +767,8 @@
                    -Force
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaDbSynonym.html b/Remove-DbaDbSynonym.html index 7f5e7091..8e16a7c4 100644 --- a/Remove-DbaDbSynonym.html +++ b/Remove-DbaDbSynonym.html @@ -556,8 +556,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -782,8 +782,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaDbTable.html b/Remove-DbaDbTable.html index dda31d57..915d89d7 100644 --- a/Remove-DbaDbTable.html +++ b/Remove-DbaDbTable.html @@ -543,8 +543,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -657,8 +657,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    @@ -715,7 +715,7 @@
                    -WhatIf
                    -Confirm
                    -

                    Prompts you for confirmation before executing any changing operations within the command. +

                    Prompts you for confirmation before executing any changing operations within the command.
                    This is the default. Use -Confirm:$false to suppress these prompts.

                    diff --git a/Remove-DbaDbTableData.html b/Remove-DbaDbTableData.html index 700f3e84..65702fca 100644 --- a/Remove-DbaDbTableData.html +++ b/Remove-DbaDbTableData.html @@ -579,8 +579,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -637,8 +637,8 @@
                    -Database
                    -BatchSize
                    -

                    The number of rows to delete per batch. This param is defaulted to 100000 and limited to a value between 1 and 1000000000 (1 billion). This param can only be used with the -Table param. If -DeleteSql -is used the TOP (N) clause must be specified in the SQL DELETE string. Note: for Azure SQL databases error 40552 could occur for large batch deletions: +

                    The number of rows to delete per batch. This param is defaulted to 100000 and limited to a value between 1 and 1000000000 (1 billion). This param can only be used with the -Table param. If -DeleteSql
                    +is used the TOP (N) clause must be specified in the SQL DELETE string. Note: for Azure SQL databases error 40552 could occur for large batch deletions:
                    https://docs.microsoft.com/en-us/azure/azure-sql/database/troubleshoot-common-errors-issues#error-40552-the-session-has-been-terminated-because-of-excessive-transaction-log-space-usage

                    @@ -695,7 +695,7 @@
                    -Table
                    -DeleteSql
                    -

                    A SQL DELETE statement to be used in the command's loop for more advanced scenarios such as deleting based on a join, using a where clause, or using an order by clause (or a combination of all of +

                    A SQL DELETE statement to be used in the command's loop for more advanced scenarios such as deleting based on a join, using a where clause, or using an order by clause (or a combination of all of
                    those). It is required that the DELETE statement include the TOP (N) clause. See the example below. This param may be used instead of -Table and -BatchSize.

                    @@ -724,7 +724,7 @@
                    -DeleteSql
                    -LogBackupPath
                    -

                    The directory to store the log backups. This command creates log backups when the database is using the full or bulk_logged recovery models and is an on-prem SQL server instance. If this param is not +

                    The directory to store the log backups. This command creates log backups when the database is using the full or bulk_logged recovery models and is an on-prem SQL server instance. If this param is not
                    provided the command will not take log backups. This directory should be writeable by the SQL Server service account.

                    @@ -753,7 +753,7 @@
                    -LogBackupPath
                    -LogBackupTimeStampFormat
                    -

                    By default the command timestamps the log backup files using the format yyyyMMddHHmm. The timestamp format should be defined using the Get-Date formats, because illegal formats will cause an error to +

                    By default the command timestamps the log backup files using the format yyyyMMddHHmm. The timestamp format should be defined using the Get-Date formats, because illegal formats will cause an error to
                    be thrown.

                    @@ -866,8 +866,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaDbUdf.html b/Remove-DbaDbUdf.html index 44c592c9..63c61d63 100644 --- a/Remove-DbaDbUdf.html +++ b/Remove-DbaDbUdf.html @@ -525,7 +525,7 @@
                    Example: 2

                    Removes udf1, udf2, udf3 from db1 and db2 on the local and sql2016 SQL Server instances.

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances.

                    +

                    The target SQL Server instance or instances.

                    @@ -553,7 +553,7 @@
                    -SqlInstance
                    -InputObject
                    -

                    Allows piping from Get-DbaDbUdf.

                    +

                    Allows piping from Get-DbaDbUdf.

                    @@ -582,8 +582,8 @@
                    -InputObject

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -808,8 +808,8 @@
                    -ExcludeName
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    @@ -866,7 +866,7 @@
                    -WhatIf
                    -Confirm
                    -

                    Prompts you for confirmation before executing any changing operations within the command. +

                    Prompts you for confirmation before executing any changing operations within the command.
                    This is the default. Use -Confirm:$false to suppress these prompts.

                    diff --git a/Remove-DbaDbUser.html b/Remove-DbaDbUser.html index 1c48db14..37b8d87e 100644 --- a/Remove-DbaDbUser.html +++ b/Remove-DbaDbUser.html @@ -487,15 +487,16 @@

                    Remove-DbaDbUser

                    Synopsis

                    Drop database user

                    Description

                    -

                    If user is the owner of a schema with the same name and if if the schema does not have any underlying objects the schema will be -dropped. If user owns more than one schema, the owner of the schemas that does not have the same name as the user, will be +

                    If user is the owner of a schema with the same name and if if the schema does not have any underlying objects the schema will be
                    +dropped. If user owns more than one schema, the owner of the schemas that does not have the same name as the user, will be
                    changed to 'dbo'. If schemas have underlying objects, you must specify the -Force parameter so the user can be dropped.

                    Syntax

                    Remove-DbaDbUser
                         [-SqlInstance] <DbaInstanceParameter[]>
                         [-SqlCredential <PSCredential>]
                         [-Database <Object[]>]
                    -    [-ExcludeDatabase <Object[]>] -User <Object[]>
                    +    [-ExcludeDatabase <Object[]>]
                    +    -User <Object[]>
                         [-Force]
                         [-EnableException]
                         [-WhatIf]
                    @@ -531,7 +532,7 @@ 
                    Example: 4

                    Drops user1 from all databases it exists in on server 'sqlserver2014'.

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances.

                    +

                    The target SQL Server instance or instances.

                    @@ -559,7 +560,7 @@
                    -SqlInstance
                    -User
                    -

                    Specifies the list of users to remove.

                    +

                    Specifies the list of users to remove.

                    @@ -587,7 +588,7 @@
                    -User
                    -InputObject
                    -

                    Support piping from Get-DbaDbUser.

                    +

                    Support piping from Get-DbaDbUser.

                    @@ -616,8 +617,8 @@
                    -InputObject

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance..

                    @@ -730,8 +731,8 @@
                    -Force
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaDbView.html b/Remove-DbaDbView.html index b3111423..540ecc4d 100644 --- a/Remove-DbaDbView.html +++ b/Remove-DbaDbView.html @@ -520,7 +520,7 @@
                    Example: 2

                    Removes view1, view2, view3 from db1 and db2 on the local and sql2016 SQL Server instances.

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances.

                    +

                    The target SQL Server instance or instances.

                    @@ -548,7 +548,7 @@
                    -SqlInstance
                    -InputObject
                    -

                    Allows piping from Get-DbaDbView.

                    +

                    Allows piping from Get-DbaDbView.

                    @@ -577,8 +577,8 @@
                    -InputObject

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -663,8 +663,8 @@
                    -View
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    @@ -721,7 +721,7 @@
                    -WhatIf
                    -Confirm
                    -

                    Prompts you for confirmation before executing any changing operations within the command. +

                    Prompts you for confirmation before executing any changing operations within the command.
                    This is the default. Use -Confirm:$false to suppress these prompts.

                    diff --git a/Remove-DbaEndpoint.html b/Remove-DbaEndpoint.html index ac4f42a1..70d230a8 100644 --- a/Remove-DbaEndpoint.html +++ b/Remove-DbaEndpoint.html @@ -546,8 +546,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -660,8 +660,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaExtendedProperty.html b/Remove-DbaExtendedProperty.html index 4c7b7f62..49488ef1 100644 --- a/Remove-DbaExtendedProperty.html +++ b/Remove-DbaExtendedProperty.html @@ -510,7 +510,7 @@
                    Example: 2

                    Removes the appversion extended property on the mytable table of the mydb database and does not prompt for confirmation

                    Required Parameters

                    -InputObject
                    -

                    Enables piping from Get-DbaExtendedProperty

                    +

                    Enables piping from Get-DbaExtendedProperty

                    @@ -539,8 +539,8 @@
                    -InputObject

                    Optional Parameters

                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaFirewallRule.html b/Remove-DbaFirewallRule.html index 40fda987..092f9489 100644 --- a/Remove-DbaFirewallRule.html +++ b/Remove-DbaFirewallRule.html @@ -487,13 +487,13 @@

                    Remove-DbaFirewallRule

                    Synopsis

                    Removes firewall rules for SQL Server instances from the target computer.

                    Description

                    -

                    Removes firewall rules for SQL Server instances from the target computer. -As the group and the names of the firewall rules are fixed, this command +

                    Removes firewall rules for SQL Server instances from the target computer.
                    +As the group and the names of the firewall rules are fixed, this command
                    only works for rules created with New-DbaFirewallRule.

                    -

                    This is basically a wrapper around Remove-NetFirewallRule executed at the target computer. +

                    This is basically a wrapper around Remove-NetFirewallRule executed at the target computer.
                    So this only works if Remove-NetFirewallRule works on the target computer.

                    The functionality is currently limited. Help to extend the functionality is welcome.

                    -

                    As long as you can read this note here, there may be breaking changes in future versions. +

                    As long as you can read this note here, there may be breaking changes in future versions.
                    So please review your scripts using this command after updating dbatools.

                    Syntax

                    Remove-DbaFirewallRule
                    @@ -533,7 +533,7 @@ 
                    Example: 4

                    Removes the firewall rule for the default instance on SRV1. Does not prompt for confirmation.

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances.

                    +

                    The target SQL Server instance or instances.

                    @@ -561,7 +561,7 @@
                    -SqlInstance
                    -InputObject
                    -

                    The output object(s) from Get-DbaFirewallRule.

                    +

                    The output object(s) from Get-DbaFirewallRule.

                    @@ -618,15 +618,15 @@
                    -Credential
                    -Type
                    -

                    Removes firewall rules for the given type(s). +

                    Removes firewall rules for the given type(s).
                    Valid values are:

                    • Engine - for the SQL Server instance
                    • Browser - for the SQL Server Browser
                    • DAC - for the dedicated admin connection (DAC)
                    • -
                    • AllInstance - for all firewall rules on the target computer related to SQL Server -The default is @('Engine', 'DAC'). -As the Browser might be needed by other instances, the firewall rule for the SQL Server Browser is +
                    • AllInstance - for all firewall rules on the target computer related to SQL Server
                      +The default is @('Engine', 'DAC').
                      +As the Browser might be needed by other instances, the firewall rule for the SQL Server Browser is
                      never removed with the firewall rule of the instance but only removed if 'Browser' is used.
                    @@ -660,8 +660,8 @@
                    -Type
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaLinkedServer.html b/Remove-DbaLinkedServer.html index d0d36da3..3bd64a98 100644 --- a/Remove-DbaLinkedServer.html +++ b/Remove-DbaLinkedServer.html @@ -523,7 +523,7 @@
                    Example: 4

                    Removes the linked server "linkedServer1" from the sql01 instance, which is passed in via pipeline.

                    Optional Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function +

                    The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
                    to be executed against multiple SQL Server instances.

                    @@ -552,8 +552,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -666,8 +666,8 @@
                    -Force
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaLinkedServerLogin.html b/Remove-DbaLinkedServerLogin.html index 95d47922..ffd85927 100644 --- a/Remove-DbaLinkedServerLogin.html +++ b/Remove-DbaLinkedServerLogin.html @@ -525,7 +525,7 @@
                    Example: 4

                    Passes in a linked server login via pipeline and removes it.

                    Optional Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function +

                    The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
                    to be executed against multiple SQL Server instances.

                    @@ -554,8 +554,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -668,8 +668,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaLogin.html b/Remove-DbaLogin.html index 0f4dd017..6a0fe99c 100644 --- a/Remove-DbaLogin.html +++ b/Remove-DbaLogin.html @@ -498,7 +498,8 @@

                    Syntax

                    [<CommonParameters>] Remove-DbaLogin -SqlInstance <DbaInstanceParameter[]> - [-SqlCredential <PSCredential>] -Login <String[]> + [-SqlCredential <PSCredential>] + -Login <String[]> [-Force] [-EnableException] [-WhatIf] @@ -506,7 +507,8 @@

                    Syntax

                    [<CommonParameters>] Remove-DbaLogin - [-SqlCredential <PSCredential>] -InputObject <Login[]> + [-SqlCredential <PSCredential>] + -InputObject <Login[]> [-Force] [-EnableException] [-WhatIf] @@ -535,7 +537,7 @@
                    Example: 4

                    Removes mylogin on SQL Server server\instance

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances.

                    +

                    The target SQL Server instance or instances.

                    @@ -563,7 +565,7 @@
                    -SqlInstance
                    -Login
                    -

                    The Login(s) to process - this list is auto-populated from the server. If unspecified, all Logins will be processed.

                    +

                    The Login(s) to process - this list is auto-populated from the server. If unspecified, all Logins will be processed.

                    @@ -591,7 +593,7 @@
                    -Login
                    -InputObject
                    -

                    A collection of Logins (such as returned by Get-DbaLogin), to be removed.

                    +

                    A collection of Logins (such as returned by Get-DbaLogin), to be removed.

                    @@ -676,8 +678,8 @@
                    -Force
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaNetworkCertificate.html b/Remove-DbaNetworkCertificate.html index e74a20b4..e70a40ca 100644 --- a/Remove-DbaNetworkCertificate.html +++ b/Remove-DbaNetworkCertificate.html @@ -571,8 +571,8 @@
                    -Credential
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaPfDataCollectorCounter.html b/Remove-DbaPfDataCollectorCounter.html index 1c58d755..6fd4048e 100644 --- a/Remove-DbaPfDataCollectorCounter.html +++ b/Remove-DbaPfDataCollectorCounter.html @@ -515,7 +515,7 @@
                    Example: 2

                    Allows you to select which counters you'd like on localhost and does not prompt for confirmation.

                    Required Parameters

                    -Counter
                    -

                    The name of the Counter - in the form of '\Processor(_Total)% Processor Time'.

                    +

                    The name of the Counter - in the form of '\Processor(_Total)% Processor Time'.

                    @@ -572,7 +572,7 @@
                    -ComputerName
                    -Credential
                    -

                    Allows you to login to the target computer using alternative credentials. To use: +

                    Allows you to login to the target computer using alternative credentials. To use:
                    $cred = Get-Credential, then pass $cred object to the -Credential parameter.

                    @@ -685,8 +685,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaPfDataCollectorSet.html b/Remove-DbaPfDataCollectorSet.html index 5b86bf82..036fa80a 100644 --- a/Remove-DbaPfDataCollectorSet.html +++ b/Remove-DbaPfDataCollectorSet.html @@ -553,7 +553,7 @@
                    -ComputerName
                    -Credential
                    -

                    Allows you to login to the target computer using alternative credentials. To use: +

                    Allows you to login to the target computer using alternative credentials. To use:
                    $cred = Get-Credential, then pass $cred object to the -Credential parameter.

                    @@ -638,8 +638,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaRegServer.html b/Remove-DbaRegServer.html index bcc20e0a..1c35de3e 100644 --- a/Remove-DbaRegServer.html +++ b/Remove-DbaRegServer.html @@ -547,8 +547,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -689,8 +689,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaRegServerGroup.html b/Remove-DbaRegServerGroup.html index 42d079d2..071c6e75 100644 --- a/Remove-DbaRegServerGroup.html +++ b/Remove-DbaRegServerGroup.html @@ -541,8 +541,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -627,8 +627,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaReplArticle.html b/Remove-DbaReplArticle.html index 00461218..59acad43 100644 --- a/Remove-DbaReplArticle.html +++ b/Remove-DbaReplArticle.html @@ -488,8 +488,8 @@

                    Synopsis

                    Removes an article from a publication for the database on the target SQL instances.

                    Description

                    Removes an article from a publication for the database on the target SQL instances.

                    -

                    Dropping an article from a publication does not remove the object from the publication database or the corresponding object from the subscription database. -Use DROP to remove these objects if necessary. +

                    Dropping an article from a publication does not remove the object from the publication database or the corresponding object from the subscription database.
                    +Use DROP to remove these objects if necessary.
                    #TODO: add a param for this DropObjectOnSubscriber

                    Dropping an article invalidates the current snapshot; therefore a new snapshot must be created.

                    Syntax

                    @@ -548,8 +548,8 @@
                    -SqlInstance

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -718,8 +718,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaReplPublication.html b/Remove-DbaReplPublication.html index 0dba2137..8ee14bf3 100644 --- a/Remove-DbaReplPublication.html +++ b/Remove-DbaReplPublication.html @@ -539,8 +539,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -653,8 +653,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaReplSubscription.html b/Remove-DbaReplSubscription.html index 15170131..27c2693c 100644 --- a/Remove-DbaReplSubscription.html +++ b/Remove-DbaReplSubscription.html @@ -488,7 +488,7 @@

                    Synopsis

                    Removes a subscription for the target SQL instances.

                    Description

                    Removes a subscription for the target SQL instances.

                    -

                    https://learn.microsoft.com/en-us/sql/relational-databases/replication/delete-a-push-subscription?view=sql-server-ver16 +

                    https://learn.microsoft.com/en-us/sql/relational-databases/replication/delete-a-push-subscription?view=sql-server-ver16
                    https://learn.microsoft.com/en-us/sql/relational-databases/replication/delete-a-pull-subscription?view=sql-server-ver16

                    Syntax

                    Remove-DbaReplSubscription
                    @@ -521,7 +521,7 @@ 
                    Example: 1

                    Removes a subscription for the testPub publication on mssql2.pubs.

                    Required Parameters

                    -SqlInstance
                    -

                    The target publisher SQL Server instance or instances.

                    +

                    The target publisher SQL Server instance or instances.

                    @@ -549,7 +549,7 @@
                    -SqlInstance
                    -Database
                    -

                    The database where the publication is located.

                    +

                    The database where the publication is located.

                    @@ -577,7 +577,7 @@
                    -Database
                    -PublicationName
                    -

                    The name of the publication.

                    +

                    The name of the publication.

                    @@ -605,7 +605,7 @@
                    -PublicationName
                    -SubscriberSqlInstance
                    -

                    The subscriber SQL Server instance.

                    +

                    The subscriber SQL Server instance.

                    @@ -633,7 +633,7 @@
                    -SubscriberSqlInstance
                    -SubscriptionDatabase
                    -

                    The database where the subscription is located.

                    +

                    The database where the subscription is located.

                    @@ -662,8 +662,8 @@
                    -SubscriptionDatabase

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target publisher instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target publisher instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -692,8 +692,8 @@
                    -SqlCredential
                    -SubscriberSqlCredential
                    -

                    Login to the subscriber instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the subscriber instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -722,8 +722,8 @@
                    -SubscriberSqlCredential
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaRgResourcePool.html b/Remove-DbaRgResourcePool.html index 8eb4593d..4adc7bfc 100644 --- a/Remove-DbaRgResourcePool.html +++ b/Remove-DbaRgResourcePool.html @@ -487,7 +487,7 @@

                    Remove-DbaRgResourcePool

                    Synopsis

                    Removes a resource pool from the Resource Governor on the specified SQL Server.

                    Description

                    -

                    Removes a resource pool from the Resource Governor on the specified SQL Server. +

                    Removes a resource pool from the Resource Governor on the specified SQL Server.
                    A resource pool represents a subset of the physical resources (memory, CPUs and IO) of an instance of the Database Engine.

                    Syntax

                    Remove-DbaRgResourcePool
                    @@ -632,7 +632,7 @@ 
                    -Type
                    -SkipReconfigure
                    -

                    Resource Governor requires a reconfiguriation for resource pool changes to take effect. +

                    Resource Governor requires a reconfiguriation for resource pool changes to take effect.
                    Use this switch to skip issuing a reconfigure for the Resource Governor.

                    @@ -689,8 +689,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaRgWorkloadGroup.html b/Remove-DbaRgWorkloadGroup.html index 708a7ed4..6a57f073 100644 --- a/Remove-DbaRgWorkloadGroup.html +++ b/Remove-DbaRgWorkloadGroup.html @@ -487,7 +487,7 @@

                    Remove-DbaRgWorkloadGroup

                    Synopsis

                    Removes a workload group from the Resource Governor on the specified SQL Server.

                    Description

                    -

                    Removes a workload group from the Resource Governor on the specified SQL Server. +

                    Removes a workload group from the Resource Governor on the specified SQL Server.
                    A workload group represents a subset of the resources of an instance of the Database Engine.

                    Syntax

                    Remove-DbaRgWorkloadGroup
                    @@ -661,7 +661,7 @@ 
                    -ResourcePoolType
                    -SkipReconfigure
                    -

                    Resource Governor requires a reconfiguriation for workload group changes to take effect. +

                    Resource Governor requires a reconfiguriation for workload group changes to take effect.
                    Use this switch to skip issuing a reconfigure for the Resource Governor.

                    @@ -718,8 +718,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaServerRole.html b/Remove-DbaServerRole.html index eebb4ab1..ea90a951 100644 --- a/Remove-DbaServerRole.html +++ b/Remove-DbaServerRole.html @@ -541,8 +541,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -627,8 +627,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaServerRoleMember.html b/Remove-DbaServerRoleMember.html index 8d71d6f1..ca8ac90a 100644 --- a/Remove-DbaServerRoleMember.html +++ b/Remove-DbaServerRoleMember.html @@ -567,8 +567,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -709,8 +709,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaSpn.html b/Remove-DbaSpn.html index 4be119c4..a816e5f7 100644 --- a/Remove-DbaSpn.html +++ b/Remove-DbaSpn.html @@ -525,7 +525,7 @@
                    Example: 5

                    Removes all set SPNs for sql2005 and the relative delegations

                    Required Parameters

                    -SPN
                    -

                    The SPN you want to remove

                    +

                    The SPN you want to remove

                    @@ -553,7 +553,7 @@
                    -SPN
                    -ServiceAccount
                    -

                    The account you want the SPN remove from

                    +

                    The account you want the SPN remove from

                    @@ -610,8 +610,8 @@
                    -Credential
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaTrace.html b/Remove-DbaTrace.html index 4c403039..636b8da6 100644 --- a/Remove-DbaTrace.html +++ b/Remove-DbaTrace.html @@ -545,8 +545,8 @@
                    -SqlInstance
                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -631,8 +631,8 @@
                    -InputObject
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaXESession.html b/Remove-DbaXESession.html index 86fa0503..62c23df4 100644 --- a/Remove-DbaXESession.html +++ b/Remove-DbaXESession.html @@ -491,7 +491,8 @@

                    Description

                    Syntax

                    Remove-DbaXESession
                         [-SqlInstance] <DbaInstanceParameter[]>
                    -    [-SqlCredential <PSCredential>] -Session <Object[]>
                    +    [-SqlCredential <PSCredential>]
                    +    -Session <Object[]>
                         [-EnableException]
                         [-WhatIf]
                         [-Confirm]
                    @@ -499,7 +500,8 @@ 

                    Syntax

                    Remove-DbaXESession [-SqlInstance] <DbaInstanceParameter[]> - [-SqlCredential <PSCredential>] -AllSessions + [-SqlCredential <PSCredential>] + -AllSessions [-EnableException] [-WhatIf] [-Confirm] @@ -533,7 +535,7 @@
                    Example: 4

                    Removes the sessions returned from the Get-DbaXESession function.

                    Required Parameters

                    -SqlInstance
                    -

                    The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

                    +

                    The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

                    @@ -561,7 +563,7 @@
                    -SqlInstance
                    -Session
                    -

                    Specifies a list of Extended Events sessions to remove.

                    +

                    Specifies a list of Extended Events sessions to remove.

                    @@ -589,7 +591,7 @@
                    -Session
                    -AllSessions
                    -

                    If this switch is enabled, all Extended Events sessions will be removed except the packaged sessions AlwaysOn_health, system_health, telemetry_xevents.

                    +

                    If this switch is enabled, all Extended Events sessions will be removed except the packaged sessions AlwaysOn_health, system_health, telemetry_xevents.

                    @@ -617,7 +619,7 @@
                    -AllSessions
                    -InputObject
                    -

                    Accepts a collection of XEsession objects as output by Get-DbaXESession.

                    +

                    Accepts a collection of XEsession objects as output by Get-DbaXESession.

                    @@ -646,8 +648,8 @@
                    -InputObject

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -676,8 +678,8 @@
                    -SqlCredential
                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Remove-DbaXESmartTarget.html b/Remove-DbaXESmartTarget.html index dcb8fc58..cf8edf45 100644 --- a/Remove-DbaXESmartTarget.html +++ b/Remove-DbaXESmartTarget.html @@ -510,7 +510,7 @@
                    Example: 2

                    Removes a specific XESmartTarget job.

                    Required Parameters

                    -InputObject
                    -

                    Specifies one or more XESmartTarget job objects as output by Get-DbaXESmartTarget.

                    +

                    Specifies one or more XESmartTarget job objects as output by Get-DbaXESmartTarget.

                    @@ -539,8 +539,8 @@
                    -InputObject

                    Optional Parameters

                    -EnableException
                    -

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                    By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                    +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                    Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                    diff --git a/Rename-DbaDatabase.html b/Rename-DbaDatabase.html index e44dfe01..425fa76f 100644 --- a/Rename-DbaDatabase.html +++ b/Rename-DbaDatabase.html @@ -487,9 +487,9 @@

                    Rename-DbaDatabase

                    Synopsis

                    Changes database name, logical file names, file group names and physical file names (optionally handling the move). BETA VERSION.

                    Description

                    -

                    Can change every database metadata that can be renamed. -The ultimate goal is choosing to have a default template to enforce in your environment -so your naming convention for every bit can be put in place in no time. +

                    Can change every database metadata that can be renamed.
                    +The ultimate goal is choosing to have a default template to enforce in your environment
                    +so your naming convention for every bit can be put in place in no time.
                    The process is as follows (it follows the hierarchy of the entities):

                    • database name is changed (optionally, forcing users out)
                    • @@ -497,8 +497,8 @@

                      Description

                    • logical name(s) are changed accordingly
                    • physical file(s) are changed accordingly
                    • if Move is specified, the database will be taken offline and the move will initiate, then it will be taken online
                    • -
                    • if Move is not specified, the database remains online (unless SetOffline), and you are in charge of moving files -If any of the above fails, the process stops. +
                    • if Move is not specified, the database remains online (unless SetOffline), and you are in charge of moving files
                      +If any of the above fails, the process stops.
                      Please take a backup of your databases BEFORE using this, and remember to backup AFTER (also a FULL backup of master)

                    It returns an object for each database with all the renames done, plus hidden properties showing a "human" representation of them.

                    @@ -536,7 +536,8 @@

                    Syntax

                    [-Force] [-Move] [-SetOffline] - [-Preview] -InputObject <Database[]> + [-Preview] + -InputObject <Database[]> [-EnableException] [-WhatIf] [-Confirm] @@ -596,7 +597,7 @@
                    Example: 11
                    The db is then set offline (watch out!). The function tries to do a simple rename and then sets the db online again to finish the rename process

                    Required Parameters

                    -SqlInstance
                    -

                    Target any number of instances, in order to return their build state.

                    +

                    Target any number of instances, in order to return their build state.

                    @@ -624,7 +625,7 @@
                    -SqlInstance
                    -InputObject
                    -

                    Accepts piped database objects

                    +

                    Accepts piped database objects

                    @@ -653,8 +654,8 @@
                    -InputObject

                    Optional Parameters

                    -SqlCredential
                    -

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                    Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                    +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                    For MFA support, please use Connect-DbaInstance.

                    @@ -803,7 +804,7 @@
                    -FileGroupName
                    • current filegroup name
                    • current database name
                    • -
                    • date (yyyyMMdd) +
                    • date (yyyyMMdd)
                      If distinct names cannot be generated, a counter will be appended (0001, 0002, 0003, etc)
                    @@ -839,7 +840,7 @@
                    -LogicalName
                  • current logical name
                  • current filegroup name
                  • current database name
                  • -
                  • date (yyyyMMdd) +
                  • date (yyyyMMdd)
                    If distinct names cannot be generated, a counter will be appended (0001, 0002, 0003, etc)
                  • @@ -876,7 +877,7 @@
                    -FileName
                  • current logical name
                  • current filegroup name
                  • current database name
                  • -
                  • date (yyyyMMdd) +
                  • date (yyyyMMdd)
                    If distinct names cannot be generated, a counter will be appended (0001, 0002, 0003, etc)
                  • @@ -906,28 +907,28 @@
                    -FileName
                    -ReplaceBefore
                    -

                    If you pass this switch, all upper level "current names" will be inspected and replaced BEFORE doing the -rename according to the template in the current level (remember the hierarchy): +

                    If you pass this switch, all upper level "current names" will be inspected and replaced BEFORE doing the
                    +rename according to the template in the current level (remember the hierarchy):
                    Let's say you have a database named "dbatools_HR", composed by 3 files

                    • dbatools_HR_Data.mdf
                    • dbatools_HR_Index.ndf
                    • -
                    • dbatools_HR_log.ldf -Rename-DbaDatabase .... -Database "dbatools_HR" -DatabaseName "dbatools_HRARCHIVE" -FileName '' +
                    • dbatools_HR_log.ldf
                      +Rename-DbaDatabase .... -Database "dbatools_HR" -DatabaseName "dbatools_HRARCHIVE" -FileName ''
                      would end up with this logic:
                    • database --> no placeholders specified
                    • dbatools_HR to dbatools_HRARCHIVE
                    • -
                    • filenames placeholders specified +
                    • filenames placeholders specified
                      --> current database name + current filename"
                    • dbatools_HR_Data.mdf to dbatools_HRARCHIVEdbatools_HR_Data.mdf
                    • dbatools_HR_Index.mdf to dbatools_HRARCHIVEdbatools_HR_Data.mdf
                    • -
                    • dbatools_HR_log.ldf to dbatools_HRARCHIVEdbatools_HR_log.ldf -Passing this switch, instead, e.g. -Rename-DbaDatabase .... -Database "dbatools_HR" -DatabaseName "dbatools_HRARCHIVE" -FileName '' -ReplaceBefore +
                    • dbatools_HR_log.ldf to dbatools_HRARCHIVEdbatools_HR_log.ldf
                      +Passing this switch, instead, e.g.
                      +Rename-DbaDatabase .... -Database "dbatools_HR" -DatabaseName "dbatools_HRARCHIVE" -FileName '' -ReplaceBefore
                      end up with this logic instead:
                    • database --> no placeholders specified
                    • dbatools_HR to dbatools_HRARCHIVE
                    • -
                    • filenames placeholders specified, +
                    • filenames placeholders specified,
                      , plus -ReplaceBefore --> current database name + replace OLD "upper level" names inside the current filename
                    • dbatools_HR_Data.mdf to dbatools_HRARCHIVE_Data.mdf
                    • dbatools_HR_Index.mdf to dbatools_HRARCHIVE_Data.mdf
                    • @@ -988,8 +989,8 @@
                      -Force
                      -Move
                      -

                      If you want this function to move files, else you're the one in charge of it. -This enables the same functionality as SetOffline, killing open transactions and putting the database +

                      If you want this function to move files, else you're the one in charge of it.
                      +This enables the same functionality as SetOffline, killing open transactions and putting the database
                      offline, then do the actual rename and setting it online again afterwards

                      @@ -1074,8 +1075,8 @@
                      -Preview
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Rename-DbaLogin.html b/Rename-DbaLogin.html index 458680f4..c2d609f7 100644 --- a/Rename-DbaLogin.html +++ b/Rename-DbaLogin.html @@ -520,7 +520,7 @@
                      Example: 3

                      WhatIf Example

                      Required Parameters

                      -SqlInstance
                      -

                      Source SQL Server.You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                      +

                      Source SQL Server.You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                      @@ -548,7 +548,7 @@
                      -SqlInstance
                      -Login
                      -

                      The current Login on the server - this list is auto-populated from the server.

                      +

                      The current Login on the server - this list is auto-populated from the server.

                      @@ -576,7 +576,7 @@
                      -Login
                      -NewLogin
                      -

                      The new Login that you wish to use. If it is a windows user login, then the SID must match.

                      +

                      The new Login that you wish to use. If it is a windows user login, then the SID must match.

                      @@ -605,8 +605,8 @@
                      -NewLogin

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -663,8 +663,8 @@
                      -Force
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Repair-DbaDbMirror.html b/Repair-DbaDbMirror.html index a54a0c37..d3b61101 100644 --- a/Repair-DbaDbMirror.html +++ b/Repair-DbaDbMirror.html @@ -517,7 +517,7 @@
                      Example: 2
                      Restarts the endpoints then sets the partner to resume. Does not prompt for confirmation.

                      Optional Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function +

                      The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
                      to be executed against multiple SQL Server instances.

                      @@ -546,8 +546,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -632,8 +632,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Repair-DbaDbOrphanUser.html b/Repair-DbaDbOrphanUser.html index 0b1f9059..808e0bbe 100644 --- a/Repair-DbaDbOrphanUser.html +++ b/Repair-DbaDbOrphanUser.html @@ -488,10 +488,10 @@

                      Synopsis

                      Finds orphan users with existing login and remaps them.

                      Description

                      An orphan user is defined by a user that does not have a matching login (Login property = "").

                      -

                      If the matching login exists it must be: -Enabled -Not a system object -Not locked +

                      If the matching login exists it must be:
                      +Enabled
                      +Not a system object
                      +Not locked
                      Have the same name that user

                      You can drop users that does not have their matching login by specifying the parameter -RemoveNotExisting.

                      Syntax

                      @@ -538,7 +538,7 @@
                      Example: 6

                      Finds all orphan users of all databases present on server 'sqlserver2014a'. Removes all users that do not have matching Logins.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -567,8 +567,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -737,8 +737,8 @@
                      -Force
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Repair-DbaInstanceName.html b/Repair-DbaInstanceName.html index 6ff24afb..0614cf7c 100644 --- a/Repair-DbaInstanceName.html +++ b/Repair-DbaInstanceName.html @@ -520,7 +520,7 @@
                      Example: 3

                      Checks to see if the server name is updatable and automatically performs the change, bypassing most prompts and confirmations. Replication or mirroring will be broken if necessary.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -549,8 +549,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -635,8 +635,8 @@
                      -Force
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Reset-DbaAdmin.html b/Reset-DbaAdmin.html index 9f1db56f..db907fa5 100644 --- a/Reset-DbaAdmin.html +++ b/Reset-DbaAdmin.html @@ -501,7 +501,7 @@

                      Description

                      If failures occur at any point, a best attempt is made to restart the SQL Server.

                      In order to make this script as portable as possible, Microsoft.Data.SqlClient and Get-WmiObject are used (as opposed to requiring the Failover Cluster Admin tools or SMO).

                      If using this function against a remote SQL Server, ensure WinRM is configured and accessible. If this is not possible, run the script locally.

                      -

                      Tested on Windows XP, 7, 8.1, Server 2012 and Windows Server Technical Preview 2. +

                      Tested on Windows XP, 7, 8.1, Server 2012 and Windows Server Technical Preview 2.
                      Tested on SQL Server 2005 SP4 through 2016 CTP2.

                      Syntax

                      Reset-DbaAdmin
                      @@ -536,7 +536,7 @@ 
                      Example: 3
                      If the account already exists, it will be added to the sysadmin role and the password will be reset.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances. SQL Server must be 2005 and above, and can be a clustered or stand-alone instance.

                      +

                      The target SQL Server instance or instances. SQL Server must be 2005 and above, and can be a clustered or stand-alone instance.

                      @@ -593,7 +593,7 @@
                      -SqlCredential
                      -Login
                      -

                      By default, the Login parameter is "sa" but any other SQL or Windows account can be specified. If a login does not currently exist, it will be added. +

                      By default, the Login parameter is "sa" but any other SQL or Windows account can be specified. If a login does not currently exist, it will be added.
                      When adding a Windows login to remote servers, ensure the SQL Server can add the login (ie, don't add WORKSTATION\Admin to remoteserver\instance. Domain users and Groups are valid input.

                      @@ -678,8 +678,8 @@
                      -Force
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Reset-DbatoolsConfig.html b/Reset-DbatoolsConfig.html index a90f1f4a..f215af1f 100644 --- a/Reset-DbatoolsConfig.html +++ b/Reset-DbatoolsConfig.html @@ -487,7 +487,7 @@

                      Reset-DbatoolsConfig

                      Synopsis

                      Reverts a configuration item to its default value.

                      Description

                      -

                      This command can be used to revert a configuration item to the value it was initialized with. +

                      This command can be used to revert a configuration item to the value it was initialized with.
                      Generally, this amounts to reverting it to its default value.

                      In order for a reset to be possible, two conditions must be met:

                        @@ -528,8 +528,8 @@
                        Example: 3

                        Resets the configuration item named 'MyModule.Group.Setting1'.

                        Required Parameters

                        -Module
                        -

                        The name of the module, from which configurations should be reset. -Used in conjunction with the -Name parameter to filter a specific set of items.

                        +

                        The name of the module, from which configurations should be reset.
                        +Used in conjunction with the -Name parameter to filter a specific set of items.

                      @@ -642,7 +642,7 @@
                      -Name
                      -EnableException
                      -

                      This parameters disables user-friendly warnings and enables the throwing of exceptions. +

                      This parameters disables user-friendly warnings and enables the throwing of exceptions.
                      This is less user friendly, but allows catching exceptions in calling scripts.

                      diff --git a/Resolve-DbaNetworkName.html b/Resolve-DbaNetworkName.html index 25d7706b..688f446a 100644 --- a/Resolve-DbaNetworkName.html +++ b/Resolve-DbaNetworkName.html @@ -487,19 +487,19 @@

                      Resolve-DbaNetworkName

                      Synopsis

                      Returns information about the network connection of the target computer including NetBIOS name, IP Address, domain name and fully qualified domain name (FQDN).

                      Description

                      -

                      Retrieves the IPAddress, ComputerName from one computer. +

                      Retrieves the IPAddress, ComputerName from one computer.
                      The object can be used to take action against its name or IPAddress.

                      First ICMP is used to test the connection, and get the connected IPAddress.

                      Multiple protocols (e.g. WMI, CIM, etc) are attempted before giving up.

                      -

                      Important: Remember that FQDN doesn't always match "ComputerName dot Domain" as AD intends. -There are network setup (google "disjoint domain") where AD and DNS do not match. -"Full computer name" (as reported by sysdm.cpl) is the only match between the two, -and it matches the "DNSHostName" property of the computer object stored in AD. -This means that the notation of FQDN that matches "ComputerName dot Domain" is incorrect -in those scenarios. +

                      Important: Remember that FQDN doesn't always match "ComputerName dot Domain" as AD intends.
                      +There are network setup (google "disjoint domain") where AD and DNS do not match.
                      +"Full computer name" (as reported by sysdm.cpl) is the only match between the two,
                      +and it matches the "DNSHostName" property of the computer object stored in AD.
                      +This means that the notation of FQDN that matches "ComputerName dot Domain" is incorrect
                      +in those scenarios.
                      In other words, the "suffix" of the FQDN CAN be different from the AD Domain.

                      -

                      This cmdlet has been providing good results since its inception but for lack of useful -names some doubts may arise. +

                      This cmdlet has been providing good results since its inception but for lack of useful
                      +names some doubts may arise.
                      Let this clear the doubts:

                      • InputName: whatever has been passed in
                      • @@ -543,7 +543,7 @@
                        Example: 4

                        Returns a custom object displaying InputName, ComputerName, IPAddress, DNSHostName, DNSDomain, Domain, DNSHostEntry, FQDN, DNSHostEntry for all SQL Servers returned by Get-DbaRegServer

                        Optional Parameters

                        -ComputerName
                        -

                        The target SQL Server instance or instances. +

                        The target SQL Server instance or instances.
                        This can be the name of a computer, a SMO object, an IP address or a SQL Instance.

                      @@ -572,8 +572,8 @@
                      -ComputerName
                      -Credential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -602,8 +602,8 @@
                      -Credential
                      -Turbo
                      -

                      Resolves without accessing the server itself. Faster but may be less accurate because it relies on DNS only, -so it may fail spectacularly for disjoin-domain setups. Also, everyone has its own DNS (i.e. results may vary +

                      Resolves without accessing the server itself. Faster but may be less accurate because it relies on DNS only,
                      +so it may fail spectacularly for disjoin-domain setups. Also, everyone has its own DNS (i.e. results may vary
                      changing the computer where the function runs)

                      @@ -632,8 +632,8 @@
                      -Turbo
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Resolve-DbaPath.html b/Resolve-DbaPath.html index 73fbc69b..42357a37 100644 --- a/Resolve-DbaPath.html +++ b/Resolve-DbaPath.html @@ -487,8 +487,8 @@

                      Resolve-DbaPath

                      Synopsis

                      Resolves a path.

                      Description

                      -

                      Resolves a path. -Will try to resolve to paths including some basic path validation and resolution. +

                      Resolves a path.
                      +Will try to resolve to paths including some basic path validation and resolution.
                      Will fail if the path cannot be resolved (so an existing path must be reached at).

                      Syntax

                      Resolve-DbaPath
                      @@ -515,7 +515,7 @@ 
                      Example: 2

                      This will resolve all items in the parent folder, whatever the current path or drive might be.

                      Required Parameters

                      -Path
                      -

                      The path to validate.

                      +

                      The path to validate.

                      @@ -544,8 +544,8 @@
                      -Path

                      Optional Parameters

                      -Provider
                      -

                      Ensure the path is of the expected provider. -Allows ensuring one does not operate in the wrong provider. +

                      Ensure the path is of the expected provider.
                      +Allows ensuring one does not operate in the wrong provider.
                      Common providers include the filesystem, the registry or the active directory.

                      @@ -574,7 +574,7 @@
                      -Provider
                      -SingleItem
                      -

                      Ensure the path should resolve to a single path only. +

                      Ensure the path should resolve to a single path only.
                      This may - intentionally or not - trip up wildcard paths.

                      @@ -603,8 +603,8 @@
                      -SingleItem
                      -NewChild
                      -

                      Assumes one wishes to create a new child item. -The parent path will be resolved and must validate true. +

                      Assumes one wishes to create a new child item.
                      +The parent path will be resolved and must validate true.
                      The final leaf will be treated as a leaf item that does not exist yet.

                      diff --git a/Restart-DbaService.html b/Restart-DbaService.html index 91866d36..938b246f 100644 --- a/Restart-DbaService.html +++ b/Restart-DbaService.html @@ -505,7 +505,8 @@

                      Syntax

                      Restart-DbaService [-InstanceName <String[]>] - [-Type <String[]>] -InputObject <Object[]> + [-Type <String[]>] + -InputObject <Object[]> [-Timeout <Int32>] [-Credential <PSCredential>] [-Force] @@ -540,7 +541,7 @@
                      Example: 5

                      Restarts SQL Server database engine services on sql1 forcing dependent SQL Server Agent services to restart as well.

                      Required Parameters

                      -InputObject
                      -

                      A collection of services from Get-DbaService

                      +

                      A collection of services from Get-DbaService

                      @@ -625,7 +626,7 @@
                      -InstanceName
                      -SqlInstance
                      -

                      Use a combination of computername and instancename to get the SQL Server related services for specific instances on specific computers. +

                      Use a combination of computername and instancename to get the SQL Server related services for specific instances on specific computers.
                      Parameters ComputerName and InstanceName will be ignored if SqlInstance is used.

                      @@ -654,7 +655,7 @@
                      -SqlInstance
                      -Type
                      -

                      Use -Type to collect only services of the desired SqlServiceType. +

                      Use -Type to collect only services of the desired SqlServiceType.
                      Can be one of the following: "Agent", "Browser", "Engine", "FullText", "SSAS", "SSIS", "SSRS", "PolyBase", "Launchpad"

                      @@ -771,8 +772,8 @@
                      -Force
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Restore-DbaDatabase.html b/Restore-DbaDatabase.html index 295e1161..a5bf1cb8 100644 --- a/Restore-DbaDatabase.html +++ b/Restore-DbaDatabase.html @@ -487,16 +487,17 @@

                      Restore-DbaDatabase

                      Synopsis

                      Restores a SQL Server Database from a set of backup files.

                      Description

                      -

                      Upon being passed a list of potential backups files this command will scan the files, select those that contain SQL Server -backup sets. It will then filter those files down to a set that can perform the requested restore, checking that we have a +

                      Upon being passed a list of potential backups files this command will scan the files, select those that contain SQL Server
                      +backup sets. It will then filter those files down to a set that can perform the requested restore, checking that we have a
                      full restore chain to the point in time requested by the caller.

                      -

                      The function defaults to working on a remote instance. This means that all paths passed in must be relative to the remote instance. +

                      The function defaults to working on a remote instance. This means that all paths passed in must be relative to the remote instance.
                      XpDirTree will be used to perform the file scans.

                      -

                      Various means can be used to pass in a list of files to be considered. The default is to recursively scan the folder +

                      Various means can be used to pass in a list of files to be considered. The default is to recursively scan the folder
                      passed in.

                      Syntax

                      Restore-DbaDatabase -SqlInstance <DbaInstanceParameter>
                      -    [-SqlCredential <PSCredential>] -Path <Object[]>
                      +    [-SqlCredential <PSCredential>]
                      +    -Path <Object[]>
                           [-DatabaseName <Object[]>]
                           [-DestinationDataDirectory <String>]
                           [-DestinationLogDirectory <String>]
                      @@ -547,7 +548,8 @@ 

                      Syntax

                      [<CommonParameters>] Restore-DbaDatabase -SqlInstance <DbaInstanceParameter> - [-SqlCredential <PSCredential>] -Path <Object[]> + [-SqlCredential <PSCredential>] + -Path <Object[]> [-DatabaseName <Object[]>] [-OutputScriptOnly] [-TrustDbBackupHistory] @@ -563,7 +565,9 @@

                      Syntax

                      [-FormatBackupInformation <String>] [-StopAfterFormatBackupInformation] [-TestBackupInformation <String>] - [-StopAfterTestBackupInformation] -PageRestore <Object> -PageRestoreTailFolder <String> + [-StopAfterTestBackupInformation] + -PageRestore <Object> + -PageRestoreTailFolder <String> [-StopBefore] [-StopMark <String>] [-StopAfterDate <DateTime>] @@ -717,7 +721,7 @@
                      Example: 17
                      Note that Date time needs to be specified in your local SQL Server culture

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance.

                      +

                      The target SQL Server instance.

                      @@ -745,11 +749,11 @@
                      -SqlInstance
                      -Path
                      -

                      Path to SQL Server backup files. -Paths passed in as strings will be scanned using the desired method, default is a recursive folder scan. -Accepts multiple paths separated by ','. -Or it can consist of FileInfo objects, such as the output of Get-ChildItem or Get-Item. This allows you to work with -your own file structures as needed.

                      +

                      Path to SQL Server backup files.
                      +Paths passed in as strings will be scanned using the desired method, default is a recursive folder scan.
                      +Accepts multiple paths separated by ','.
                      +Or it can consist of FileInfo objects, such as the output of Get-ChildItem or Get-Item. This allows you to work with
                      +your own file structures as needed.

                      @@ -777,9 +781,9 @@
                      -Path
                      -PageRestore
                      -

                      Passes in an object from Get-DbaSuspectPages containing suspect pages from a single database. -Setting this Parameter will cause an Online Page restore if the target Instance is Enterprise Edition, or offline if not. -This will involve taking a tail log backup, so you must check your restore chain once it has completed.

                      +

                      Passes in an object from Get-DbaSuspectPages containing suspect pages from a single database.
                      +Setting this Parameter will cause an Online Page restore if the target Instance is Enterprise Edition, or offline if not.
                      +This will involve taking a tail log backup, so you must check your restore chain once it has completed.

                      @@ -807,7 +811,7 @@
                      -PageRestore
                      -PageRestoreTailFolder
                      -

                      This parameter passes in a location for the tail log backup required for page level restore.

                      +

                      This parameter passes in a location for the tail log backup required for page level restore.

                      @@ -836,8 +840,8 @@
                      -PageRestoreTailFolder

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -866,7 +870,7 @@
                      -SqlCredential
                      -DatabaseName
                      -

                      Name to restore the database under. +

                      Name to restore the database under.
                      Only works with a single database restore. If multiple database are found in the provided paths then we will exit.

                      @@ -895,7 +899,7 @@
                      -DatabaseName
                      -DestinationDataDirectory
                      -

                      Path to restore the SQL Server backups to on the target instance. +

                      Path to restore the SQL Server backups to on the target instance.
                      If only this parameter is specified, then all database files (data and log) will be restored to this location.

                      @@ -924,7 +928,7 @@
                      -DestinationDataDirectory
                      -DestinationLogDirectory
                      -

                      Path to restore the database log files to. +

                      Path to restore the database log files to.
                      This parameter can only be specified alongside DestinationDataDirectory.

                      @@ -953,7 +957,7 @@
                      -DestinationLogDirectory
                      -DestinationFileStreamDirectory
                      -

                      Path to restore FileStream data to. +

                      Path to restore FileStream data to.
                      This parameter can only be specified alongside DestinationDataDirectory.

                      @@ -1094,8 +1098,8 @@
                      -KeepReplication
                      -XpDirTree
                      -

                      Switch that indicated file scanning should be performed by the SQL Server instance using xp_dirtree. -This will scan recursively from the passed in path. +

                      Switch that indicated file scanning should be performed by the SQL Server instance using xp_dirtree.
                      +This will scan recursively from the passed in path.
                      You must have sysadmin role membership on the instance for this to work.

                      @@ -1152,7 +1156,7 @@
                      -NoXpDirRecurse
                      -OutputScriptOnly
                      -

                      Switch indicates that ONLY T-SQL scripts should be generated, no restore takes place. +

                      Switch indicates that ONLY T-SQL scripts should be generated, no restore takes place.
                      Due to the limitations of SMO, this switch cannot be combined with VeriyOnly, and a warning will be raised if it is.

                      @@ -1181,7 +1185,7 @@
                      -OutputScriptOnly
                      -VerifyOnly
                      -

                      Switch indicate that restore should be verified. +

                      Switch indicate that restore should be verified.
                      Due to the limitations of SMO, this switch cannot be combined with OutputScriptOnly, and a warning will be raised if it is.

                      @@ -1210,8 +1214,8 @@
                      -VerifyOnly
                      -MaintenanceSolutionBackup
                      -

                      Switch to indicate the backup files are in a folder structure as created by Ola Hallengreen's maintenance scripts. -This switch enables a faster check for suitable backups. Other options require all files to be read first to ensure we have an anchoring full backup. +

                      Switch to indicate the backup files are in a folder structure as created by Ola Hallengreen's maintenance scripts.
                      +This switch enables a faster check for suitable backups. Other options require all files to be read first to ensure we have an anchoring full backup.
                      Because we can rely on specific locations for backups performed with OlaHallengren's backup solution, we can rely on file locations.

                      @@ -1240,9 +1244,9 @@
                      -MaintenanceSolutionBackup
                      -FileMapping
                      -

                      A hashtable that can be used to move specific files to a location. -$FileMapping = @{'DataFile1'='c:\restoredfiles\Datafile1.mdf';'DataFile3'='d:\DataFile3.mdf'} -And files not specified in the mapping will be restored to their original location. +

                      A hashtable that can be used to move specific files to a location.
                      +$FileMapping = @{'DataFile1'='c:\restoredfiles\Datafile1.mdf';'DataFile3'='d:\DataFile3.mdf'}
                      +And files not specified in the mapping will be restored to their original location.
                      This Parameter is exclusive with DestinationDataDirectory.

                      @@ -1355,8 +1359,8 @@
                      -UseDestinationDefaultDirectories
                      -ReuseSourceFolderStructure
                      -

                      By default, databases will be migrated to the destination Sql Server's default data and log directories. You can override this by specifying -ReuseSourceFolderStructure. -The same structure on the SOURCE will be kept exactly, so consider this if you're migrating between different versions and use part of Microsoft's default Sql structure (MSSql12.INSTANCE, etc). +

                      By default, databases will be migrated to the destination Sql Server's default data and log directories. You can override this by specifying -ReuseSourceFolderStructure.
                      +The same structure on the SOURCE will be kept exactly, so consider this if you're migrating between different versions and use part of Microsoft's default Sql structure (MSSql12.INSTANCE, etc).
                      *Note, to reuse destination folder structure, specify -WithReplace

                      @@ -1385,8 +1389,8 @@
                      -ReuseSourceFolderStructure
                      -DestinationFilePrefix
                      -

                      This value will be prefixed to ALL restored files (log and data). This is just a simple string prefix. -If you want to perform more complex rename operations then please use the FileMapping parameter. +

                      This value will be prefixed to ALL restored files (log and data). This is just a simple string prefix.
                      +If you want to perform more complex rename operations then please use the FileMapping parameter.
                      This will apply to all file move options, except for FileMapping.

                      @@ -1415,7 +1419,7 @@
                      -DestinationFilePrefix
                      -RestoredDatabaseNamePrefix
                      -

                      A string which will be prefixed to the start of the restore Database's Name. +

                      A string which will be prefixed to the start of the restore Database's Name.
                      Useful if restoring a copy to the same sql server for testing.

                      @@ -1444,8 +1448,8 @@
                      -RestoredDatabaseNamePrefix
                      -TrustDbBackupHistory
                      -

                      This switch can be used when piping the output of Get-DbaDbBackupHistory or Backup-DbaDatabase into this command. -It allows the user to say that they trust that the output from those commands is correct, and skips the file header read portion of the process. +

                      This switch can be used when piping the output of Get-DbaDbBackupHistory or Backup-DbaDatabase into this command.
                      +It allows the user to say that they trust that the output from those commands is correct, and skips the file header read portion of the process.
                      This means a faster process, but at the risk of not knowing till halfway through the restore that something is wrong with a file.

                      @@ -1502,8 +1506,8 @@
                      -MaxTransferSize
                      -BlockSize
                      -

                      Specifies the block size to use. Must be one of 0.5kb,1kb,2kb,4kb,8kb,16kb,32kb or 64kb. -Can be specified in bytes. +

                      Specifies the block size to use. Must be one of 0.5kb,1kb,2kb,4kb,8kb,16kb,32kb or 64kb.
                      +Can be specified in bytes.
                      Refer to https://msdn.microsoft.com/en-us/library/ms178615.aspx for more detail.

                      @@ -1532,7 +1536,7 @@
                      -BlockSize
                      -BufferCount
                      -

                      Number of I/O buffers to use to perform the operation. +

                      Number of I/O buffers to use to perform the operation.
                      Refer to https://msdn.microsoft.com/en-us/library/ms178615.aspx for more detail.

                      @@ -1589,8 +1593,8 @@
                      -DirectoryRecurse
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      @@ -1619,7 +1623,7 @@
                      -EnableException
                      -StandbyDirectory
                      -

                      If a directory is specified the database(s) will be restored into a standby state, with the standby file placed into this directory (which must exist, and be writable by the target Sql Server +

                      If a directory is specified the database(s) will be restored into a standby state, with the standby file placed into this directory (which must exist, and be writable by the target Sql Server
                      instance).

                      @@ -1704,7 +1708,7 @@
                      -ExecuteAs
                      -AzureCredential
                      -

                      The name of the SQL Server credential to be used if restoring from an Azure hosted backup using Storage Access Keys. +

                      The name of the SQL Server credential to be used if restoring from an Azure hosted backup using Storage Access Keys.
                      If a backup path beginning http is passed in and this parameter is not specified then if a credential with a name matching the URL.

                      @@ -1761,8 +1765,8 @@
                      -ReplaceDbNameInFile
                      -DestinationFileSuffix
                      -

                      This value will be suffixed to ALL restored files (log and data). This is just a simple string suffix. -If you want to perform more complex rename operations then please use the FileMapping parameter. +

                      This value will be suffixed to ALL restored files (log and data). This is just a simple string suffix.
                      +If you want to perform more complex rename operations then please use the FileMapping parameter.
                      This will apply to all file move options, except for FileMapping.

                      @@ -2099,7 +2103,7 @@
                      -StopBefore
                      -StopMark
                      -

                      Marked point in the transaction log to stop the restore at (Mark is created via BEGIN TRANSACTION +

                      Marked point in the transaction log to stop the restore at (Mark is created via BEGIN TRANSACTION
                      (https://docs.microsoft.com/en-us/sql/t-sql/language-elements/begin-transaction-transact-sql?view=sql-server-ver15)).

                      diff --git a/Restore-DbaDbCertificate.html b/Restore-DbaDbCertificate.html index 656a73d3..ee9e5818 100644 --- a/Restore-DbaDbCertificate.html +++ b/Restore-DbaDbCertificate.html @@ -518,7 +518,7 @@
                      Example: 2

                      Restores the DatabaseTDE certificate to Server1 and uses the MasterKey to encrypt the private key.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -546,7 +546,7 @@
                      -SqlInstance
                      -Path
                      -

                      The Path the contains the certificate and private key files. The path can be a directory or a specific certificate.

                      +

                      The Path the contains the certificate and private key files. The path can be a directory or a specific certificate.

                      @@ -575,8 +575,8 @@
                      -Path

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -745,8 +745,8 @@
                      -DecryptionPassword
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Restore-DbaDbSnapshot.html b/Restore-DbaDbSnapshot.html index 54d947de..a73abca0 100644 --- a/Restore-DbaDbSnapshot.html +++ b/Restore-DbaDbSnapshot.html @@ -487,8 +487,8 @@

                      Restore-DbaDbSnapshot

                      Synopsis

                      Restores databases from snapshots

                      Description

                      -

                      Restores the database from the snapshot, discarding every modification made to the database -NB: Restoring to a snapshot will result in every other snapshot of the same database to be dropped +

                      Restores the database from the snapshot, discarding every modification made to the database
                      +NB: Restoring to a snapshot will result in every other snapshot of the same database to be dropped
                      It also fixes some long-standing bugs in SQL Server when restoring from snapshots

                      Syntax

                      Restore-DbaDbSnapshot
                      @@ -558,8 +558,8 @@ 
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -700,8 +700,8 @@
                      -InputObject
                      -Force
                      -

                      If restoring from a snapshot involves dropping any other snapshot, you need to explicitly -use -Force to let this command delete the ones not involved in the restore process. +

                      If restoring from a snapshot involves dropping any other snapshot, you need to explicitly
                      +use -Force to let this command delete the ones not involved in the restore process.
                      Also, -Force will forcibly kill all running queries that prevent the restore process.

                      @@ -730,8 +730,8 @@
                      -Force
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Resume-DbaAgDbDataMovement.html b/Resume-DbaAgDbDataMovement.html index 5f8d6e94..6ad2f436 100644 --- a/Resume-DbaAgDbDataMovement.html +++ b/Resume-DbaAgDbDataMovement.html @@ -542,8 +542,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -656,8 +656,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Revoke-DbaAgPermission.html b/Revoke-DbaAgPermission.html index ecc1bb5c..68261709 100644 --- a/Revoke-DbaAgPermission.html +++ b/Revoke-DbaAgPermission.html @@ -520,7 +520,7 @@
                      Example: 3

                      Revokes the selected logins Connect permissions on the DatabaseMirroring endpoint for sql2017a.

                      Required Parameters

                      -Type
                      -

                      Specify type: Endpoint or AvailabilityGroup. Endpoint will modify the DatabaseMirror endpoint type.

                      +

                      Specify type: Endpoint or AvailabilityGroup. Endpoint will modify the DatabaseMirror endpoint type.

                      @@ -581,8 +581,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -667,24 +667,24 @@
                      -AvailabilityGroup
                      -Permission
                      -

                      Revokes one or more permissions: -Alter -Connect -Control -CreateAnyDatabase -CreateSequence -Delete -Execute -Impersonate -Insert -Receive -References -Select -Send -TakeOwnership -Update -ViewChangeTracking -ViewDefinition +

                      Revokes one or more permissions:
                      +Alter
                      +Connect
                      +Control
                      +CreateAnyDatabase
                      +CreateSequence
                      +Delete
                      +Execute
                      +Impersonate
                      +Insert
                      +Receive
                      +References
                      +Select
                      +Send
                      +TakeOwnership
                      +Update
                      +ViewChangeTracking
                      +ViewDefinition
                      Connect is default.

                      @@ -745,8 +745,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Save-DbaCommunitySoftware.html b/Save-DbaCommunitySoftware.html index aa633bca..5b5ed352 100644 --- a/Save-DbaCommunitySoftware.html +++ b/Save-DbaCommunitySoftware.html @@ -487,10 +487,10 @@

                      Save-DbaCommunitySoftware

                      Synopsis

                      Download and extract software from Github to update the local cached version of that software.

                      Description

                      -

                      Download and extract software from Github to update the local cached version of that software. +

                      Download and extract software from Github to update the local cached version of that software.
                      This command is run from inside of Install-Dba*, Update-Dba*, Invoke-DbaAzSqlDbTip commands to update the local cache if needed.

                      -

                      In case you don't have internet access on the target computer, you can download the zip files from the following URLs -at another computer, transfer them to the target computer or place them on a network share and then use -LocalFile +

                      In case you don't have internet access on the target computer, you can download the zip files from the following URLs
                      +at another computer, transfer them to the target computer or place them on a network share and then use -LocalFile
                      to update the local cache:

                      • MaintenanceSolution: https://github.com/olahallengren/sql-server-maintenance-solution
                      • @@ -527,7 +527,7 @@
                        Example: 2

                        Updates the local cache of the First Responder Kit based on the given file.

                        Optional Parameters

                        -Software
                        -

                        Name of the software to download. +

                        Name of the software to download.
                        Options include:

                        • MaintenanceSolution: SQL Server Maintenance Solution created by Ola Hallengren (https://ola.hallengren.com)
                        • @@ -681,8 +681,8 @@
                          -LocalDirectory
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Save-DbaDiagnosticQueryScript.html b/Save-DbaDiagnosticQueryScript.html index 9dfed784..eaf983d5 100644 --- a/Save-DbaDiagnosticQueryScript.html +++ b/Save-DbaDiagnosticQueryScript.html @@ -536,8 +536,8 @@
                      -Path
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Save-DbaKbUpdate.html b/Save-DbaKbUpdate.html index 5741f4dd..cb140809 100644 --- a/Save-DbaKbUpdate.html +++ b/Save-DbaKbUpdate.html @@ -641,8 +641,8 @@
                      -Architecture
                      -Language
                      -

                      Cumulative Updates come in one file for all languages, but Service Packs have a file for every language. -If you want to download only a specific language, use this parameter. +

                      Cumulative Updates come in one file for all languages, but Service Packs have a file for every language.
                      +If you want to download only a specific language, use this parameter.
                      You have to use the three letter code that is part of the filename, e. g. "enu" for english or "deu" for german.

                      @@ -699,8 +699,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Select-DbaBackupInformation.html b/Select-DbaBackupInformation.html index 444411b1..956f2f7d 100644 --- a/Select-DbaBackupInformation.html +++ b/Select-DbaBackupInformation.html @@ -527,7 +527,7 @@
                      Example: 4

                      Returns all the backups in \server1\backups$ to restore to 1 hour ago using only Full and Log backups.

                      Required Parameters

                      -BackupHistory
                      -

                      A dbatools.BackupHistory object containing backup history records

                      +

                      A dbatools.BackupHistory object containing backup history records

                      @@ -696,7 +696,7 @@
                      -ServerName
                      -ContinuePoints
                      -

                      The Output of Get-RestoreContinuableDatabase while provides 'Database',redo_start_lsn,'FirstRecoveryForkID' values. Used to filter backups to continue a restore on a database +

                      The Output of Get-RestoreContinuableDatabase while provides 'Database',redo_start_lsn,'FirstRecoveryForkID' values. Used to filter backups to continue a restore on a database
                      Sets IgnoreDiffs, and also filters databases to only those within the ContinuePoints object, or the ContinuePoints object AND DatabaseName if both specified

                      @@ -725,7 +725,7 @@
                      -ContinuePoints
                      -LastRestoreType
                      -

                      The Output of Get-DbaDbRestoreHistory -last +

                      The Output of Get-DbaDbRestoreHistory -last
                      This is used to check the last type of backup to a database to see if a differential backup can be restored

                      @@ -754,8 +754,8 @@
                      -LastRestoreType
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Select-DbaDbSequenceNextValue.html b/Select-DbaDbSequenceNextValue.html index a84582ad..c4a8f355 100644 --- a/Select-DbaDbSequenceNextValue.html +++ b/Select-DbaDbSequenceNextValue.html @@ -515,7 +515,7 @@
                      Example: 2

                      Using a pipeline this command selects the next value from the sequence TestSchema.TestSequence in the TestDB database on the sqldev01 instance.

                      Required Parameters

                      -Sequence
                      -

                      The name of the sequence.

                      +

                      The name of the sequence.

                      @@ -544,7 +544,7 @@
                      -Sequence

                      Optional Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function +

                      The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
                      to be executed against multiple SQL Server instances.

                      @@ -573,8 +573,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -687,8 +687,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Select-DbaObject.html b/Select-DbaObject.html index 6e675dd6..c1eac410 100644 --- a/Select-DbaObject.html +++ b/Select-DbaObject.html @@ -489,16 +489,27 @@

                      Synopsis

                      Description

                      Wrapper around Select-Object, extends property parameter.

                              This function allows specifying in-line transformation of the properties specified without needing to use complex hashtables.
                      +
                               For example, renaming a property becomes as simple as 'Length as Size'
                       
                      +
                      +
                               Also supported:
                       
                      +
                      +
                               - Specifying a typename
                       
                      +
                      +
                               - Picking the default display properties
                       
                      +
                      +
                               - Adding to an existing object without destroying its type
                       
                      +
                      +
                               See the description of the Property parameter for an exhaustive list of legal notations for in-line transformations.
                       

                      Syntax

                      @@ -509,13 +520,16 @@

                      Syntax

                      [-ScriptMethod <SelectScriptMethodParameter[]>] [-InputObject ] [-ExcludeProperty <string[]>] - [-ExpandProperty ] -Unique + [-ExpandProperty ] + -Unique [-Last ] [-First ] - [-Skip ] -Wait + [-Skip ] + -Wait [-ShowProperty <string[]>] [-ShowExcludeProperty <string[]>] - [-TypeName ] -KeepInputObject + [-TypeName ] + -KeepInputObject [] Select-DbaObject @@ -525,19 +539,24 @@

                      Syntax

                      [-ScriptMethod <SelectScriptMethodParameter[]>] [-InputObject ] [-ExcludeProperty <string[]>] - [-ExpandProperty ] -Unique + [-ExpandProperty ] + -Unique [-SkipLast ] [-ShowProperty <string[]>] [-ShowExcludeProperty <string[]>] - [-TypeName ] -KeepInputObject + [-TypeName ] + -KeepInputObject [] Select-DbaObject - [-InputObject ] -Unique -Wait + [-InputObject ] + -Unique + -Wait [-Index <int[]>] [-ShowProperty <string[]>] [-ShowExcludeProperty <string[]>] - [-TypeName ] -KeepInputObject + [-TypeName ] + -KeepInputObject [] diff --git a/Set-DbaAgListener.html b/Set-DbaAgListener.html index d4127b94..2eab5c6e 100644 --- a/Set-DbaAgListener.html +++ b/Set-DbaAgListener.html @@ -516,7 +516,7 @@
                      Example: 2

                      Changes the port for selected AG listeners to 1433. Does not prompt for confirmation.

                      Required Parameters

                      -Port
                      -

                      Sets the port number used to communicate with the availability group.

                      +

                      Sets the port number used to communicate with the availability group.

                      @@ -573,8 +573,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -687,8 +687,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaAgReplica.html b/Set-DbaAgReplica.html index fa784015..97e4cd9d 100644 --- a/Set-DbaAgReplica.html +++ b/Set-DbaAgReplica.html @@ -564,8 +564,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -806,8 +806,8 @@
                      -ConnectionModeInSecondaryRole
                      -SeedingMode
                      -

                      Specifies how the secondary replica will be initially seeded. -Automatic enables direct seeding. This method will seed the secondary replica over the network. This method does not require you to backup and restore a copy of the primary database on the replica. +

                      Specifies how the secondary replica will be initially seeded.
                      +Automatic enables direct seeding. This method will seed the secondary replica over the network. This method does not require you to backup and restore a copy of the primary database on the replica.
                      Manual requires you to create a backup of the database on the primary replica and manually restore that backup on the secondary replica.

                      @@ -980,8 +980,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaAgentAlert.html b/Set-DbaAgentAlert.html index 769f0c8b..b13a5c2f 100644 --- a/Set-DbaAgentAlert.html +++ b/Set-DbaAgentAlert.html @@ -553,8 +553,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -751,8 +751,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaAgentJob.html b/Set-DbaAgentJob.html index 11c87583..d3dfa8da 100644 --- a/Set-DbaAgentJob.html +++ b/Set-DbaAgentJob.html @@ -587,8 +587,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -897,8 +897,8 @@
                      -OwnerLogin
                      -EventLogLevel
                      -

                      Specifies when to place an entry in the Microsoft Windows application log for this job. -Allowed values 0, "Never", 1, "OnSuccess", 2, "OnFailure", 3, "Always" +

                      Specifies when to place an entry in the Microsoft Windows application log for this job.
                      +Allowed values 0, "Never", 1, "OnSuccess", 2, "OnFailure", 3, "Always"
                      The text value van either be lowercase, uppercase or something in between as long as the text is correct.

                      @@ -931,8 +931,8 @@
                      -EventLogLevel
                      -EmailLevel
                      -

                      Specifies when to send an e-mail upon the completion of this job. -Allowed values 0, "Never", 1, "OnSuccess", 2, "OnFailure", 3, "Always" +

                      Specifies when to send an e-mail upon the completion of this job.
                      +Allowed values 0, "Never", 1, "OnSuccess", 2, "OnFailure", 3, "Always"
                      The text value van either be lowercase, uppercase or something in between as long as the text is correct.

                      @@ -965,8 +965,8 @@
                      -EmailLevel
                      -NetsendLevel
                      -

                      Specifies when to send a network message upon the completion of this job. -Allowed values 0, "Never", 1, "OnSuccess", 2, "OnFailure", 3, "Always" +

                      Specifies when to send a network message upon the completion of this job.
                      +Allowed values 0, "Never", 1, "OnSuccess", 2, "OnFailure", 3, "Always"
                      The text value van either be lowercase, uppercase or something in between as long as the text is correct.

                      @@ -999,8 +999,8 @@
                      -NetsendLevel
                      -PageLevel
                      -

                      Specifies when to send a page upon the completion of this job. -Allowed values 0, "Never", 1, "OnSuccess", 2, "OnFailure", 3, "Always" +

                      Specifies when to send a page upon the completion of this job.
                      +Allowed values 0, "Never", 1, "OnSuccess", 2, "OnFailure", 3, "Always"
                      The text value van either be lowercase, uppercase or something in between as long as the text is correct.

                      @@ -1117,8 +1117,8 @@
                      -PageOperator
                      -DeleteLevel
                      -

                      Specifies when to delete the job. -Allowed values 0, "Never", 1, "OnSuccess", 2, "OnFailure", 3, "Always" +

                      Specifies when to delete the job.
                      +Allowed values 0, "Never", 1, "OnSuccess", 2, "OnFailure", 3, "Always"
                      The text value van either be lowercase, uppercase or something in between as long as the text is correct.

                      @@ -1207,8 +1207,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaAgentJobCategory.html b/Set-DbaAgentJobCategory.html index 8b522ec8..0d0e0020 100644 --- a/Set-DbaAgentJobCategory.html +++ b/Set-DbaAgentJobCategory.html @@ -514,7 +514,7 @@
                      Example: 2

                      Rename multiple jobs in one go on multiple servers.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                      +

                      The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                      @@ -543,8 +543,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -657,8 +657,8 @@
                      -Force
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaAgentJobOutputFile.html b/Set-DbaAgentJobOutputFile.html index 9742cb77..32f942b5 100644 --- a/Set-DbaAgentJobOutputFile.html +++ b/Set-DbaAgentJobOutputFile.html @@ -493,7 +493,8 @@

                      Syntax

                      [-SqlInstance] <DbaInstanceParameter[]> [-SqlCredential <PSCredential>] [-Job <Object[]>] - [-Step <Object[]>] -OutputFile <String> + [-Step <Object[]>] + -OutputFile <String> [-EnableException] [-WhatIf] [-Confirm] @@ -509,7 +510,7 @@
                      Example: 1

                      Sets the Job step for The Agent job on SERVERNAME to E:\Logs\AgentJobStepOutput.txt

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -537,7 +538,7 @@
                      -SqlInstance
                      -OutputFile
                      -

                      The Full Path to the New Output file

                      +

                      The Full Path to the New Output file

                      @@ -566,9 +567,9 @@
                      -OutputFile

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. -For MFA support, please use Connect-DbaInstance. be it Windows or SQL Server. Windows users are determined by the existence of a backslash, so if you are intending to use an alternative Windows +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      +For MFA support, please use Connect-DbaInstance. be it Windows or SQL Server. Windows users are determined by the existence of a backslash, so if you are intending to use an alternative Windows
                      connection instead of a SQL login, ensure it contains a backslash.

                      @@ -653,8 +654,8 @@
                      -Step
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaAgentJobOwner.html b/Set-DbaAgentJobOwner.html index 26a5d364..de068bfa 100644 --- a/Set-DbaAgentJobOwner.html +++ b/Set-DbaAgentJobOwner.html @@ -488,7 +488,7 @@

                      Synopsis

                      Sets SQL Agent job owners with a desired login if jobs do not match that owner.

                      Description

                      This function alters SQL Agent Job ownership to match a specified login if their current owner does not match the target login.

                      -

                      By default, the target login will be 'sa', +

                      By default, the target login will be 'sa',
                      but the the user may specify a different login for ownership.

                      This be applied to all local (non MultiServer) jobs or only to a select collection of jobs.

                      Best practice reference: https://www.itprotoday.com/sql-server-tip-assign-ownership-jobs-sysadmin-account

                      @@ -561,8 +561,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -703,8 +703,8 @@
                      -Login
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaAgentJobStep.html b/Set-DbaAgentJobStep.html index f507a2fb..e5476bfb 100644 --- a/Set-DbaAgentJobStep.html +++ b/Set-DbaAgentJobStep.html @@ -600,8 +600,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -714,7 +714,7 @@
                      -NewName
                      -Subsystem
                      -

                      The subsystem used by the SQL Server Agent service to execute command. +

                      The subsystem used by the SQL Server Agent service to execute command.
                      Allowed values 'ActiveScripting','AnalysisCommand','AnalysisQuery','CmdExec','Distribution','LogReader','Merge','PowerShell','QueueReader','Snapshot','Ssis','TransactSql'

                      @@ -831,8 +831,8 @@
                      -CmdExecSuccessCode
                      -OnSuccessAction
                      -

                      The action to perform if the step succeeds. -Allowed values "QuitWithSuccess" (default), "QuitWithFailure", "GoToNextStep", "GoToStep". +

                      The action to perform if the step succeeds.
                      +Allowed values "QuitWithSuccess" (default), "QuitWithFailure", "GoToNextStep", "GoToStep".
                      The text value van either be lowercase, uppercase or something in between as long as the text is correct.

                      @@ -893,8 +893,8 @@
                      -OnSuccessStepId
                      -OnFailAction
                      -

                      The action to perform if the step fails. -Allowed values "QuitWithFailure" (default), "QuitWithSuccess", "GoToNextStep", "GoToStep". +

                      The action to perform if the step fails.
                      +Allowed values "QuitWithFailure" (default), "QuitWithSuccess", "GoToNextStep", "GoToStep".
                      The text value van either be lowercase, uppercase or something in between as long as the text is correct.

                      @@ -1097,12 +1097,12 @@
                      -OutputFileName
                      -Flag

                      Sets the flag(s) for the job step. Flag Description

                      -

                      AppendAllCmdExecOutputToJobHistory Job history, including command output, is appended to the job history file. -AppendToJobHistory Job history is appended to the job history file. -AppendToLogFile Job history is appended to the SQL Server log file. -AppendToTableLog Job history is appended to a log table. -LogToTableWithOverwrite Job history is written to a log table, overwriting previous contents. -None Job history is not appended to a file. +

                      AppendAllCmdExecOutputToJobHistory Job history, including command output, is appended to the job history file.
                      +AppendToJobHistory Job history is appended to the job history file.
                      +AppendToLogFile Job history is appended to the SQL Server log file.
                      +AppendToTableLog Job history is appended to a log table.
                      +LogToTableWithOverwrite Job history is written to a log table, overwriting previous contents.
                      +None Job history is not appended to a file.
                      ProvideStopProcessEvent Job processing is stopped.

                      @@ -1191,8 +1191,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaAgentOperator.html b/Set-DbaAgentOperator.html index 7734074a..c74652dd 100644 --- a/Set-DbaAgentOperator.html +++ b/Set-DbaAgentOperator.html @@ -554,8 +554,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -724,8 +724,8 @@
                      -PagerAddress
                      -PagerDay
                      -

                      Defines what days the pager portion of the operator will be used. The default is 'Everyday'. Valid parameters -are 'EveryDay', 'Weekdays', 'Weekend', 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', and +

                      Defines what days the pager portion of the operator will be used. The default is 'Everyday'. Valid parameters
                      +are 'EveryDay', 'Weekdays', 'Weekend', 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', and
                      'Saturday'.

                      @@ -954,9 +954,9 @@
                      -IsFailsafeOperator
                      -FailsafeNotificationMethod
                      -

                      Defines the notification method(s) for the failsafe operator. The default is 'NotifyEmail'. -Valid parameter values are 'None', 'NotifyEmail', 'Pager', 'NetSend', 'NotifyAll'. -Values 'NotifyEmail', 'Pager', 'NetSend' can be specified in any combination. +

                      Defines the notification method(s) for the failsafe operator. The default is 'NotifyEmail'.
                      +Valid parameter values are 'None', 'NotifyEmail', 'Pager', 'NetSend', 'NotifyAll'.
                      +Values 'NotifyEmail', 'Pager', 'NetSend' can be specified in any combination.
                      Values 'None' and 'NotifyAll' cannot be specified in conjunction with any other value.

                      @@ -1017,8 +1017,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaAgentSchedule.html b/Set-DbaAgentSchedule.html index 3d35d364..ea0643e1 100644 --- a/Set-DbaAgentSchedule.html +++ b/Set-DbaAgentSchedule.html @@ -539,7 +539,7 @@
                      Example: 5

                      Changes the schedule for Job1 with the name 'daily' to enabled on multiple servers using pipe line

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                      +

                      The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                      @@ -567,7 +567,7 @@
                      -SqlInstance
                      -Job
                      -

                      The name of the job that has the schedule.

                      +

                      The name of the job that has the schedule.

                      @@ -595,7 +595,7 @@
                      -Job
                      -ScheduleName
                      -

                      The name of the schedule.

                      +

                      The name of the schedule.

                      @@ -624,8 +624,8 @@
                      -ScheduleName

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -738,12 +738,12 @@
                      -Disabled
                      -FrequencyType
                      -

                      A value indicating when a job is to be executed. -Allowed values: 'Once', 'OneTime', 'Daily', 'Weekly', 'Monthly', 'MonthlyRelative', 'AgentStart', 'AutoStart', 'IdleComputer', 'OnIdle' -The following synonyms provide flexibility to the allowed values for this function parameter: -Once=OneTime -AgentStart=AutoStart -IdleComputer=OnIdle +

                      A value indicating when a job is to be executed.
                      +Allowed values: 'Once', 'OneTime', 'Daily', 'Weekly', 'Monthly', 'MonthlyRelative', 'AgentStart', 'AutoStart', 'IdleComputer', 'OnIdle'
                      +The following synonyms provide flexibility to the allowed values for this function parameter:
                      +Once=OneTime
                      +AgentStart=AutoStart
                      +IdleComputer=OnIdle
                      If force is used the default will be "Once".

                      @@ -776,11 +776,11 @@
                      -FrequencyType
                      -FrequencyInterval
                      -

                      The days that a job is executed -Allowed values for FrequencyType 'Daily': EveryDay or a number between 1 and 365. -Allowed values for FrequencyType 'Weekly': Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Weekdays, Weekend or EveryDay. -Allowed values for FrequencyType 'Monthly': Numbers 1 to 31 for each day of the month. -If "Weekdays", "Weekend" or "EveryDay" is used it over writes any other value that has been passed before. +

                      The days that a job is executed
                      +Allowed values for FrequencyType 'Daily': EveryDay or a number between 1 and 365.
                      +Allowed values for FrequencyType 'Weekly': Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Weekdays, Weekend or EveryDay.
                      +Allowed values for FrequencyType 'Monthly': Numbers 1 to 31 for each day of the month.
                      +If "Weekdays", "Weekend" or "EveryDay" is used it over writes any other value that has been passed before.
                      If force is used the default will be 1.

                      @@ -809,7 +809,7 @@
                      -FrequencyInterval
                      -FrequencySubdayType
                      -

                      Specifies the units for the subday FrequencyInterval. +

                      Specifies the units for the subday FrequencyInterval.
                      Allowed values are 1, 'Once', 'Time', 2, 'Seconds', 'Second', 4, 'Minutes', 'Minute', 8, 'Hours', 'Hour'

                      @@ -986,8 +986,8 @@
                      -EndDate
                      -StartTime
                      -

                      The time on any day to begin execution of a job. Format HHMMSS / 24 hour clock. -Example: '010000' for 01:00:00 AM. +

                      The time on any day to begin execution of a job. Format HHMMSS / 24 hour clock.
                      +Example: '010000' for 01:00:00 AM.
                      Example: '140000' for 02:00:00 PM.

                      @@ -1016,8 +1016,8 @@
                      -StartTime
                      -EndTime
                      -

                      The time on any day to end execution of a job. Format HHMMSS / 24 hour clock. -Example: '010000' for 01:00:00 AM. +

                      The time on any day to end execution of a job. Format HHMMSS / 24 hour clock.
                      +Example: '010000' for 01:00:00 AM.
                      Example: '140000' for 02:00:00 PM.

                      @@ -1046,8 +1046,8 @@
                      -EndTime
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      @@ -1076,7 +1076,7 @@
                      -EnableException
                      -Force
                      -

                      The force parameter will ignore some errors in the parameters and assume defaults. +

                      The force parameter will ignore some errors in the parameters and assume defaults.
                      It will also remove the any present schedules with the same name for the specific job.

                      diff --git a/Set-DbaAgentServer.html b/Set-DbaAgentServer.html index 2e0b6701..ea6eb997 100644 --- a/Set-DbaAgentServer.html +++ b/Set-DbaAgentServer.html @@ -576,8 +576,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -634,8 +634,8 @@
                      -InputObject
                      -AgentLogLevel
                      -

                      Specifies the agent log level. -Allowed values 1, "Errors", 2, "Warnings", 3, "Errors, Warnings", 4, "Informational", 5, "Errors, Informational", 6, "Warnings, Informational", 7, "All" +

                      Specifies the agent log level.
                      +Allowed values 1, "Errors", 2, "Warnings", 3, "Errors, Warnings", 4, "Informational", 5, "Errors, Informational", 6, "Warnings, Informational", 7, "All"
                      The text value can either be lowercase, uppercase or something in between as long as the text is correct.

                      @@ -668,8 +668,8 @@
                      -AgentLogLevel
                      -AgentMailType
                      -

                      Specifies the agent mail type. -Allowed values 0, "SqlAgentMail", 1, "DatabaseMail" +

                      Specifies the agent mail type.
                      +Allowed values 0, "SqlAgentMail", 1, "DatabaseMail"
                      The text value can either be lowercase, uppercase or something in between as long as the text is correct.

                      @@ -842,7 +842,7 @@
                      -IdleCpuPercentage
                      -CpuPolling
                      -

                      Enable or Disable the Polling. +

                      Enable or Disable the Polling.
                      Allowed values Enabled, Disabled

                      @@ -931,7 +931,7 @@
                      -LoginTimeout
                      -MaximumHistoryRows
                      -

                      Indicates the Maximum job history log size (in rows). The acceptable value range is between 2 and 999999. To turn off the job history limitations use the value -1 and specify 0 for +

                      Indicates the Maximum job history log size (in rows). The acceptable value range is between 2 and 999999. To turn off the job history limitations use the value -1 and specify 0 for
                      MaximumJobHistoryRows. See the example listed below.

                      @@ -960,7 +960,7 @@
                      -MaximumHistoryRows
                      -MaximumJobHistoryRows
                      -

                      Indicates the Maximum job history rows per job. The acceptable value range is between 2 and 999999. To turn off the job history limitations use the value 0 and specify -1 for MaximumHistoryRows. See +

                      Indicates the Maximum job history rows per job. The acceptable value range is between 2 and 999999. To turn off the job history limitations use the value 0 and specify -1 for MaximumHistoryRows. See
                      the example listed below.

                      @@ -1017,7 +1017,7 @@
                      -NetSendRecipient
                      -ReplaceAlertTokens
                      -

                      Enable or Disable the Token replacement property. +

                      Enable or Disable the Token replacement property.
                      Allowed values Enabled, Disabled

                      @@ -1050,7 +1050,7 @@
                      -ReplaceAlertTokens
                      -SaveInSentFolder
                      -

                      Enable or Disable the copy of the sent messages is save in the Sent Items folder. +

                      Enable or Disable the copy of the sent messages is save in the Sent Items folder.
                      Allowed values Enabled, Disabled

                      @@ -1083,7 +1083,7 @@
                      -SaveInSentFolder
                      -SqlAgentAutoStart
                      -

                      Enable or Disable the SQL Agent Auto Start. +

                      Enable or Disable the SQL Agent Auto Start.
                      Allowed values Enabled, Disabled

                      @@ -1144,7 +1144,7 @@
                      -SqlAgentMailProfile
                      -SqlAgentRestart
                      -

                      Enable or Disable the SQL Agent Restart. +

                      Enable or Disable the SQL Agent Restart.
                      Allowed values Enabled, Disabled

                      @@ -1177,7 +1177,7 @@
                      -SqlAgentRestart
                      -SqlServerRestart
                      -

                      Enable or Disable the SQL Server Restart. +

                      Enable or Disable the SQL Server Restart.
                      Allowed values Enabled, Disabled

                      @@ -1210,7 +1210,7 @@
                      -SqlServerRestart
                      -WriteOemErrorLog
                      -

                      Enable or Disable the Write OEM Error Log. +

                      Enable or Disable the Write OEM Error Log.
                      Allowed values Enabled, Disabled

                      @@ -1243,8 +1243,8 @@
                      -WriteOemErrorLog
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaAvailabilityGroup.html b/Set-DbaAvailabilityGroup.html index 116c1374..926d5649 100644 --- a/Set-DbaAvailabilityGroup.html +++ b/Set-DbaAvailabilityGroup.html @@ -554,8 +554,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -668,7 +668,7 @@
                      -DtcSupportEnabled
                      -ClusterType
                      -

                      Cluster type of the Availability Group. Only supported in SQL Server 2017 and above. +

                      Cluster type of the Availability Group. Only supported in SQL Server 2017 and above.
                      Options include: External, Wsfc or None.

                      @@ -765,9 +765,9 @@
                      -FailureConditionLevel
                      -HealthCheckTimeout
                      -

                      This setting used to specify the length of time, in milliseconds, that the SQL Server resource DLL should wait for information returned by the sp_server_diagnostics stored procedure before reporting -the Always On Failover Cluster Instance (FCI) as unresponsive. -Changes that are made to the timeout settings are effective immediately and do not require a restart of the SQL Server resource. +

                      This setting used to specify the length of time, in milliseconds, that the SQL Server resource DLL should wait for information returned by the sp_server_diagnostics stored procedure before reporting
                      +the Always On Failover Cluster Instance (FCI) as unresponsive.
                      +Changes that are made to the timeout settings are effective immediately and do not require a restart of the SQL Server resource.
                      Defaults is 30000 (30 seconds).

                      @@ -796,7 +796,7 @@
                      -HealthCheckTimeout
                      -BasicAvailabilityGroup
                      -

                      Indicates whether the availability group is Basic Availability Group. +

                      Indicates whether the availability group is Basic Availability Group.
                      https://docs.microsoft.com/en-us/sql/database-engine/availability-groups/windows/basic-availability-groups-always-on-availability-groups

                      @@ -909,8 +909,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaCmConnection.html b/Set-DbaCmConnection.html index 9de6f1a0..b9a9ba78 100644 --- a/Set-DbaCmConnection.html +++ b/Set-DbaCmConnection.html @@ -487,7 +487,7 @@

                      Set-DbaCmConnection

                      Synopsis

                      Configures a connection object for use in remote computer management.

                      Description

                      -

                      Configures a connection object for use in remote computer management. +

                      Configures a connection object for use in remote computer management.
                      This function will either create new records for computers that have no connection registered so far, or it will configure existing connections if already present.

                      As such it can be handy in making bulk-edits on connections or manually adjusting some settings.

                      Syntax

                      @@ -619,7 +619,7 @@
                      -Credential
                      -UseWindowsCredentials
                      -

                      Whether using the default windows credentials is legit. +

                      Whether using the default windows credentials is legit.
                      Not setting this will not exclude using windows credentials, but only not pre-confirm them as working.

                      @@ -648,7 +648,7 @@
                      -UseWindowsCredentials
                      -OverrideExplicitCredential
                      -

                      Setting this will enable the credential override. +

                      Setting this will enable the credential override.
                      The override will cause the system to ignore explicitly specified credentials, so long as known, good credentials are available.

                      @@ -677,7 +677,7 @@
                      -OverrideExplicitCredential
                      -OverrideConnectionPolicy
                      -

                      Setting this will configure the connection policy override. +

                      Setting this will configure the connection policy override.
                      By default, global configurations enforce, which connection type is available at all and which is disabled.

                      @@ -706,7 +706,7 @@
                      -OverrideConnectionPolicy
                      -DisabledConnectionTypes
                      -

                      Explicitly disable connection types. +

                      Explicitly disable connection types.
                      These types will then not be used for connecting to the computer.

                      @@ -819,7 +819,7 @@
                      -DisableCredentialAutoRegister
                      -EnableCredentialFailover
                      -

                      Will enable automatic failing over to known to work credentials, when using bad credentials. +

                      Will enable automatic failing over to known to work credentials, when using bad credentials.
                      By default, passing bad credentials will cause the Computer Management functions to interrupt with a warning (Or exception if in silent mode).

                      @@ -876,7 +876,7 @@
                      -WindowsCredentialsAreBad
                      -CimWinRMOptions
                      -

                      Specify a set of options to use when connecting to the target computer using CIM over WinRM. +

                      Specify a set of options to use when connecting to the target computer using CIM over WinRM.
                      Use 'New-CimSessionOption' to create such an object.

                      @@ -905,7 +905,7 @@
                      -CimWinRMOptions
                      -CimDCOMOptions
                      -

                      Specify a set of options to use when connecting to the target computer using CIM over DCOM. +

                      Specify a set of options to use when connecting to the target computer using CIM over DCOM.
                      Use 'New-CimSessionOption' to create such an object.

                      @@ -934,7 +934,7 @@
                      -CimDCOMOptions
                      -AddBadCredential
                      -

                      Adds credentials to the bad credential cache. +

                      Adds credentials to the bad credential cache.
                      These credentials will not be used when connecting to the target remote computer.

                      @@ -991,7 +991,7 @@
                      -RemoveBadCredential
                      -ClearBadCredential
                      -

                      Clears the cache of credentials that didn't worked. +

                      Clears the cache of credentials that didn't worked.
                      Will be applied before adding entries to the credential cache.

                      @@ -1020,7 +1020,7 @@
                      -ClearBadCredential
                      -ClearCredential
                      -

                      Clears the cache of credentials that worked. +

                      Clears the cache of credentials that worked.
                      Will be applied before adding entries to the credential cache.

                      @@ -1054,8 +1054,8 @@
                      -ResetCredential
                    • Clears bad credential cache
                    • Removes last working credential
                    • Un-Confirms the windows credentials as working
                    • -
                    • Un-Confirms the windows credentials as not working -Automatically implies the parameters -ClearCredential and -ClearBadCredential. Using them together is redundant. +
                    • Un-Confirms the windows credentials as not working
                      +Automatically implies the parameters -ClearCredential and -ClearBadCredential. Using them together is redundant.
                      Will be applied before adding entries to the credential cache.
                    • @@ -1113,9 +1113,9 @@
                      -ResetConnectionStatus
                      -ResetConfiguration
                      -

                      Restores the configuration back to system default. -Configuration elements are the basic behavior controlling settings, such as whether to cache bad credentials, etc. -These can be configured globally using the dbatools configuration system and overridden locally on a per-connection basis. +

                      Restores the configuration back to system default.
                      +Configuration elements are the basic behavior controlling settings, such as whether to cache bad credentials, etc.
                      +These can be configured globally using the dbatools configuration system and overridden locally on a per-connection basis.
                      For a list of all available settings, use "Get-DbatoolsConfig -Module ComputerManagement".

                      @@ -1144,8 +1144,8 @@
                      -ResetConfiguration
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaDbCompatibility.html b/Set-DbaDbCompatibility.html index c4d7abf3..50e1a1a6 100644 --- a/Set-DbaDbCompatibility.html +++ b/Set-DbaDbCompatibility.html @@ -546,8 +546,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      SqlLogin to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      SqlLogin to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance..

                      @@ -604,7 +604,7 @@
                      -Database
                      -Compatibility
                      -

                      The target compatibility level version. Same format as returned by Get-DbaDbCompatibility +

                      The target compatibility level version. Same format as returned by Get-DbaDbCompatibility
                      Availability values: https://learn.microsoft.com/en-us/dotnet/api/microsoft.sqlserver.management.smo.compatibilitylevel

                      @@ -661,8 +661,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      @@ -719,9 +719,9 @@
                      -WhatIf
                      -Confirm
                      -

                      Prompts for confirmation of every step. For example: -Are you sure you want to perform this action? -Performing the operation "Update database" on target "pubs on SQL2016\VNEXT". +

                      Prompts for confirmation of every step. For example:
                      +Are you sure you want to perform this action?
                      +Performing the operation "Update database" on target "pubs on SQL2016\VNEXT".
                      [Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"):

                      diff --git a/Set-DbaDbCompression.html b/Set-DbaDbCompression.html index 5aa70c82..e7b25e09 100644 --- a/Set-DbaDbCompression.html +++ b/Set-DbaDbCompression.html @@ -488,9 +488,9 @@

                      Synopsis

                      Sets tables and indexes with preferred compression setting.

                      Description

                      This function sets the appropriate compression recommendation, determined either by using the Tiger Team's query or set to the CompressionType parameter.

                      -

                      Remember Uptime is critical for the Tiger Team query, the longer uptime, the more accurate the analysis is. +

                      Remember Uptime is critical for the Tiger Team query, the longer uptime, the more accurate the analysis is.
                      You would probably be best if you utilized Get-DbaUptime first, before running this command.

                      -

                      Set-DbaDbCompression script derived from GitHub and the tigertoolbox +

                      Set-DbaDbCompression script derived from GitHub and the tigertoolbox
                      (https://github.com/Microsoft/tigertoolbox/tree/master/Evaluate-Compression-Gains)

                      Syntax

                      Set-DbaDbCompression
                      @@ -546,7 +546,7 @@ 
                      Example: 6
                      of command is exported to a csv.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

                      +

                      The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

                      @@ -575,8 +575,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -689,7 +689,7 @@
                      -Table
                      -CompressionType
                      -

                      Control the compression type applied. Default is 'Recommended' which uses the Tiger Team query to use the most appropriate setting per object. Other option is to compress all objects to either Row or +

                      Control the compression type applied. Default is 'Recommended' which uses the Tiger Team query to use the most appropriate setting per object. Other option is to compress all objects to either Row or
                      Page.

                      @@ -778,7 +778,7 @@
                      -PercentCompression
                      -ForceOfflineRebuilds
                      -

                      By default, this function prefers online rebuilds over offline ones. +

                      By default, this function prefers online rebuilds over offline ones.
                      If you are on a supported version of SQL Server but still prefer to do offline rebuilds, enable this flag

                      @@ -835,8 +835,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaDbFileGroup.html b/Set-DbaDbFileGroup.html index 7c512776..9784e771 100644 --- a/Set-DbaDbFileGroup.html +++ b/Set-DbaDbFileGroup.html @@ -533,7 +533,7 @@
                      Example: 6

                      Passes in the HRFG1 filegroup from the TestDB database on the sqldev1 instance and sets it to auto grow all files.

                      Optional Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function +

                      The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
                      to be executed against multiple SQL Server instances.

                      @@ -562,8 +562,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -760,8 +760,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaDbFileGrowth.html b/Set-DbaDbFileGrowth.html index eafb8af4..40eccf12 100644 --- a/Set-DbaDbFileGrowth.html +++ b/Set-DbaDbFileGrowth.html @@ -558,8 +558,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -736,8 +736,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaDbIdentity.html b/Set-DbaDbIdentity.html index d1a642c0..920d98b0 100644 --- a/Set-DbaDbIdentity.html +++ b/Set-DbaDbIdentity.html @@ -487,9 +487,9 @@

                      Set-DbaDbIdentity

                      Synopsis

                      Checks and updates the current identity value via DBCC CHECKIDENT

                      Description

                      -

                      Use the command DBCC CHECKIDENT to check and if necessary update the current identity value of a table and return results +

                      Use the command DBCC CHECKIDENT to check and if necessary update the current identity value of a table and return results
                      Can update an individual table via the ReSeedValue and RESEED option of DBCC CHECKIDENT

                      -

                      Read more: +

                      Read more:
                      - https://docs.microsoft.com/en-us/sql/t-sql/database-console-commands/dbcc-checkident-transact-sql

                      Syntax

                      Set-DbaDbIdentity
                      @@ -526,7 +526,7 @@ 
                      Example: 3

                      Checks the current identity value for all tables with an Identity in the AdventureWorks2014 database on the SQLServer2017 and, if it is needed, changes the identity value.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -555,8 +555,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -585,7 +585,7 @@
                      -SqlCredential
                      -Database
                      -

                      The database(s) to process - this list is auto-populated from the server. If unspecified, all databases will be processed. +

                      The database(s) to process - this list is auto-populated from the server. If unspecified, all databases will be processed.
                      Only one database should be specified when using a RESEED value

                      @@ -614,7 +614,7 @@
                      -Database
                      -Table
                      -

                      The table(s) for which to check the current identity value. +

                      The table(s) for which to check the current identity value.
                      Only one table should be specified when using a RESEED value

                      @@ -671,8 +671,8 @@
                      -ReSeedValue
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaDbMirror.html b/Set-DbaDbMirror.html index c7954393..68872f85 100644 --- a/Set-DbaDbMirror.html +++ b/Set-DbaDbMirror.html @@ -525,7 +525,7 @@
                      Example: 4

                      Does not prompt for confirmation and sets the state to suspend for the database "dbtools"

                      Optional Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function +

                      The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
                      to be executed against multiple SQL Server instances.

                      @@ -554,8 +554,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -760,8 +760,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaDbOwner.html b/Set-DbaDbOwner.html index ae75d9db..e4ab32e3 100644 --- a/Set-DbaDbOwner.html +++ b/Set-DbaDbOwner.html @@ -553,8 +553,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -695,8 +695,8 @@
                      -TargetLogin
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaDbQueryStoreOption.html b/Set-DbaDbQueryStoreOption.html index a3e66886..6e70924c 100644 --- a/Set-DbaDbQueryStoreOption.html +++ b/Set-DbaDbQueryStoreOption.html @@ -538,7 +538,7 @@
                      Example: 4
                      Configure the Query Store settings for all user databases except the AdventureWorks database in the ServerA\SQL Instance.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -567,8 +567,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      SqlLogin to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      SqlLogin to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance..

                      @@ -1061,8 +1061,8 @@
                      -CustomCapturePolicyStaleThresho
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      @@ -1119,9 +1119,9 @@
                      -WhatIf
                      -Confirm
                      -

                      Prompts for confirmation of every step. For example: -Are you sure you want to perform this action? -Performing the operation "Changing Desired State" on target "pubs on SQL2016\VNEXT". +

                      Prompts for confirmation of every step. For example:
                      +Are you sure you want to perform this action?
                      +Performing the operation "Changing Desired State" on target "pubs on SQL2016\VNEXT".
                      [Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"):

                      diff --git a/Set-DbaDbRecoveryModel.html b/Set-DbaDbRecoveryModel.html index 76b32ea8..6a8c5964 100644 --- a/Set-DbaDbRecoveryModel.html +++ b/Set-DbaDbRecoveryModel.html @@ -490,7 +490,8 @@

                      Description

                      Set-DbaDbRecoveryModel sets the Recovery Model for all databases except TEMPDB.

                      Syntax

                      Set-DbaDbRecoveryModel
                      -    [-SqlCredential <PSCredential>] -RecoveryModel <String>
                      +    [-SqlCredential <PSCredential>]
                      +    -RecoveryModel <String>
                           [-Database <Object[]>]
                           [-ExcludeDatabase <Object[]>]
                           [-AllDatabases]
                      @@ -500,7 +501,8 @@ 

                      Syntax

                      [<CommonParameters>] Set-DbaDbRecoveryModel -SqlInstance <DbaInstanceParameter[]> - [-SqlCredential <PSCredential>] -RecoveryModel <String> + [-SqlCredential <PSCredential>] + -RecoveryModel <String> [-Database <Object[]>] [-ExcludeDatabase <Object[]>] [-AllDatabases] @@ -510,11 +512,13 @@

                      Syntax

                      [<CommonParameters>] Set-DbaDbRecoveryModel - [-SqlCredential <PSCredential>] -RecoveryModel <String> + [-SqlCredential <PSCredential>] + -RecoveryModel <String> [-Database <Object[]>] [-ExcludeDatabase <Object[]>] [-AllDatabases] - [-EnableException] -InputObject <Database[]> + [-EnableException] + -InputObject <Database[]> [-WhatIf] [-Confirm] [<CommonParameters>] @@ -545,7 +549,7 @@
                      Example: 5

                      Sets the Recovery Model to BulkLogged for [TestDB1] and [TestDB2] databases on SQL Server instance sql2014. Runs without asking for confirmation.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -573,9 +577,9 @@
                      -SqlInstance
                      -RecoveryModel
                      -

                      Recovery Model to be set. Valid options are 'Simple', 'Full', 'BulkLogged' -Details about the recovery models can be found here: -https://docs.microsoft.com/en-us/sql/relational-databases/backup-restore/recovery-models-sql-server

                      +

                      Recovery Model to be set. Valid options are 'Simple', 'Full', 'BulkLogged'
                      +Details about the recovery models can be found here:
                      +https://docs.microsoft.com/en-us/sql/relational-databases/backup-restore/recovery-models-sql-server

                      @@ -607,7 +611,7 @@
                      -RecoveryModel
                      -InputObject
                      -

                      A collection of databases (such as returned by Get-DbaDatabase)

                      +

                      A collection of databases (such as returned by Get-DbaDatabase)

                      @@ -636,8 +640,8 @@
                      -InputObject

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -750,8 +754,8 @@
                      -AllDatabases
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      @@ -808,9 +812,9 @@
                      -WhatIf
                      -Confirm
                      -

                      Prompts for confirmation. For example: -Are you sure you want to perform this action? -Performing the operation "ALTER DATABASE [model] SET RECOVERY Full" on target "[model] on WERES14224". +

                      Prompts for confirmation. For example:
                      +Are you sure you want to perform this action?
                      +Performing the operation "ALTER DATABASE [model] SET RECOVERY Full" on target "[model] on WERES14224".
                      [Y] Yes [A] Yes to All [N] No [L] No to All [S] Suspend [?] Help (default is "Y"):

                      diff --git a/Set-DbaDbSchema.html b/Set-DbaDbSchema.html index c75ad0db..eb5220e4 100644 --- a/Set-DbaDbSchema.html +++ b/Set-DbaDbSchema.html @@ -515,7 +515,7 @@
                      Example: 2

                      Passes in the example1 db via pipeline and updates the TestSchema1 and TestSchema2 schemas and assigns the dbatools user as the owner of the schemas.

                      Required Parameters

                      -Schema
                      -

                      The name(s) of the schema(s)

                      +

                      The name(s) of the schema(s)

                      @@ -543,7 +543,7 @@
                      -Schema
                      -SchemaOwner
                      -

                      The name of the database user that will own the schema(s).

                      +

                      The name of the database user that will own the schema(s).

                      @@ -572,7 +572,7 @@
                      -SchemaOwner

                      Optional Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function +

                      The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
                      to be executed against multiple SQL Server instances.

                      @@ -601,8 +601,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -687,8 +687,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaDbSequence.html b/Set-DbaDbSequence.html index 35487f5e..0c66bf8f 100644 --- a/Set-DbaDbSequence.html +++ b/Set-DbaDbSequence.html @@ -521,7 +521,7 @@
                      Example: 2

                      Using a pipeline this command modifies the sequence named TestSchema.TestSequence in the TestDB database on the sqldev01 instance. The sequence will now cycle the sequence values.

                      Required Parameters

                      -Sequence
                      -

                      The name of the new sequence

                      +

                      The name of the new sequence

                      @@ -550,7 +550,7 @@
                      -Sequence

                      Optional Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function +

                      The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function
                      to be executed against multiple SQL Server instances.

                      @@ -579,8 +579,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -861,8 +861,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaDbState.html b/Set-DbaDbState.html index 990e4f02..6ab42d41 100644 --- a/Set-DbaDbState.html +++ b/Set-DbaDbState.html @@ -551,7 +551,8 @@

                      Syntax

                      [-RestrictedUser] [-MultiUser] [-Force] - [-EnableException] -InputObject <PSObject[]> + [-EnableException] + -InputObject <PSObject[]> [-WhatIf] [-Confirm] [<CommonParameters>] @@ -586,7 +587,7 @@
                      Example: 6

                      Gets the databases from Get-DbaDatabase, and sets them as SINGLE_USER, dropping all other connections (and rolling back open transactions)

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances

                      +

                      The target SQL Server instance or instances

                      @@ -614,7 +615,7 @@
                      -SqlInstance
                      -InputObject
                      -

                      Accepts piped database objects

                      +

                      Accepts piped database objects

                      @@ -643,8 +644,8 @@
                      -InputObject

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -1009,8 +1010,8 @@
                      -MultiUser
                      -Force
                      -

                      For most options, this translates to instantly rolling back any open transactions -that may be stopping the process. +

                      For most options, this translates to instantly rolling back any open transactions
                      +that may be stopping the process.
                      For -Detached it is required to break mirroring and Availability Groups

                      @@ -1039,8 +1040,8 @@
                      -Force
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaDefaultPath.html b/Set-DbaDefaultPath.html index 97980ed5..beea3d24 100644 --- a/Set-DbaDefaultPath.html +++ b/Set-DbaDefaultPath.html @@ -514,7 +514,7 @@
                      Example: 2

                      Shows what what happen if the command would have run

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -542,7 +542,7 @@
                      -SqlInstance
                      -Path
                      -

                      The path on the destination SQL Server

                      +

                      The path on the destination SQL Server

                      @@ -571,8 +571,8 @@
                      -Path

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -633,8 +633,8 @@
                      -Type
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaEndpoint.html b/Set-DbaEndpoint.html index 6d1a00c5..9f3d2ef9 100644 --- a/Set-DbaEndpoint.html +++ b/Set-DbaEndpoint.html @@ -544,8 +544,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -718,8 +718,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaErrorLogConfig.html b/Set-DbaErrorLogConfig.html index 7562000b..8e97562a 100644 --- a/Set-DbaErrorLogConfig.html +++ b/Set-DbaErrorLogConfig.html @@ -488,7 +488,7 @@

                      Synopsis

                      Set the configuration for the ErrorLog on a given SQL Server instance

                      Description

                      Sets the number of log files configured on all versions, and size in KB in SQL Server 2012+ and above.

                      -

                      To set the Path to the ErrorLog, use Set-DbaStartupParameter -ErrorLog. Note that this command requires +

                      To set the Path to the ErrorLog, use Set-DbaStartupParameter -ErrorLog. Note that this command requires
                      remote, administrative access to the Windows/WMI server, similar to SQL Configuration Manager.

                      Syntax

                      Set-DbaErrorLogConfig
                      @@ -519,7 +519,7 @@ 
                      Example: 3

                      Sets the number of error log files to 25 and size before it will roll over to 500 KB on sql2012

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances

                      +

                      The target SQL Server instance or instances

                      @@ -548,8 +548,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -634,8 +634,8 @@
                      -LogSize
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaExtendedProperty.html b/Set-DbaExtendedProperty.html index ed76796f..72cd3bb1 100644 --- a/Set-DbaExtendedProperty.html +++ b/Set-DbaExtendedProperty.html @@ -489,33 +489,33 @@

                      Synopsis

                      Description

                      Set extended property values

                      You can set extended properties on all these different types of objects:

                      -

                      Aggregate -Assembly -Column -Constraint -Contract -Database -Event Notification -Filegroup -Function -Index -Logical File Name -Message Type -Parameter -Partition Function -Partition Scheme -Procedure -Queue -Remote Service Binding -Route -Rule -Schema -Service -Synonym -Table -Trigger -Type -View +

                      Aggregate
                      +Assembly
                      +Column
                      +Constraint
                      +Contract
                      +Database
                      +Event Notification
                      +Filegroup
                      +Function
                      +Index
                      +Logical File Name
                      +Message Type
                      +Parameter
                      +Partition Function
                      +Partition Scheme
                      +Procedure
                      +Queue
                      +Remote Service Binding
                      +Route
                      +Rule
                      +Schema
                      +Service
                      +Synonym
                      +Table
                      +Trigger
                      +Type
                      +View
                      Xml Schema Collection

                      Syntax

                      Set-DbaExtendedProperty
                      @@ -540,7 +540,7 @@ 
                      Example: 2

                      Sets the value of appversion to 1.1.0 on the mytable table of the mydb database

                      Required Parameters

                      -InputObject
                      -

                      Enables piping from Get-DbaExtendedProperty

                      +

                      Enables piping from Get-DbaExtendedProperty

                      @@ -568,7 +568,7 @@
                      -InputObject
                      -Value
                      -

                      The new value for the extended property

                      +

                      The new value for the extended property

                      @@ -597,8 +597,8 @@
                      -Value

                      Optional Parameters

                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaExtendedProtection.html b/Set-DbaExtendedProtection.html index dafab19a..9ac63c8f 100644 --- a/Set-DbaExtendedProtection.html +++ b/Set-DbaExtendedProtection.html @@ -613,8 +613,8 @@
                      -Value
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaLogin.html b/Set-DbaLogin.html index fa3f887e..de11f424 100644 --- a/Set-DbaLogin.html +++ b/Set-DbaLogin.html @@ -485,7 +485,7 @@

                      Set-DbaLogin


                      Want to see the Bill Of Health for this command? Check out Set-DbaLogin.

                      Synopsis

                      -

                      Set-DbaLogin makes it possible to make changes to one or more logins. +

                      Set-DbaLogin makes it possible to make changes to one or more logins.
                      SQL Azure DB is not supported.

                      Description

                      Set-DbaLogin will enable you to change the password, unlock, rename, disable or enable, deny or grant login privileges to the login. It's also possible to add or remove server roles from the login.

                      @@ -608,8 +608,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -722,7 +722,7 @@
                      -DefaultDatabase
                      -Unlock
                      -

                      Switch to unlock an account. This can be used in conjunction with the -SecurePassword or -Force parameters. +

                      Switch to unlock an account. This can be used in conjunction with the -SecurePassword or -Force parameters.
                      The default is false.

                      @@ -751,9 +751,9 @@
                      -Unlock
                      -PasswordMustChange
                      -

                      Does the user need to change his/her password. This will only be used in conjunction with the -SecurePassword parameter. -It is required that the login have both PasswordPolicyEnforced (check_policy) and PasswordExpirationEnabled (check_expiration) enabled for the login. See the Microsoft documentation for ALTER LOGIN -for more details. +

                      Does the user need to change his/her password. This will only be used in conjunction with the -SecurePassword parameter.
                      +It is required that the login have both PasswordPolicyEnforced (check_policy) and PasswordExpirationEnabled (check_expiration) enabled for the login. See the Microsoft documentation for ALTER LOGIN
                      +for more details.
                      The default is false.

                      @@ -978,7 +978,7 @@
                      -PasswordExpirationEnabled
                      -AddRole
                      -

                      Add one or more server roles to the login +

                      Add one or more server roles to the login
                      The following roles can be used "bulkadmin", "dbcreator", "diskadmin", "processadmin", "public", "securityadmin", "serveradmin", "setupadmin", "sysadmin".

                      @@ -1011,7 +1011,7 @@
                      -AddRole
                      -RemoveRole
                      -

                      Remove one or more server roles to the login +

                      Remove one or more server roles to the login
                      The following roles can be used "bulkadmin", "dbcreator", "diskadmin", "processadmin", "public", "securityadmin", "serveradmin", "setupadmin", "sysadmin".

                      @@ -1072,7 +1072,7 @@
                      -InputObject
                      -Force
                      -

                      This switch is used with -Unlock to unlock a login without providing a password. This command will temporarily disable and enable the policy settings as described at +

                      This switch is used with -Unlock to unlock a login without providing a password. This command will temporarily disable and enable the policy settings as described at
                      https://www.mssqltips.com/sqlservertip/2758/how-to-unlock-a-sql-login-without-resetting-the-password/.

                      @@ -1101,8 +1101,8 @@
                      -Force
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaMaxDop.html b/Set-DbaMaxDop.html index 8b440dfd..0b8c4adc 100644 --- a/Set-DbaMaxDop.html +++ b/Set-DbaMaxDop.html @@ -558,8 +558,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -728,8 +728,8 @@
                      -AllDatabases
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaMaxMemory.html b/Set-DbaMaxMemory.html index 5ef4a5db..79cc1be8 100644 --- a/Set-DbaMaxMemory.html +++ b/Set-DbaMaxMemory.html @@ -488,9 +488,9 @@

                      Synopsis

                      Sets SQL Server 'Max Server Memory' configuration setting to a new value then displays information this setting.

                      Description

                      Sets SQL Server max memory then displays information relating to SQL Server Max Memory configuration settings.

                      -

                      Inspired by Jonathan Kehayias's post about SQL Server Max memory (http://bit.ly/sqlmemcalc), this uses a formula to +

                      Inspired by Jonathan Kehayias's post about SQL Server Max memory (http://bit.ly/sqlmemcalc), this uses a formula to
                      determine the default optimum RAM to use, then sets the SQL max value to that number.

                      -

                      Jonathan notes that the formula used provides a general recommendation that doesn't account for everything that may +

                      Jonathan notes that the formula used provides a general recommendation that doesn't account for everything that may
                      be going on in your specific environment.

                      Syntax

                      Set-DbaMaxMemory
                      @@ -550,8 +550,8 @@ 
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -636,8 +636,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaNetworkCertificate.html b/Set-DbaNetworkCertificate.html index d75f9939..c3da9d44 100644 --- a/Set-DbaNetworkCertificate.html +++ b/Set-DbaNetworkCertificate.html @@ -489,9 +489,9 @@

                      Synopsis

                      Description

                      Sets the network certificate for SQL Server instance. This setting is found in Configuration Manager.

                      This command also grants read permissions for the service account on the certificate's private key.

                      -

                      References: -https://www.itprotoday.com/sql-server/7-steps-ssl-encryption -https://azurebi.jppp.org/2016/01/23/using-lets-encrypt-certificates-for-secure-sql-server-connections/ +

                      References:
                      +https://www.itprotoday.com/sql-server/7-steps-ssl-encryption
                      +https://azurebi.jppp.org/2016/01/23/using-lets-encrypt-certificates-for-secure-sql-server-connections/
                      https://blogs.msdn.microsoft.com/sqlserverfaq/2016/09/26/creating-and-registering-ssl-certificates/

                      Syntax

                      Set-DbaNetworkCertificate
                      @@ -505,7 +505,8 @@ 

                      Syntax

                      Set-DbaNetworkCertificate [-SqlInstance <DbaInstanceParameter[]>] - [-Credential <PSCredential>] -Certificate <X509Certificate2> + [-Credential <PSCredential>] + -Certificate <X509Certificate2> [-RestartService] [-EnableException] [-WhatIf] @@ -514,7 +515,8 @@

                      Syntax

                      Set-DbaNetworkCertificate [-SqlInstance <DbaInstanceParameter[]>] - [-Credential <PSCredential>] -Thumbprint <String> + [-Credential <PSCredential>] + -Thumbprint <String> [-RestartService] [-EnableException] [-WhatIf] @@ -535,7 +537,7 @@
                      Example: 2

                      Sets the network certificate for the SQL2008R2SP2 instance to the certificate with the thumbprint of 1223FB1ACBCA44D3EE9640F81B6BA14A92F3D6E2 in LocalMachine\My on sql1

                      Required Parameters

                      -Certificate
                      -

                      The target certificate object

                      +

                      The target certificate object

                      @@ -563,7 +565,7 @@
                      -Certificate
                      -Thumbprint
                      -

                      The thumbprint of the target certificate

                      +

                      The thumbprint of the target certificate

                      @@ -648,7 +650,7 @@
                      -Credential
                      -RestartService
                      -

                      Every change to the network certificate needs a service restart to take effect. +

                      Every change to the network certificate needs a service restart to take effect.
                      This switch will force a restart of the service.

                      @@ -677,8 +679,8 @@
                      -RestartService
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaNetworkConfiguration.html b/Set-DbaNetworkConfiguration.html index 13fe97f4..62cef14d 100644 --- a/Set-DbaNetworkConfiguration.html +++ b/Set-DbaNetworkConfiguration.html @@ -488,13 +488,13 @@

                      Synopsis

                      Sets the network configuration of a SQL Server instance.

                      Description

                      Sets the network configuration of a SQL Server instance.

                      -

                      Parameters are available for typical tasks like enabling or disabling a protocol or switching between dynamic and static ports. -The object returned by Get-DbaNetworkConfiguration can be used to adjust settings of the properties +

                      Parameters are available for typical tasks like enabling or disabling a protocol or switching between dynamic and static ports.
                      +The object returned by Get-DbaNetworkConfiguration can be used to adjust settings of the properties
                      and then passed to this command via pipeline or -InputObject parameter.

                      -

                      A change to the network configuration with SQL Server requires a restart to take effect, +

                      A change to the network configuration with SQL Server requires a restart to take effect,
                      support for this can be done via the RestartService parameter.

                      Remote SQL WMI is used by default, with PS Remoting used as a fallback.

                      -

                      For a detailed explanation of the different properties see the documentation at: +

                      For a detailed explanation of the different properties see the documentation at:
                      https://docs.microsoft.com/en-us/sql/tools/configuration-manager/sql-server-network-configuration

                      Syntax

                      Set-DbaNetworkConfiguration
                      @@ -513,7 +513,8 @@ 

                      Syntax

                      Set-DbaNetworkConfiguration [-Credential <PSCredential>] - [-RestartService] -InputObject <Object[]> + [-RestartService] + -InputObject <Object[]> [-EnableException] [-WhatIf] [-Confirm] @@ -547,7 +548,7 @@
                      Example: 4
                      Restarts the service if needed.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -575,8 +576,8 @@
                      -SqlInstance
                      -InputObject
                      -

                      The output object from Get-DbaNetworkConfiguration. -Get-DbaNetworkConfiguration has to be run with -OutputType Full (default) to get the complete object.

                      +

                      The output object from Get-DbaNetworkConfiguration.
                      +Get-DbaNetworkConfiguration has to be run with -OutputType Full (default) to get the complete object.

                      @@ -697,9 +698,9 @@
                      -DisableProtocol
                      -DynamicPortForIPAll
                      -

                      Configures the instance to listen on a dynamic port for all IP addresses. -Will enable the TCP/IP protocol if needed. -Will set TcpIpProperties.ListenAll to $true if needed. +

                      Configures the instance to listen on a dynamic port for all IP addresses.
                      +Will enable the TCP/IP protocol if needed.
                      +Will set TcpIpProperties.ListenAll to $true if needed.
                      Will reset the last used dynamic port if already set.

                      @@ -728,8 +729,8 @@
                      -DynamicPortForIPAll
                      -StaticPortForIPAll
                      -

                      Configures the instance to listen on one or more static ports for all IP addresses. -Will enable the TCP/IP protocol if needed. +

                      Configures the instance to listen on one or more static ports for all IP addresses.
                      +Will enable the TCP/IP protocol if needed.
                      Will set TcpIpProperties.ListenAll to $true if needed.

                      @@ -758,8 +759,8 @@
                      -StaticPortForIPAll
                      -IpAddress
                      -

                      Configures the instance to listen on specific IP addresses only. Listening on all other IP addresses will be disabled. -Takes an array of string with either the IP address (for listening on a dynamic port) or IP address and port seperated by ":". +

                      Configures the instance to listen on specific IP addresses only. Listening on all other IP addresses will be disabled.
                      +Takes an array of string with either the IP address (for listening on a dynamic port) or IP address and port seperated by ":".
                      IPv6 addresses must be enclosed in square brackets, e.g. [2001:db8:4006:812200e] or [2001:db8:4006:812200e]:1433 to be able to identify the port.

                      @@ -788,7 +789,7 @@
                      -IpAddress
                      -RestartService
                      -

                      Every change to the network configuration needs a service restart to take effect. +

                      Every change to the network configuration needs a service restart to take effect.
                      This switch will force a restart of the service if the network configuration has changed.

                      @@ -817,8 +818,8 @@
                      -RestartService
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaPowerPlan.html b/Set-DbaPowerPlan.html index c7283c05..f696c9d5 100644 --- a/Set-DbaPowerPlan.html +++ b/Set-DbaPowerPlan.html @@ -489,8 +489,8 @@

                      Synopsis

                      Description

                      Sets the SQL Server OS's Power Plan. Defaults to High Performance which is best practice.

                      If your organization uses a different power plan that is considered best practice, specify -PowerPlan.

                      -

                      References: -https://support.microsoft.com/en-us/kb/2207548 +

                      References:
                      +https://support.microsoft.com/en-us/kb/2207548
                      http://www.sqlskills.com/blogs/glenn/windows-power-plan-effects-on-newer-intel-processors/

                      Syntax

                      Set-DbaPowerPlan
                      @@ -529,7 +529,7 @@ 
                      Example: 5

                      Uses the Power Plan of oldserver as best practice and sets the Power Plan of newserver1 and newserver2 accordingly.

                      Required Parameters

                      -ComputerName
                      -

                      The server(s) to set the Power Plan on.

                      +

                      The server(s) to set the Power Plan on.

                      @@ -586,7 +586,7 @@
                      -Credential
                      -PowerPlan
                      -

                      If your organization uses a different Power Plan that's considered best practice, specify it here. +

                      If your organization uses a different Power Plan that's considered best practice, specify it here.
                      Use Get-DbaPowerPlan -List to get all available Power Plans on a computer.

                      @@ -615,8 +615,8 @@
                      -PowerPlan
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaPrivilege.html b/Set-DbaPrivilege.html index 2fb22588..be598760 100644 --- a/Set-DbaPrivilege.html +++ b/Set-DbaPrivilege.html @@ -514,9 +514,9 @@
                      Example: 2

                      Adds the SQL Service account(s) on computers sql1, sql2 and sql3 to the local privilege 'SeManageVolumePrivilege'.

                      Required Parameters

                      -Type
                      -

                      Use this to choose the privilege(s) to which you want to add the SQL Service account. -Accepts 'IFI', 'LPIM', 'BatchLogon','SecAudit' and/or 'ServiceLogon' for local privileges 'Instant File Initialization', 'Lock Pages in Memory', 'Logon as Batch','Generate Security Audits' and 'Logon -as a service'.

                      +

                      Use this to choose the privilege(s) to which you want to add the SQL Service account.
                      +Accepts 'IFI', 'LPIM', 'BatchLogon','SecAudit' and/or 'ServiceLogon' for local privileges 'Instant File Initialization', 'Lock Pages in Memory', 'Logon as Batch','Generate Security Audits' and 'Logon
                      +as a service'.

                      @@ -605,8 +605,8 @@
                      -Credential
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaResourceGovernor.html b/Set-DbaResourceGovernor.html index 7d617cd1..16cfb2a2 100644 --- a/Set-DbaResourceGovernor.html +++ b/Set-DbaResourceGovernor.html @@ -485,11 +485,11 @@

                      Set-DbaResourceGovernor


                      Want to see the Bill Of Health for this command? Check out Set-DbaResourceGovernor.

                      Synopsis

                      -

                      Sets the Resource Governor feature on the specified SQL Server to be enabled or disabled, +

                      Sets the Resource Governor feature on the specified SQL Server to be enabled or disabled,
                      along with specifying an optional classifier function.

                      Description

                      -

                      In order to utilize Resource Governor, it has to be enabled for an instance and -have a classifier function specified. This function toggles the enabled status +

                      In order to utilize Resource Governor, it has to be enabled for an instance and
                      +have a classifier function specified. This function toggles the enabled status
                      and sets the classifier function.

                      Syntax

                      Set-DbaResourceGovernor
                      @@ -525,7 +525,7 @@ 
                      Example: 4

                      Sets Resource Governor to enabled for the instance dev1 on sq2012 and sets the classifier function to be NULL.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -666,8 +666,8 @@
                      -ClassifierFunction
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaRgResourcePool.html b/Set-DbaRgResourcePool.html index c450a3f3..6dce0d83 100644 --- a/Set-DbaRgResourcePool.html +++ b/Set-DbaRgResourcePool.html @@ -487,7 +487,7 @@

                      Set-DbaRgResourcePool

                      Synopsis

                      Sets a resource pool for use by the Resource Governor on the specified SQL Server.

                      Description

                      -

                      Sets a resource pool for use by the Resource Governor on the specified SQL Server. +

                      Sets a resource pool for use by the Resource Governor on the specified SQL Server.
                      A resource pool represents a subset of the physical resources (memory, CPUs and IO) of an instance of the Database Engine.

                      Syntax

                      Set-DbaRgResourcePool
                      @@ -741,7 +741,7 @@ 
                      -MaximumCpuPercentage
                      -CapCpuPercentage
                      -

                      Specifies a hard cap on the CPU bandwidth that all requests in the resource pool will receive. +

                      Specifies a hard cap on the CPU bandwidth that all requests in the resource pool will receive.
                      Limits the maximum CPU bandwidth level to be the same as the specified value. Only for SQL Server 2012+

                      @@ -882,7 +882,7 @@
                      -MaximumIOPSPerVolume
                      -MaximumProcesses
                      -

                      Specifies the maximum number of processes allowed for the external resource pool. +

                      Specifies the maximum number of processes allowed for the external resource pool.
                      Specify 0 to set an unlimited threshold for the pool, which is thereafter bound only by computer resources.

                      @@ -911,7 +911,7 @@
                      -MaximumProcesses
                      -SkipReconfigure
                      -

                      Resource Governor requires a reconfiguriation for resource pool changes to take effect. +

                      Resource Governor requires a reconfiguriation for resource pool changes to take effect.
                      Use this switch to skip issuing a reconfigure for the Resource Governor.

                      @@ -968,8 +968,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaRgWorkloadGroup.html b/Set-DbaRgWorkloadGroup.html index f7e9d418..3f40c871 100644 --- a/Set-DbaRgWorkloadGroup.html +++ b/Set-DbaRgWorkloadGroup.html @@ -487,8 +487,8 @@

                      Set-DbaRgWorkloadGroup

                      Synopsis

                      Sets a workload group for use by the Resource Governor on the specified SQL Server.

                      Description

                      -

                      Sets a workload group for use by the Resource Governor on the specified SQL Server. -A workload group represents a subset of resources of an instance of the Database Engine. +

                      Sets a workload group for use by the Resource Governor on the specified SQL Server.
                      +A workload group represents a subset of resources of an instance of the Database Engine.
                      When changing a plan affecting setting, the new setting will only take effect in previously cached plans after executing 'DBCC FREEPROCCACHE (pool_name);'.

                      Syntax

                      Set-DbaRgWorkloadGroup
                      @@ -840,7 +840,7 @@ 
                      -GroupMaximumRequests
                      -SkipReconfigure
                      -

                      Resource Governor requires a reconfiguriation for workload group changes to take effect. +

                      Resource Governor requires a reconfiguriation for workload group changes to take effect.
                      Use this switch to skip issuing a reconfigure for the Resource Governor.

                      @@ -897,8 +897,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaSpConfigure.html b/Set-DbaSpConfigure.html index 7b9e595f..3581c3ec 100644 --- a/Set-DbaSpConfigure.html +++ b/Set-DbaSpConfigure.html @@ -487,8 +487,8 @@

                      Set-DbaSpConfigure

                      Synopsis

                      Changes the server level system configuration (sys.configuration/sp_configure) value for a given configuration

                      Description

                      -

                      This function changes the configured value for sp_configure settings. If the setting is dynamic this setting will be used, otherwise the user will be warned that a restart of SQL is required. -This is designed to be safe and will not allow for configurations to be set outside of the defined configuration min and max values. +

                      This function changes the configured value for sp_configure settings. If the setting is dynamic this setting will be used, otherwise the user will be warned that a restart of SQL is required.
                      +This is designed to be safe and will not allow for configurations to be set outside of the defined configuration min and max values.
                      While it is possible to set below the min, or above the max this can cause serious problems with SQL Server (including startup failures), and so is not permitted.

                      Syntax

                      Set-DbaSpConfigure
                      @@ -524,7 +524,7 @@ 
                      Example: 4

                      Returns information on the action that would be performed. No actual change will be made.

                      Optional Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances. This can be a +

                      The target SQL Server instance or instances. This can be a
                      collection and receive pipeline input

                      @@ -553,8 +553,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -667,8 +667,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaSpn.html b/Set-DbaSpn.html index b2e1c836..f252cb0e 100644 --- a/Set-DbaSpn.html +++ b/Set-DbaSpn.html @@ -528,7 +528,7 @@
                      Example: 5

                      Displays what would happen trying to set all missing SPNs for sql2016

                      Required Parameters

                      -SPN
                      -

                      The SPN you want to add

                      +

                      The SPN you want to add

                      @@ -556,7 +556,7 @@
                      -SPN
                      -ServiceAccount
                      -

                      The account you want the SPN added to

                      +

                      The account you want the SPN added to

                      @@ -641,8 +641,8 @@
                      -NoDelegation
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaStartupParameter.html b/Set-DbaStartupParameter.html index 4c0840ef..dbfee8d4 100644 --- a/Set-DbaStartupParameter.html +++ b/Set-DbaStartupParameter.html @@ -566,8 +566,8 @@
                      Example: 9
                      After the work has been completed, we can push the original startup parameters back to server1\instance1 and resume normal operation

                      Required Parameters

                      -SqlInstance
                      -

                      The SQL Server instance to be modified -If the Sql Instance is offline path parameters will be ignored as we cannot test the instance's access to the path. If you want to force this to work then please use the Force switch

                      +

                      The SQL Server instance to be modified
                      +If the Sql Instance is offline path parameters will be ignored as we cannot test the instance's access to the path. If you want to force this to work then please use the Force switch

                      @@ -596,8 +596,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -654,8 +654,8 @@
                      -Credential
                      -MasterData
                      -

                      Path to the data file for the Master database -Will be ignored if SqlInstance is offline or the Offline switch is set. To override this behaviour use the Force switch. This is to ensure you understand the risk as we cannot validate the path if +

                      Path to the data file for the Master database
                      +Will be ignored if SqlInstance is offline or the Offline switch is set. To override this behaviour use the Force switch. This is to ensure you understand the risk as we cannot validate the path if
                      the instance is offline

                      @@ -684,8 +684,8 @@
                      -MasterData
                      -MasterLog
                      -

                      Path to the log file for the Master database -Will be ignored if SqlInstance is offline or the Offline switch is set. To override this behaviour use the Force switch. This is to ensure you understand the risk as we cannot validate the path if +

                      Path to the log file for the Master database
                      +Will be ignored if SqlInstance is offline or the Offline switch is set. To override this behaviour use the Force switch. This is to ensure you understand the risk as we cannot validate the path if
                      the instance is offline

                      @@ -714,8 +714,8 @@
                      -MasterLog
                      -ErrorLog
                      -

                      Path to the SQL Server error log file -Will be ignored if SqlInstance is offline or the Offline switch is set. To override this behaviour use the Force switch. This is to ensure you understand the risk as we cannot validate the path if +

                      Path to the SQL Server error log file
                      +Will be ignored if SqlInstance is offline or the Offline switch is set. To override this behaviour use the Force switch. This is to ensure you understand the risk as we cannot validate the path if
                      the instance is offline

                      @@ -744,7 +744,7 @@
                      -ErrorLog
                      -TraceFlag
                      -

                      A comma separated list of TraceFlags to be applied at SQL Server startup +

                      A comma separated list of TraceFlags to be applied at SQL Server startup
                      By default these will be appended to any existing trace flags set

                      @@ -773,7 +773,7 @@
                      -TraceFlag
                      -CommandPromptStart
                      -

                      Shortens startup time when starting SQL Server from the command prompt. Typically, the SQL Server Database Engine starts as a service by calling the Service Control Manager. +

                      Shortens startup time when starting SQL Server from the command prompt. Typically, the SQL Server Database Engine starts as a service by calling the Service Control Manager.
                      Because the SQL Server Database Engine does not start as a service when starting from the command prompt

                      @@ -802,7 +802,7 @@
                      -CommandPromptStart
                      -MinimalStart
                      -

                      Starts an instance of SQL Server with minimal configuration. This is useful if the setting of a configuration value (for example, over-committing memory) has +

                      Starts an instance of SQL Server with minimal configuration. This is useful if the setting of a configuration value (for example, over-committing memory) has
                      prevented the server from starting. Starting SQL Server in minimal configuration mode places SQL Server in single-user mode

                      @@ -831,8 +831,8 @@
                      -MinimalStart
                      -MemoryToReserve
                      -

                      Specifies an integer number of megabytes (MB) of memory that SQL Server will leave available for memory allocations within the SQL Server process, -but outside the SQL Server memory pool. The memory outside of the memory pool is the area used by SQL Server for loading items such as extended procedure .dll files, +

                      Specifies an integer number of megabytes (MB) of memory that SQL Server will leave available for memory allocations within the SQL Server process,
                      +but outside the SQL Server memory pool. The memory outside of the memory pool is the area used by SQL Server for loading items such as extended procedure .dll files,
                      the OLE DB providers referenced by distributed queries, and automation objects referenced in Transact-SQL statements. The default is 256 MB.

                      @@ -973,12 +973,12 @@
                      -StartAsNamedInstance
                      -DisableMonitoring
                      -

                      Disables the following monitoring features: -SQL Server performance monitor counters -Keeping CPU time and cache-hit ratio statistics -Collecting information for the DBCC SQLPERF command -Collecting information for some dynamic management views -Many extended-events event points +

                      Disables the following monitoring features:
                      +SQL Server performance monitor counters
                      +Keeping CPU time and cache-hit ratio statistics
                      +Collecting information for the DBCC SQLPERF command
                      +Collecting information for some dynamic management views
                      +Many extended-events event points
                      ** Warning ** When you use the -x startup option, the information that is available for you to diagnose performance and functional problems with SQL Server is greatly reduced.

                      @@ -1063,7 +1063,7 @@
                      -TraceFlagOverride
                      -StartupConfig
                      -

                      Pass in a previously saved SQL Instance startup config +

                      Pass in a previously saved SQL Instance startup config
                      using this parameter will set TraceFlagOverride to true, so existing Trace Flags will be overridden

                      @@ -1092,7 +1092,7 @@
                      -StartupConfig
                      -Offline
                      -

                      Setting this switch will try perform the requested actions without connect to the SQL Server Instance, this will speed things up if you know the Instance is offline. +

                      Setting this switch will try perform the requested actions without connect to the SQL Server Instance, this will speed things up if you know the Instance is offline.
                      When working offline, path inputs (MasterData, MasterLog and ErrorLog) will be ignored, unless Force is specified

                      @@ -1149,8 +1149,8 @@
                      -Force
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaTcpPort.html b/Set-DbaTcpPort.html index ca3ff075..ca3c0c91 100644 --- a/Set-DbaTcpPort.html +++ b/Set-DbaTcpPort.html @@ -519,7 +519,7 @@
                      Example: 3

                      Sets the port number 1337 for all IP Addresses on SqlInstance sql2017 and sql2019 using the credentials for ad\dba. Prompts for confirmation. Restarts the service.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -547,7 +547,7 @@
                      -SqlInstance
                      -Port
                      -

                      TCPPort that SQLService should listen on.

                      +

                      TCPPort that SQLService should listen on.

                      @@ -660,8 +660,8 @@
                      -Force
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbaTempDbConfig.html b/Set-DbaTempDbConfig.html index fc026b8f..2aa1600a 100644 --- a/Set-DbaTempDbConfig.html +++ b/Set-DbaTempDbConfig.html @@ -534,7 +534,7 @@
                      Example: 5

                      Returns the T-SQL script representing tempdb configuration.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -562,7 +562,7 @@
                      -SqlInstance
                      -DataFileSize
                      -

                      Specifies the total data file size in megabytes. This is distributed across the total number of data files.

                      +

                      Specifies the total data file size in megabytes. This is distributed across the total number of data files.

                      @@ -591,8 +591,8 @@
                      -DataFileSize

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -873,8 +873,8 @@
                      -DisableGrowth
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Set-DbatoolsConfig.html b/Set-DbatoolsConfig.html index 16120ec0..5655a310 100644 --- a/Set-DbatoolsConfig.html +++ b/Set-DbatoolsConfig.html @@ -515,7 +515,8 @@

                      Syntax

                      [-Initialize] [-DisableValidation] [-DisableHandler] - [-EnableException] -PersistedValue <String> + [-EnableException] + -PersistedValue <String> [-PersistedType <ConfigurationValueType>] [-SimpleExport] [-ModuleExport] @@ -551,7 +552,7 @@
                      Example 1: Simple

                      Required Parameters

                      -FullName
                      -
                      +
                      @@ -579,7 +580,7 @@
                      -FullName
                      -Name
                      -
                      +
                      @@ -607,7 +608,7 @@
                      -Name
                      -PersistedValue
                      -
                      +
                      diff --git a/Set-DbatoolsInsecureConnection.html b/Set-DbatoolsInsecureConnection.html index cc1ed09a..e57fc09f 100644 --- a/Set-DbatoolsInsecureConnection.html +++ b/Set-DbatoolsInsecureConnection.html @@ -483,9 +483,9 @@

                      Set-DbatoolsInsecureConnection

                      Synopsis

                      Sets the default connection settings to trust all server certificates and not require an encrypted connection.

                      Description

                      -

                      Microsoft changed the default connection settings in the SQL Server connection libraries +

                      Microsoft changed the default connection settings in the SQL Server connection libraries
                      to require an encrypted connection and not trust all server certificates.

                      -

                      This command reverts those defaults and sets the default connection settings to trust all server +

                      This command reverts those defaults and sets the default connection settings to trust all server
                      certificates and not require encrypted connections.

                      You can read more here: https://dbatools.io/newdefaults

                      Syntax

                      @@ -538,7 +538,7 @@
                      -SessionOnly
                      -Scope
                      -

                      The configuration scope it should be registered under. Defaults to UserDefault. +

                      The configuration scope it should be registered under. Defaults to UserDefault.
                      Configuration scopes are the default locations configurations are being stored at.

                      diff --git a/Set-DbatoolsPath.html b/Set-DbatoolsPath.html index f9de5082..c59c8f39 100644 --- a/Set-DbatoolsPath.html +++ b/Set-DbatoolsPath.html @@ -483,8 +483,8 @@

                      Set-DbatoolsPath

                      Synopsis

                      Configures or updates a path under a name.

                      Description

                      -

                      Configures or updates a path under a name. -The path can be persisted using the "-Register" command. +

                      Configures or updates a path under a name.
                      +The path can be persisted using the "-Register" command.
                      Paths setup like this can be retrieved using Get-DbatoolsPath.

                      Syntax

                      Set-DbatoolsPath -Name <String> -Path <String>
                      @@ -504,7 +504,7 @@ 
                      Example: 1

                      Configures C:\temp as the current temp path. (does not override $Env:TEMP !)

                      Required Parameters

                      -Name
                      -

                      Name the path should be stored under.

                      +

                      Name the path should be stored under.

                      @@ -532,7 +532,7 @@
                      -Name
                      -Path
                      -

                      The path that should be returned under the name.

                      +

                      The path that should be returned under the name.

                      @@ -560,7 +560,7 @@
                      -Path
                      -Register
                      -

                      Registering a path in order for it to persist across sessions.

                      +

                      Registering a path in order for it to persist across sessions.

                      @@ -589,8 +589,8 @@
                      -Register

                      Optional Parameters

                      -Scope
                      -

                      The configuration scope it should be registered under. -Defaults to UserDefault. +

                      The configuration scope it should be registered under.
                      +Defaults to UserDefault.
                      Configuration scopes are the default locations configurations are being stored at.

                      diff --git a/Show-DbaDbList.html b/Show-DbaDbList.html index cceb237c..fc9c9281 100644 --- a/Show-DbaDbList.html +++ b/Show-DbaDbList.html @@ -516,7 +516,7 @@
                      Example: 3

                      Shows a GUI list of databases using Windows Authentication to connect to the SQL Server. The "master" database will be selected when the lists shows. Returns a string of the selected database.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances..

                      +

                      The target SQL Server instance or instances..

                      @@ -545,8 +545,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -659,8 +659,8 @@
                      -DefaultDb
                      -EnableException
                      -

                      By default in most of our commands, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This command, however, gifts you with "sea of red" exceptions, by default, because it is useful for advanced scripting. +

                      By default in most of our commands, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This command, however, gifts you with "sea of red" exceptions, by default, because it is useful for advanced scripting.
                      Using this switch turns our "nice by default" feature on which makes errors into pretty warnings.

                      diff --git a/Show-DbaInstanceFileSystem.html b/Show-DbaInstanceFileSystem.html index 19e0c20b..86655941 100644 --- a/Show-DbaInstanceFileSystem.html +++ b/Show-DbaInstanceFileSystem.html @@ -510,7 +510,7 @@
                      Example: 2

                      Shows a list of databases using SQL credentials to connect to the SQL Server. Returns a string of the selected path.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances. Defaults to localhost.

                      +

                      The target SQL Server instance or instances. Defaults to localhost.

                      @@ -539,8 +539,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -569,8 +569,8 @@
                      -SqlCredential
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Start-DbaAgentJob.html b/Start-DbaAgentJob.html index d8fb3b9e..273f69fe 100644 --- a/Start-DbaAgentJob.html +++ b/Start-DbaAgentJob.html @@ -523,7 +523,8 @@

                      Syntax

                      [-SqlCredential <PSCredential>] [-Job <String[]>] [-StepName <String>] - [-ExcludeJob <String[]>] -InputObject <Job[]> + [-ExcludeJob <String[]>] + -InputObject <Job[]> [-AllJobs] [-Wait] [-Parallel] @@ -576,7 +577,7 @@
                      Example: 8

                      Starts the JobWith5Steps SQL Agent Job at step Step4.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -604,7 +605,7 @@
                      -SqlInstance
                      -InputObject
                      -

                      Internal parameter that enables piping

                      +

                      Internal parameter that enables piping

                      @@ -633,8 +634,8 @@
                      -InputObject

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -803,7 +804,7 @@
                      -Wait
                      -Parallel
                      -

                      Works in conjunction with the Wait switch. Be default, when passing the Wait switch, each job is started one at a time and waits for completion +

                      Works in conjunction with the Wait switch. Be default, when passing the Wait switch, each job is started one at a time and waits for completion
                      before starting the next job. The Parallel switch will change the behavior to start all jobs at once, and wait for all jobs to complete .

                      @@ -888,8 +889,8 @@
                      -SleepPeriod
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Start-DbaDbEncryption.html b/Start-DbaDbEncryption.html index b62bee7e..d5b71a91 100644 --- a/Start-DbaDbEncryption.html +++ b/Start-DbaDbEncryption.html @@ -537,7 +537,7 @@
                      Example: 1
                      Then encrypts all user databases on sql01, creating master keys and certificates as needed, and backing all of them up to C:\temp, securing them with the password set in $certbackuppass

                      Required Parameters

                      -BackupPath
                      -

                      The path (accessible by and relative to the SQL Server) where master keys and certificates are backed up

                      +

                      The path (accessible by and relative to the SQL Server) where master keys and certificates are backed up

                      @@ -565,9 +565,9 @@
                      -BackupPath
                      -MasterKeySecurePassword
                      -

                      A master service key will be created and backed up if one does not exist -MasterKeySecurePassword is the secure string (password) used to create the key -This parameter is required even if no master keys are made, as we won't know if master key creation will be required until each server is processed

                      +

                      A master service key will be created and backed up if one does not exist
                      +MasterKeySecurePassword is the secure string (password) used to create the key
                      +This parameter is required even if no master keys are made, as we won't know if master key creation will be required until each server is processed

                      @@ -595,7 +595,7 @@
                      -MasterKeySecurePassword
                      -BackupSecurePassword
                      -

                      This command will perform backups of all maskter keys and certificates. Use this parameter to set the backup password

                      +

                      This command will perform backups of all maskter keys and certificates. Use this parameter to set the backup password

                      @@ -652,8 +652,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -682,8 +682,8 @@
                      -SqlCredential
                      -EncryptorName
                      -

                      The name of the encryptor (Certificate or Asymmetric Key) in master that will be used. Tries to find one if one is not specified. If certificate does not exist and -Force is specified, one will be -created with the given Encryptor Name. +

                      The name of the encryptor (Certificate or Asymmetric Key) in master that will be used. Tries to find one if one is not specified. If certificate does not exist and -Force is specified, one will be
                      +created with the given Encryptor Name.
                      In order to encrypt the database encryption key with an asymmetric key, you must use an asymmetric key that resides on an extensible key management provider.

                      @@ -800,7 +800,7 @@
                      -CertificateSubject
                      -CertificateStartDate
                      -

                      Optional start date that will be used when creating all certificates +

                      Optional start date that will be used when creating all certificates
                      By default, certs will start immediately

                      @@ -829,7 +829,7 @@
                      -CertificateStartDate
                      -CertificateExpirationDate
                      -

                      Optional expiration that will be used when creating all certificates +

                      Optional expiration that will be used when creating all certificates
                      By default, certs will last 5 years

                      @@ -914,7 +914,7 @@
                      -InputObject
                      -AllUserDatabases
                      -

                      Run command against all user databases +

                      Run command against all user databases
                      This was added to emphasize that all user databases will be encrypted

                      @@ -971,8 +971,8 @@
                      -Force
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Start-DbaEndpoint.html b/Start-DbaEndpoint.html index cd1fb341..c4252c19 100644 --- a/Start-DbaEndpoint.html +++ b/Start-DbaEndpoint.html @@ -546,8 +546,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -660,8 +660,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Start-DbaMigration.html b/Start-DbaMigration.html index 001f6fc9..447f2eef 100644 --- a/Start-DbaMigration.html +++ b/Start-DbaMigration.html @@ -490,25 +490,25 @@

                      Synopsis

                      For more granular control, please use Exclude or use the other functions available within the dbatools module.

                      Description

                      Start-DbaMigration consolidates most of the migration tools in dbatools into one command. This is useful when you're looking to migrate entire instances. It less flexible than using the underlying functions. Think of it as an easy button. It migrates:

                      -

                      All user databases to exclude support databases such as ReportServerTempDB (Use -IncludeSupportDbs for this). Use -Exclude Databases to skip. -All logins. Use -Exclude Logins to skip. -All database mail objects. Use -Exclude DatabaseMail -All credentials. Use -Exclude Credentials to skip. -All objects within the Job Server (SQL Agent). Use -Exclude AgentServer to skip. -All linked servers. Use -Exclude LinkedServers to skip. -All groups and servers within Central Management Server. Use -Exclude CentralManagementServer to skip. -All SQL Server configuration objects (everything in sp_configure). Use -Exclude SpConfigure to skip. -All user objects in system databases. Use -Exclude SysDbUserObjects to skip. -All system triggers. Use -Exclude SystemTriggers to skip. -All system backup devices. Use -Exclude BackupDevices to skip. -All Audits. Use -Exclude Audits to skip. -All Endpoints. Use -Exclude Endpoints to skip. -All Extended Events. Use -Exclude ExtendedEvents to skip. -All Policy Management objects. Use -Exclude PolicyManagement to skip. -All Resource Governor objects. Use -Exclude ResourceGovernor to skip. -All Server Audit Specifications. Use -Exclude ServerAuditSpecifications to skip. -All Custom Errors (User Defined Messages). Use -Exclude CustomErrors to skip. -All Data Collector collection sets. Does not configure the server. Use -Exclude DataCollector to skip. +

                      All user databases to exclude support databases such as ReportServerTempDB (Use -IncludeSupportDbs for this). Use -Exclude Databases to skip.
                      +All logins. Use -Exclude Logins to skip.
                      +All database mail objects. Use -Exclude DatabaseMail
                      +All credentials. Use -Exclude Credentials to skip.
                      +All objects within the Job Server (SQL Agent). Use -Exclude AgentServer to skip.
                      +All linked servers. Use -Exclude LinkedServers to skip.
                      +All groups and servers within Central Management Server. Use -Exclude CentralManagementServer to skip.
                      +All SQL Server configuration objects (everything in sp_configure). Use -Exclude SpConfigure to skip.
                      +All user objects in system databases. Use -Exclude SysDbUserObjects to skip.
                      +All system triggers. Use -Exclude SystemTriggers to skip.
                      +All system backup devices. Use -Exclude BackupDevices to skip.
                      +All Audits. Use -Exclude Audits to skip.
                      +All Endpoints. Use -Exclude Endpoints to skip.
                      +All Extended Events. Use -Exclude ExtendedEvents to skip.
                      +All Policy Management objects. Use -Exclude PolicyManagement to skip.
                      +All Resource Governor objects. Use -Exclude ResourceGovernor to skip.
                      +All Server Audit Specifications. Use -Exclude ServerAuditSpecifications to skip.
                      +All Custom Errors (User Defined Messages). Use -Exclude CustomErrors to skip.
                      +All Data Collector collection sets. Does not configure the server. Use -Exclude DataCollector to skip.
                      All startup procedures. Use -Exclude StartupProcedures to skip.

                      This script provides the ability to migrate databases using detach/copy/attach or backup/restore. SQL Server logins, including passwords, SID and database/server roles can also be migrated. In addition, job server objects can be migrated and server configuration settings can be exported or migrated. This script works with named instances, clusters and SQL Express.

                      By default, databases will be migrated to the destination SQL Server's default data and log directories. You can override this by specifying -ReuseSourceFolderStructure. Filestreams and filegroups are also migrated. Safety is emphasized.

                      @@ -613,8 +613,8 @@
                      -Source
                      -Destination
                      -

                      Destination SQL Server. You may specify multiple servers. -Note that when using -BackupRestore with multiple servers, the backup will only be performed once and backups will be deleted at the end. +

                      Destination SQL Server. You may specify multiple servers.
                      +Note that when using -BackupRestore with multiple servers, the backup will only be performed once and backups will be deleted at the end.
                      When using -DetachAttach with multiple servers, -Reattach must be specified.

                      @@ -643,7 +643,7 @@
                      -Destination
                      -DetachAttach
                      -

                      If this switch is enabled, the the detach/copy/attach method is used to perform database migrations. No files are deleted on Source. If the destination attachment fails, the source database will be +

                      If this switch is enabled, the the detach/copy/attach method is used to perform database migrations. No files are deleted on Source. If the destination attachment fails, the source database will be
                      reattached. File copies are performed over administrative shares (\server\x$\mssql) using BITS. If a database is being mirrored, the mirror will be broken prior to migration.

                      @@ -812,7 +812,7 @@
                      -NoRecovery
                      -SetSourceReadOnly
                      -

                      If this switch is enabled, all migrated databases will be set to ReadOnly on the source instance prior to detach/attach & backup/restore. If -Reattach is specified, the database is set to read-only +

                      If this switch is enabled, all migrated databases will be set to ReadOnly on the source instance prior to detach/attach & backup/restore. If -Reattach is specified, the database is set to read-only
                      after reattaching.

                      @@ -841,7 +841,7 @@
                      -SetSourceReadOnly
                      -ReuseSourceFolderStructure
                      -

                      If this switch is enabled, the data and log directory structures on Source will be kept on Destination. Otherwise, databases will be migrated to Destination's default data and log directories. +

                      If this switch is enabled, the data and log directory structures on Source will be kept on Destination. Otherwise, databases will be migrated to Destination's default data and log directories.
                      Consider this if you're migrating between different versions and use part of Microsoft's default SQL structure (MSSQL12.INSTANCE, etc.).

                      @@ -870,7 +870,7 @@
                      -ReuseSourceFolderStructure
                      -IncludeSupportDbs
                      -

                      If this switch is enabled, the ReportServer, ReportServerTempDb, SSIDb, and distribution databases will be migrated if they exist. A logfile named $SOURCE-$DESTINATION-$date-Sqls.csv will be written +

                      If this switch is enabled, the ReportServer, ReportServerTempDb, SSIDb, and distribution databases will be migrated if they exist. A logfile named $SOURCE-$DESTINATION-$date-Sqls.csv will be written
                      to the current directory. Requires -BackupRestore or -DetachAttach.

                      @@ -899,8 +899,8 @@
                      -IncludeSupportDbs
                      -SourceSqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -929,8 +929,8 @@
                      -SourceSqlCredential
                      -DestinationSqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -959,28 +959,28 @@
                      -DestinationSqlCredential
                      -Exclude
                      -

                      Exclude one or more objects to migrate -Databases -Logins -AgentServer -Credentials -LinkedServers -SpConfigure -CentralManagementServer -DatabaseMail -SysDbUserObjects -SystemTriggers -BackupDevices -Audits -Endpoints -ExtendedEvents -PolicyManagement -ResourceGovernor -ServerAuditSpecifications -CustomErrors -DataCollector -StartupProcedures -AgentServerProperties +

                      Exclude one or more objects to migrate
                      +Databases
                      +Logins
                      +AgentServer
                      +Credentials
                      +LinkedServers
                      +SpConfigure
                      +CentralManagementServer
                      +DatabaseMail
                      +SysDbUserObjects
                      +SystemTriggers
                      +BackupDevices
                      +Audits
                      +Endpoints
                      +ExtendedEvents
                      +PolicyManagement
                      +ResourceGovernor
                      +ServerAuditSpecifications
                      +CustomErrors
                      +DataCollector
                      +StartupProcedures
                      +AgentServerProperties
                      MasterCertificates

                      @@ -1209,9 +1209,9 @@
                      -Continue
                      -Force
                      -

                      If migrating users, forces drop and recreate of SQL and Windows logins. -If migrating databases, deletes existing databases with matching names. -If using -DetachAttach, -Force will break mirrors and drop dbs from Availability Groups. +

                      If migrating users, forces drop and recreate of SQL and Windows logins.
                      +If migrating databases, deletes existing databases with matching names.
                      +If using -DetachAttach, -Force will break mirrors and drop dbs from Availability Groups.
                      For other migration objects, it will just drop existing items and readd, if -force is supported within the underlying function.

                      @@ -1296,8 +1296,8 @@
                      -MasterKeyPassword
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Start-DbaPfDataCollectorSet.html b/Start-DbaPfDataCollectorSet.html index ed18bddb..aee3332b 100644 --- a/Start-DbaPfDataCollectorSet.html +++ b/Start-DbaPfDataCollectorSet.html @@ -550,7 +550,7 @@
                      -ComputerName
                      -Credential
                      -

                      Allows you to login to $ComputerName using alternative credentials. To use: +

                      Allows you to login to $ComputerName using alternative credentials. To use:
                      $cred = Get-Credential, then pass $cred object to the -Credential parameter.

                      @@ -663,8 +663,8 @@
                      -NoWait
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Start-DbaService.html b/Start-DbaService.html index a791e70d..3d98aac9 100644 --- a/Start-DbaService.html +++ b/Start-DbaService.html @@ -504,7 +504,8 @@

                      Syntax

                      Start-DbaService [-InstanceName <String[]>] - [-Type <String[]>] -InputObject <Object[]> + [-Type <String[]>] + -InputObject <Object[]> [-Timeout <Int32>] [-Credential <PSCredential>] [-EnableException] @@ -534,7 +535,7 @@
                      Example: 4

                      Starts the SQL Server related services of type "SSRS" (Reporting Services) on computers in the variable MyServers.

                      Required Parameters

                      -InputObject
                      -

                      A collection of services from Get-DbaService

                      +

                      A collection of services from Get-DbaService

                      @@ -619,7 +620,7 @@
                      -InstanceName
                      -SqlInstance
                      -

                      Use a combination of computername and instancename to get the SQL Server related services for specific instances on specific computers. +

                      Use a combination of computername and instancename to get the SQL Server related services for specific instances on specific computers.
                      Parameters ComputerName and InstanceName will be ignored if SqlInstance is used.

                      @@ -648,7 +649,7 @@
                      -SqlInstance
                      -Type
                      -

                      Use -Type to collect only services of the desired SqlServiceType. +

                      Use -Type to collect only services of the desired SqlServiceType.
                      Can be one of the following: "Agent","Browser","Engine","FullText","SSAS","SSIS","SSRS"

                      @@ -737,8 +738,8 @@
                      -Credential
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Start-DbaTrace.html b/Start-DbaTrace.html index f99632cb..512ce138 100644 --- a/Start-DbaTrace.html +++ b/Start-DbaTrace.html @@ -545,8 +545,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -631,8 +631,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Start-DbaXESession.html b/Start-DbaXESession.html index 5c79e4b5..f37f1f90 100644 --- a/Start-DbaXESession.html +++ b/Start-DbaXESession.html @@ -491,7 +491,8 @@

                      Description

                      Syntax

                      Start-DbaXESession
                           [-SqlInstance] <DbaInstanceParameter[]>
                      -    [-SqlCredential <PSCredential>] -Session <Object[]>
                      +    [-SqlCredential <PSCredential>]
                      +    -Session <Object[]>
                           [-StartAt <DateTime>]
                           [-StopAt <DateTime>]
                           [-EnableException]
                      @@ -503,7 +504,8 @@ 

                      Syntax

                      [-SqlInstance] <DbaInstanceParameter[]> [-SqlCredential <PSCredential>] [-StartAt <DateTime>] - [-StopAt <DateTime>] -AllSessions + [-StopAt <DateTime>] + -AllSessions [-EnableException] [-WhatIf] [-Confirm] @@ -511,7 +513,8 @@

                      Syntax

                      Start-DbaXESession [-StartAt <DateTime>] - [-StopAt <DateTime>] -InputObject <Session[]> + [-StopAt <DateTime>] + -InputObject <Session[]> [-EnableException] [-WhatIf] [-Confirm] @@ -543,7 +546,7 @@
                      Example: 5

                      Starts the sessions returned from the Get-DbaXESession function.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

                      +

                      The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

                      @@ -571,7 +574,7 @@
                      -SqlInstance
                      -Session
                      -

                      Only start specific Extended Events sessions.

                      +

                      Only start specific Extended Events sessions.

                      @@ -599,7 +602,7 @@
                      -Session
                      -AllSessions
                      -

                      Start all Extended Events sessions on an instance, ignoring the packaged sessions: AlwaysOn_health, system_health, telemetry_xevents.

                      +

                      Start all Extended Events sessions on an instance, ignoring the packaged sessions: AlwaysOn_health, system_health, telemetry_xevents.

                      @@ -627,7 +630,7 @@
                      -AllSessions
                      -InputObject
                      -

                      Internal parameter to support piping from Get-DbaXESession

                      +

                      Internal parameter to support piping from Get-DbaXESession

                      @@ -656,8 +659,8 @@
                      -InputObject

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -686,7 +689,7 @@
                      -SqlCredential
                      -StartAt
                      -

                      Specifies a datetime at which the session will be started. This is done via a self-deleting schedule. +

                      Specifies a datetime at which the session will be started. This is done via a self-deleting schedule.
                      The command returns immediately and returns the affected sessions in their current state.

                      @@ -743,8 +746,8 @@
                      -StopAt
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Start-DbaXESmartTarget.html b/Start-DbaXESmartTarget.html index 113fff9d..7a99f6ff 100644 --- a/Start-DbaXESmartTarget.html +++ b/Start-DbaXESmartTarget.html @@ -536,7 +536,7 @@
                      Example: 3

                      Writes Extended Events to the deadlocktracker table in dbadb on sql2017.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

                      +

                      The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

                      @@ -564,9 +564,9 @@
                      -SqlInstance
                      -Session
                      -

                      Name of the Extended Events session to attach to. -You can monitor a single session with an instance of XESmartTarget. In case you need to perform action on multiple sessions, run an additional instance of XESmartTarget, with its own configuration -file.

                      +

                      Name of the Extended Events session to attach to.
                      +You can monitor a single session with an instance of XESmartTarget. In case you need to perform action on multiple sessions, run an additional instance of XESmartTarget, with its own configuration
                      +file.

                      @@ -595,8 +595,8 @@
                      -Session

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -765,8 +765,8 @@
                      -NotAsJob
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Stop-DbaAgentJob.html b/Stop-DbaAgentJob.html index 6fc77f07..c6c35236 100644 --- a/Stop-DbaAgentJob.html +++ b/Stop-DbaAgentJob.html @@ -512,7 +512,8 @@

                      Syntax

                      Stop-DbaAgentJob [-SqlCredential <PSCredential>] [-Job <String[]>] - [-ExcludeJob <String[]>] -InputObject <Job[]> + [-ExcludeJob <String[]>] + -InputObject <Job[]> [-Wait] [-EnableException] [-WhatIf] @@ -537,7 +538,7 @@
                      Example: 3

                      Stops the cdc.DBWithCDC_capture SQL Agent Job on sql2016

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -565,7 +566,7 @@
                      -SqlInstance
                      -InputObject
                      -

                      Internal parameter that enables piping

                      +

                      Internal parameter that enables piping

                      @@ -594,8 +595,8 @@
                      -InputObject

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -708,8 +709,8 @@
                      -Wait
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Stop-DbaDbEncryption.html b/Stop-DbaDbEncryption.html index 49301f11..0a5cd909 100644 --- a/Stop-DbaDbEncryption.html +++ b/Stop-DbaDbEncryption.html @@ -512,7 +512,7 @@
                      Example: 2

                      Removes this does that

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -541,8 +541,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -571,8 +571,8 @@
                      -SqlCredential
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Stop-DbaEndpoint.html b/Stop-DbaEndpoint.html index 9f08fb8b..ca35e4e3 100644 --- a/Stop-DbaEndpoint.html +++ b/Stop-DbaEndpoint.html @@ -546,8 +546,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -660,8 +660,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Stop-DbaExternalProcess.html b/Stop-DbaExternalProcess.html index 02635709..3629b15a 100644 --- a/Stop-DbaExternalProcess.html +++ b/Stop-DbaExternalProcess.html @@ -514,7 +514,7 @@
                      Example: 2

                      Kills all cmd.exe processes created by SQL Server on SQL01

                      Required Parameters

                      -ComputerName
                      -

                      The target SQL Server host computer

                      +

                      The target SQL Server host computer

                      @@ -599,8 +599,8 @@
                      -ProcessId
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Stop-DbaPfDataCollectorSet.html b/Stop-DbaPfDataCollectorSet.html index 5b2e2252..ea178758 100644 --- a/Stop-DbaPfDataCollectorSet.html +++ b/Stop-DbaPfDataCollectorSet.html @@ -550,7 +550,7 @@
                      -ComputerName
                      -Credential
                      -

                      Allows you to login to $ComputerName using alternative credentials. To use: +

                      Allows you to login to $ComputerName using alternative credentials. To use:
                      $cred = Get-Credential, then pass $cred object to the -Credential parameter.

                      @@ -663,8 +663,8 @@
                      -NoWait
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Stop-DbaProcess.html b/Stop-DbaProcess.html index 31069b0b..a67393bb 100644 --- a/Stop-DbaProcess.html +++ b/Stop-DbaProcess.html @@ -523,7 +523,8 @@

                      Syntax

                      [-Database <String[]>] [-Login <String[]>] [-Hostname <String[]>] - [-Program <String[]>] -InputObject <Object[]> + [-Program <String[]>] + -InputObject <Object[]> [-EnableException] [-WhatIf] [-Confirm] @@ -559,7 +560,7 @@
                      Example: 6

                      Finds processes that were created with dbatools, then kills them.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -587,7 +588,7 @@
                      -SqlInstance
                      -InputObject
                      -

                      This is the process object passed by Get-DbaProcess if using a pipeline.

                      +

                      This is the process object passed by Get-DbaProcess if using a pipeline.

                      @@ -616,8 +617,8 @@
                      -InputObject

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -674,7 +675,7 @@
                      -Spid
                      -ExcludeSpid
                      -

                      Specifies one or more spids which will not be killed. Options for this parameter are auto-populated from the server. +

                      Specifies one or more spids which will not be killed. Options for this parameter are auto-populated from the server.
                      Exclude is the last filter to run, so even if a spid matches (for example) Hosts, if it's listed in Exclude it wil be excluded.

                      @@ -703,7 +704,7 @@
                      -ExcludeSpid
                      -Database
                      -

                      Specifies one or more databases whose processes will be killed. Options for this parameter are auto-populated from the server and only databases that have active processes are offered. +

                      Specifies one or more databases whose processes will be killed. Options for this parameter are auto-populated from the server and only databases that have active processes are offered.
                      This parameter is auto-populated from -SqlInstance and allows only database names that have active processes. You can specify one or more Databases whose processes will be killed.

                      @@ -816,8 +817,8 @@
                      -Program
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Stop-DbaService.html b/Stop-DbaService.html index a16596ac..9790001c 100644 --- a/Stop-DbaService.html +++ b/Stop-DbaService.html @@ -505,7 +505,8 @@

                      Syntax

                      Stop-DbaService [-InstanceName <String[]>] - [-Type <String[]>] -InputObject <Object[]> + [-Type <String[]>] + -InputObject <Object[]> [-Timeout <Int32>] [-Credential <PSCredential>] [-Force] @@ -540,7 +541,7 @@
                      Example: 5

                      Stops SQL Server database engine services on sql1 forcing dependent SQL Server Agent services to stop as well.

                      Required Parameters

                      -InputObject
                      -

                      A collection of services from Get-DbaService

                      +

                      A collection of services from Get-DbaService

                      @@ -625,7 +626,7 @@
                      -InstanceName
                      -SqlInstance
                      -

                      Use a combination of computername and instancename to get the SQL Server related services for specific instances on specific computers. +

                      Use a combination of computername and instancename to get the SQL Server related services for specific instances on specific computers.
                      Parameters ComputerName and InstanceName will be ignored if SqlInstance is used.

                      @@ -654,7 +655,7 @@
                      -SqlInstance
                      -Type
                      -

                      Use -Type to collect only services of the desired SqlServiceType. +

                      Use -Type to collect only services of the desired SqlServiceType.
                      Can be one of the following: "Agent","Browser","Engine","FullText","SSAS","SSIS","SSRS"

                      @@ -771,8 +772,8 @@
                      -Force
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Stop-DbaTrace.html b/Stop-DbaTrace.html index 95aff777..3cb96f17 100644 --- a/Stop-DbaTrace.html +++ b/Stop-DbaTrace.html @@ -545,8 +545,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -631,8 +631,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Stop-DbaXESession.html b/Stop-DbaXESession.html index 9b9b25ec..9064af19 100644 --- a/Stop-DbaXESession.html +++ b/Stop-DbaXESession.html @@ -491,7 +491,8 @@

                      Description

                      Syntax

                      Stop-DbaXESession
                           [-SqlInstance] <DbaInstanceParameter[]>
                      -    [-SqlCredential <PSCredential>] -Session <Object[]>
                      +    [-SqlCredential <PSCredential>]
                      +    -Session <Object[]>
                           [-EnableException]
                           [-WhatIf]
                           [-Confirm]
                      @@ -499,7 +500,8 @@ 

                      Syntax

                      Stop-DbaXESession [-SqlInstance] <DbaInstanceParameter[]> - [-SqlCredential <PSCredential>] -AllSessions + [-SqlCredential <PSCredential>] + -AllSessions [-EnableException] [-WhatIf] [-Confirm] @@ -529,7 +531,7 @@
                      Example: 3

                      Stops the sessions returned from the Get-DbaXESession function.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

                      +

                      The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2008 or higher.

                      @@ -557,7 +559,7 @@
                      -SqlInstance
                      -Session
                      -

                      Specifies individual Extended Events sessions to stop.

                      +

                      Specifies individual Extended Events sessions to stop.

                      @@ -585,7 +587,7 @@
                      -Session
                      -AllSessions
                      -

                      If this switch is enabled, all Extended Events sessions will be stopped except the packaged sessions AlwaysOn_health, system_health, telemetry_xevents.

                      +

                      If this switch is enabled, all Extended Events sessions will be stopped except the packaged sessions AlwaysOn_health, system_health, telemetry_xevents.

                      @@ -613,7 +615,7 @@
                      -AllSessions
                      -InputObject
                      -

                      Accepts the object output by Get-DbaXESession as the list of sessions to be stopped.

                      +

                      Accepts the object output by Get-DbaXESession as the list of sessions to be stopped.

                      @@ -642,8 +644,8 @@
                      -InputObject

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -672,8 +674,8 @@
                      -SqlCredential
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Stop-DbaXESmartTarget.html b/Stop-DbaXESmartTarget.html index 3b2f1cb6..98d51adb 100644 --- a/Stop-DbaXESmartTarget.html +++ b/Stop-DbaXESmartTarget.html @@ -510,7 +510,7 @@
                      Example: 2

                      Stops a specific XESmartTarget job.

                      Required Parameters

                      -InputObject
                      -

                      The XESmartTarget job object.

                      +

                      The XESmartTarget job object.

                      @@ -539,8 +539,8 @@
                      -InputObject

                      Optional Parameters

                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Suspend-DbaAgDbDataMovement.html b/Suspend-DbaAgDbDataMovement.html index 1ff5ef04..12830fe9 100644 --- a/Suspend-DbaAgDbDataMovement.html +++ b/Suspend-DbaAgDbDataMovement.html @@ -542,8 +542,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -656,8 +656,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Sync-DbaAvailabilityGroup.html b/Sync-DbaAvailabilityGroup.html index a6c6eb26..697cc7cf 100644 --- a/Sync-DbaAvailabilityGroup.html +++ b/Sync-DbaAvailabilityGroup.html @@ -488,20 +488,20 @@

                      Synopsis

                      Syncs dependent objects such as jobs, logins and custom errors for availability groups

                      Description

                      Syncs dependent objects for availability groups. Such objects include:

                      -

                      SpConfigure -CustomErrors -Credentials -DatabaseMail -LinkedServers -Logins -LoginPermissions -SystemTriggers -DatabaseOwner -AgentCategory -AgentOperator -AgentAlert -AgentProxy -AgentSchedule +

                      SpConfigure
                      +CustomErrors
                      +Credentials
                      +DatabaseMail
                      +LinkedServers
                      +Logins
                      +LoginPermissions
                      +SystemTriggers
                      +DatabaseOwner
                      +AgentCategory
                      +AgentOperator
                      +AgentAlert
                      +AgentProxy
                      +AgentSchedule
                      AgentJob

                      Note that any of these can be excluded. For specific object exclusions (such as a single job), using the underlying Copy-Dba* command will be required.

                      This command does not filter by which logins are in use by the ag databases or which linked servers are used. All objects that are not excluded will be copied like hulk smash.

                      @@ -578,8 +578,8 @@
                      -Primary
                      -PrimarySqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -636,8 +636,8 @@
                      -Secondary
                      -SecondarySqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -694,21 +694,21 @@
                      -AvailabilityGroup
                      -Exclude
                      -

                      Exclude one or more objects to export -SpConfigure -CustomErrors -Credentials -DatabaseMail -LinkedServers -Logins -LoginPermissions -SystemTriggers -DatabaseOwner -AgentCategory -AgentOperator -AgentAlert -AgentProxy -AgentSchedule +

                      Exclude one or more objects to export
                      +SpConfigure
                      +CustomErrors
                      +Credentials
                      +DatabaseMail
                      +LinkedServers
                      +Logins
                      +LoginPermissions
                      +SystemTriggers
                      +DatabaseOwner
                      +AgentCategory
                      +AgentOperator
                      +AgentAlert
                      +AgentProxy
                      +AgentSchedule
                      AgentJob

                      @@ -937,8 +937,8 @@
                      -Force
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Sync-DbaLoginPermission.html b/Sync-DbaLoginPermission.html index 5c14ec42..994a2d14 100644 --- a/Sync-DbaLoginPermission.html +++ b/Sync-DbaLoginPermission.html @@ -519,7 +519,7 @@
                      Example: 3

                      Copies permissions ONLY for logins netnerds and realcajun.

                      Required Parameters

                      -Source
                      -

                      Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

                      +

                      Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

                      @@ -547,7 +547,7 @@
                      -Source
                      -Destination
                      -

                      Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

                      +

                      Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

                      @@ -576,8 +576,8 @@
                      -Destination

                      Optional Parameters

                      -SourceSqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -606,8 +606,8 @@
                      -SourceSqlCredential
                      -DestinationSqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -692,8 +692,8 @@
                      -ExcludeLogin
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaAgSpn.html b/Test-DbaAgSpn.html index bda5314c..a0229be4 100644 --- a/Test-DbaAgSpn.html +++ b/Test-DbaAgSpn.html @@ -546,8 +546,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -688,8 +688,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaAgentJobOwner.html b/Test-DbaAgentJobOwner.html index 149b5f8d..c5d5dd3a 100644 --- a/Test-DbaAgentJobOwner.html +++ b/Test-DbaAgentJobOwner.html @@ -488,7 +488,7 @@

                      Synopsis

                      Checks SQL Agent Job owners against a login to validate which jobs do not match that owner.

                      Description

                      This function checks all SQL Agent Jobs on an instance against a SQL login to validate if that login owns those SQL Agent Jobs or not. By default, the function checks against 'sa' for ownership, but the user can pass a specific login if they use something else.

                      -

                      Only SQL Agent Jobs that do not match this ownership will be displayed. +

                      Only SQL Agent Jobs that do not match this ownership will be displayed.
                      Best practice reference: https://www.itprotoday.com/sql-server-tip-assign-ownership-jobs-sysadmin-account

                      Syntax

                      Test-DbaAgentJobOwner
                      @@ -519,7 +519,7 @@ 
                      Example: 3
                      that Login must be a valid security principal that exists on the target server.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -548,8 +548,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -662,8 +662,8 @@
                      -Login
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaAvailabilityGroup.html b/Test-DbaAvailabilityGroup.html index 80ede662..2f26873f 100644 --- a/Test-DbaAvailabilityGroup.html +++ b/Test-DbaAvailabilityGroup.html @@ -492,7 +492,8 @@

                      Description

                      Syntax

                      Test-DbaAvailabilityGroup
                           [-SqlInstance] <DbaInstanceParameter>
                      -    [-SqlCredential <PSCredential>] -AvailabilityGroup <String>
                      +    [-SqlCredential <PSCredential>]
                      +    -AvailabilityGroup <String>
                           [-Secondary <DbaInstanceParameter[]>]
                           [-SecondarySqlCredential <PSCredential>]
                           [-AddDatabase <String[]>]
                      @@ -516,7 +517,7 @@ 
                      Example: 2

                      Test if database AdventureWorks can be added to the Availability Group TestAG1 with automatic seeding.

                      Required Parameters

                      -SqlInstance
                      -

                      The primary replica of the Availability Group.

                      +

                      The primary replica of the Availability Group.

                      @@ -544,7 +545,7 @@
                      -SqlInstance
                      -AvailabilityGroup
                      -

                      The name of the Availability Group to test.

                      +

                      The name of the Availability Group to test.

                      @@ -573,8 +574,8 @@
                      -AvailabilityGroup

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -631,8 +632,8 @@
                      -Secondary
                      -SecondarySqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -661,7 +662,7 @@
                      -SecondarySqlCredential
                      -AddDatabase
                      -

                      Test whether all prerequisites for Add-DbaAgDatabase to add these databases to the Availability Group are met. +

                      Test whether all prerequisites for Add-DbaAgDatabase to add these databases to the Availability Group are met.
                      Use Secondary, SecondarySqlCredential, SeedingMode, SharedPath and UseLastBackup with the same values that will be used with Add-DbaAgDatabase later.

                      @@ -778,8 +779,8 @@
                      -UseLastBackup
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaBackupEncrypted.html b/Test-DbaBackupEncrypted.html index 2e387a87..3a72f3f0 100644 --- a/Test-DbaBackupEncrypted.html +++ b/Test-DbaBackupEncrypted.html @@ -510,7 +510,7 @@
                      Example: 2

                      Test to see if all of the backups in \nas\sql\backups are encrypted

                      Required Parameters

                      -FilePath
                      -

                      The path to the backups

                      +

                      The path to the backups

                      @@ -567,8 +567,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -597,8 +597,8 @@
                      -SqlCredential
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaBackupInformation.html b/Test-DbaBackupInformation.html index bfb1d5b1..2d3e9c83 100644 --- a/Test-DbaBackupInformation.html +++ b/Test-DbaBackupInformation.html @@ -523,7 +523,7 @@
                      Example: 1
                      Those records that pass are marked as verified. We can then use the IsVerified property to divide the failures and successes

                      Required Parameters

                      -BackupHistory
                      -

                      dbatools BackupHistory object. Normally this will have been process with Select- and then Format-DbaBackupInformation

                      +

                      dbatools BackupHistory object. Normally this will have been process with Select- and then Format-DbaBackupInformation

                      @@ -580,8 +580,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -722,8 +722,8 @@
                      -OutputScriptOnly
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaBuild.html b/Test-DbaBuild.html index ae5d3786..5d8dd23b 100644 --- a/Test-DbaBuild.html +++ b/Test-DbaBuild.html @@ -487,7 +487,7 @@

                      Test-DbaBuild

                      Synopsis

                      Returns SQL Server Build "compliance" level on a build.

                      Description

                      -

                      Returns info about the specific build of a SQL instance, including the SP, the CU and the reference KB, End Of Support, wherever possible. It adds a Compliance property as true/false, and adds details about the "targeted compliance". +

                      Returns info about the specific build of a SQL instance, including the SP, the CU and the reference KB, End Of Support, wherever possible. It adds a Compliance property as true/false, and adds details about the "targeted compliance".
                      The build data used can be found here: https://dbatools.io/builds

                      Syntax

                      Test-DbaBuild
                      @@ -603,7 +603,7 @@ 
                      -MinimumBuild
                      -MaxBehind
                      -

                      Instead of using a specific MinimumBuild here you can pass "how many service packs and cu back" is the targeted compliance level. You can use xxSP or xxCU or both, where xx is a number. See the +

                      Instead of using a specific MinimumBuild here you can pass "how many service packs and cu back" is the targeted compliance level. You can use xxSP or xxCU or both, where xx is a number. See the
                      Examples for more information.

                      @@ -688,8 +688,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -774,8 +774,8 @@
                      -Quiet
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaCmConnection.html b/Test-DbaCmConnection.html index aca85d9f..ef43eb97 100644 --- a/Test-DbaCmConnection.html +++ b/Test-DbaCmConnection.html @@ -493,7 +493,7 @@

                      Description

                    • Cim over WinRM
                    • Cim over DCOM
                    • Wmi
                    • -
                    • PowerShellRemoting +
                    • PowerShellRemoting
                      Results will be written to the connectivity cache and will cause Get-DbaCmObject and Invoke-DbaCmMethod to connect using the way most likely to succeed. This way, it is likely the other commands will take less time to execute. These others too cache their results, in order to dynamically update connection statistics.
                    • This function ignores global configuration settings limiting which protocols may be used.

                      @@ -577,9 +577,9 @@
                      -Credential
                      -Type
                      -

                      The connection protocol types to test. -By default, all types are tested. -Note that this function will ignore global configurations limiting the types of connections available and test all connections specified here instead. +

                      The connection protocol types to test.
                      +By default, all types are tested.
                      +Note that this function will ignore global configurations limiting the types of connections available and test all connections specified here instead.
                      Available connection protocol types: "CimRM", "CimDCOM", "Wmi", "PowerShellRemoting"

                      @@ -636,8 +636,8 @@
                      -Force
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaComputerCertificateExpiration.html b/Test-DbaComputerCertificateExpiration.html index 9b7d9da6..6659721a 100644 --- a/Test-DbaComputerCertificateExpiration.html +++ b/Test-DbaComputerCertificateExpiration.html @@ -633,9 +633,9 @@
                      -Folder
                      -Type
                      -

                      The type of certificates to return. All, Service or SQL Server. -All is all certificates -Service is certificates that are candidates for SQL Server services (But may be for IIS, etc) +

                      The type of certificates to return. All, Service or SQL Server.
                      +All is all certificates
                      +Service is certificates that are candidates for SQL Server services (But may be for IIS, etc)
                      SQL Server is certificates currently in use by SQL Server

                      @@ -752,8 +752,8 @@
                      -Threshold
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaConnection.html b/Test-DbaConnection.html index 44aa7827..6a711dfa 100644 --- a/Test-DbaConnection.html +++ b/Test-DbaConnection.html @@ -583,7 +583,7 @@
                      -SqlInstance
                      -Credential
                      -

                      Credential object used to connect to the Computer as a different user. +

                      Credential object used to connect to the Computer as a different user.
                      Utilized for gathering PSRemoting and TCPPort information.

                      @@ -612,8 +612,8 @@
                      -Credential
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -670,8 +670,8 @@
                      -SkipPSRemoting
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaConnectionAuthScheme.html b/Test-DbaConnectionAuthScheme.html index 6842bcd7..da0fab9f 100644 --- a/Test-DbaConnectionAuthScheme.html +++ b/Test-DbaConnectionAuthScheme.html @@ -517,7 +517,7 @@
                      Example: 3

                      Returns the results of "SELECT * from sys.dm_exec_connections WHERE session_id = @@SPID"

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances. Server(s) must be SQL Server 2005 or higher.

                      +

                      The target SQL Server instance or instances. Server(s) must be SQL Server 2005 or higher.

                      @@ -546,8 +546,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -632,8 +632,8 @@
                      -Ntlm
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaDbCollation.html b/Test-DbaDbCollation.html index c8ed67e9..db680400 100644 --- a/Test-DbaDbCollation.html +++ b/Test-DbaDbCollation.html @@ -519,7 +519,7 @@
                      Example: 4

                      Returns db/server collation information for every database on every server listed in the Central Management Server on sql2016.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -548,8 +548,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -634,8 +634,8 @@
                      -ExcludeDatabase
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaDbCompatibility.html b/Test-DbaDbCompatibility.html index 85895653..366676cf 100644 --- a/Test-DbaDbCompatibility.html +++ b/Test-DbaDbCompatibility.html @@ -519,7 +519,7 @@
                      Example: 4

                      Returns db/server compatibility information for every database on every server listed in the Central Management Server on sql2016.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -548,8 +548,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -634,8 +634,8 @@
                      -ExcludeDatabase
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaDbCompression.html b/Test-DbaDbCompression.html index 2059459b..42e4ea9b 100644 --- a/Test-DbaDbCompression.html +++ b/Test-DbaDbCompression.html @@ -489,17 +489,17 @@

                      Synopsis

                      Description

                      This function returns the results of a full table/index compression analysis and the estimated, best option to date for either NONE, Page, or Row Compression.

                      Remember Uptime is critical, the longer uptime, the more accurate the analysis is, and it would be best if you utilized Get-DbaUptime first, before running this command.

                      -

                      Test-DbaDbCompression script derived from GitHub and the Tiger Team's repository: (https://github.com/Microsoft/tigertoolbox/tree/master/Evaluate-Compression-Gains) +

                      Test-DbaDbCompression script derived from GitHub and the Tiger Team's repository: (https://github.com/Microsoft/tigertoolbox/tree/master/Evaluate-Compression-Gains)
                      In the output, you will find the following information:

                      • Column Percent_Update shows the percentage of update operations on a specific table, index, or partition, relative to total operations on that object. The lower the percentage of Updates (that is, the table, index, or partition is infrequently updated), the better candidate it is for page compression.
                      • Column Percent_Scan shows the percentage of scan operations on a table, index, or partition, relative to total operations on that object. The higher the value of Scan (that is, the table, index, or partition is mostly scanned), the better candidate it is for page compression.
                      • Column Compression_Type_Recommendation can have four possible outputs indicating where there is most gain, if any: 'PAGE', 'ROW', 'NO_GAIN' or '?'. When the output is '?' this approach could not give a recommendation, so as a rule of thumb I would lean to ROW if the object suffers mainly UPDATES, or PAGE if mainly INSERTS, but this is where knowing your workload is essential. When the output is 'NO_GAIN' well, that means that according to sp_estimate_data_compression_savings no space gains will be attained when compressing, as in the above output example, where compressing would grow the affected object.
                      -

                      This script will execute on the context of the current database. -Also be aware that this may take a while to execute on large objects, because if the IS locks taken by the -sp_estimate_data_compression_savings cannot be honored, the SP will be blocked. -It only considers Row or Page Compression (not column compression) +

                      This script will execute on the context of the current database.
                      +Also be aware that this may take a while to execute on large objects, because if the IS locks taken by the
                      +sp_estimate_data_compression_savings cannot be honored, the SP will be blocked.
                      +It only considers Row or Page Compression (not column compression)
                      It only evaluates User Tables

                      Syntax

                      Test-DbaDbCompression
                      @@ -576,7 +576,7 @@ 
                      Example: 10

                      This produces a full analysis of all your servers listed and is pushed to a csv for you to analyze.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

                      +

                      The target SQL Server instance or instances. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances.

                      @@ -605,8 +605,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -775,7 +775,7 @@
                      -ResultSize
                      -Rank
                      -

                      Allows you to specify the field used for ranking when determining the ResultSize +

                      Allows you to specify the field used for ranking when determining the ResultSize
                      Can be either TotalPages, UsedPages or TotalRows with default of TotalPages. Only applies when ResultSize is used.

                      @@ -808,7 +808,7 @@
                      -Rank
                      -FilterBy
                      -

                      Allows you to specify level of filtering when determining the ResultSize +

                      Allows you to specify level of filtering when determining the ResultSize
                      Can be at either Table, Index or Partition level with default of Partition. Only applies when ResultSize is used.

                      @@ -841,8 +841,8 @@
                      -FilterBy
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaDbDataGeneratorConfig.html b/Test-DbaDbDataGeneratorConfig.html index fdaf31df..1f793c84 100644 --- a/Test-DbaDbDataGeneratorConfig.html +++ b/Test-DbaDbDataGeneratorConfig.html @@ -487,7 +487,7 @@

                      Test-DbaDbDataGeneratorConfig

                      Synopsis

                      Checks the data generation configuration if it's valid

                      Description

                      -

                      When you're dealing with large data generation configurations, things can get complicated and messy. +

                      When you're dealing with large data generation configurations, things can get complicated and messy.
                      This function will test for a range of rules and returns all the tables and columns that contain errors.

                      Syntax

                      Test-DbaDbDataGeneratorConfig
                      @@ -505,7 +505,7 @@ 
                      Example: 1

                      Test the configuration file

                      Required Parameters

                      -FilePath
                      -

                      Path to the file to test

                      +

                      Path to the file to test

                      @@ -534,8 +534,8 @@
                      -FilePath

                      Optional Parameters

                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaDbDataMaskingConfig.html b/Test-DbaDbDataMaskingConfig.html index 246669bc..3e542f43 100644 --- a/Test-DbaDbDataMaskingConfig.html +++ b/Test-DbaDbDataMaskingConfig.html @@ -487,7 +487,7 @@

                      Test-DbaDbDataMaskingConfig

                      Synopsis

                      Checks the masking configuration if it's valid

                      Description

                      -

                      When you're dealing with large masking configurations, things can get complicated and messy. +

                      When you're dealing with large masking configurations, things can get complicated and messy.
                      This function will test for a range of rules and returns all the tables and columns that contain errors.

                      Syntax

                      Test-DbaDbDataMaskingConfig
                      @@ -505,7 +505,7 @@ 
                      Example: 1

                      Test the configuration file

                      Required Parameters

                      -FilePath
                      -

                      Path to the file to test

                      +

                      Path to the file to test

                      @@ -534,8 +534,8 @@
                      -FilePath

                      Optional Parameters

                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaDbLogShipStatus.html b/Test-DbaDbLogShipStatus.html index d2b96bed..0d90e27b 100644 --- a/Test-DbaDbLogShipStatus.html +++ b/Test-DbaDbLogShipStatus.html @@ -487,10 +487,10 @@

                      Test-DbaDbLogShipStatus

                      Synopsis

                      Test-DbaDbLogShipStatus returns the status of your log shipping databases

                      Description

                      -

                      Most of the time your log shipping "just works". +

                      Most of the time your log shipping "just works".
                      Checking your log shipping status can be done really easy with this function.

                      Make sure you're connecting to the monitoring instance of your log shipping infrastructure.

                      -

                      The function will return the status for a database. This can be one or more messages in a comma separated list. +

                      The function will return the status for a database. This can be one or more messages in a comma separated list.
                      If everything is OK with the database than you should only see the message "All OK".

                      Syntax

                      Test-DbaDbLogShipStatus
                      @@ -530,7 +530,7 @@ 
                      Example: 5

                      Retrieves the log ship information and only returns the columns SQL Instance, Database, Instance Type and Status

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                      +

                      The target SQL Server instance or instances. You must have sysadmin access and server version must be SQL Server version 2000 or greater.

                      @@ -559,8 +559,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -589,7 +589,7 @@
                      -SqlCredential
                      -Database
                      -

                      Allows you to filter the results to only return the databases you're interested in. This can be one or more values separated by commas. +

                      Allows you to filter the results to only return the databases you're interested in. This can be one or more values separated by commas.
                      This is not a wildcard and should be the exact database name. See examples for more info.

                      @@ -618,7 +618,7 @@
                      -Database
                      -ExcludeDatabase
                      -

                      Allows you to filter the results to only return the databases you're not interested in. This can be one or more values separated by commas. +

                      Allows you to filter the results to only return the databases you're not interested in. This can be one or more values separated by commas.
                      This is not a wildcard and should be the exact database name.

                      @@ -647,7 +647,7 @@
                      -ExcludeDatabase
                      -Simple
                      -

                      By default all the information will be returned. +

                      By default all the information will be returned.
                      If this parameter is used you get an overview with the SQL Instance, Database, Instance Type and the status

                      @@ -732,8 +732,8 @@
                      -Secondary
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaDbOwner.html b/Test-DbaDbOwner.html index b53c94d3..6323150d 100644 --- a/Test-DbaDbOwner.html +++ b/Test-DbaDbOwner.html @@ -487,8 +487,8 @@

                      Test-DbaDbOwner

                      Synopsis

                      Checks database owners against a login to validate which databases do not match that owner.

                      Description

                      -

                      This function will check all databases on an instance against a SQL login to validate if that -login owns those databases or not. By default, the function will check against 'sa' for +

                      This function will check all databases on an instance against a SQL login to validate if that
                      +login owns those databases or not. By default, the function will check against 'sa' for
                      ownership, but the user can pass a specific login if they use something else.

                      Best Practice reference: http://weblogs.sqlteam.com/dang/archive/2008/01/13/Database-Owner-Troubles.aspx

                      Syntax

                      @@ -548,8 +548,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -690,8 +690,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaDbQueryStore.html b/Test-DbaDbQueryStore.html index 3385fda6..19e8c0ce 100644 --- a/Test-DbaDbQueryStore.html +++ b/Test-DbaDbQueryStore.html @@ -562,8 +562,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -676,8 +676,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaDbRecoveryModel.html b/Test-DbaDbRecoveryModel.html index 94d82b78..74a7421e 100644 --- a/Test-DbaDbRecoveryModel.html +++ b/Test-DbaDbRecoveryModel.html @@ -522,7 +522,7 @@
                      Example: 4

                      Shows all of the properties for the databases that have Full Recovery Model

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -607,8 +607,8 @@
                      -ExcludeDatabase
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -669,8 +669,8 @@
                      -RecoveryModel
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaDeprecatedFeature.html b/Test-DbaDeprecatedFeature.html index 19aceb8a..4c9f2479 100644 --- a/Test-DbaDeprecatedFeature.html +++ b/Test-DbaDeprecatedFeature.html @@ -548,8 +548,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -662,8 +662,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaDiskAlignment.html b/Test-DbaDiskAlignment.html index ca6c58a5..9d84d954 100644 --- a/Test-DbaDiskAlignment.html +++ b/Test-DbaDiskAlignment.html @@ -490,7 +490,7 @@

                      Description

                      Verifies that your non-dynamic disks are aligned according to physical constraints.

                      Returns one row per computer, partition and stripe size with.

                      Please refer to your storage vendor best practices before following any advice below.

                      -

                      By default issues with disk alignment should be resolved by a new installation of Windows Server 2008, Windows Vista, or later operating systems, but verifying disk alignment continues to be recommended as a best practice. +

                      By default issues with disk alignment should be resolved by a new installation of Windows Server 2008, Windows Vista, or later operating systems, but verifying disk alignment continues to be recommended as a best practice.
                      While some versions of Windows use different starting alignments, if you are starting anew 1MB is generally the best practice offset for current operating systems (because it ensures that the partition offset % common stripe unit sizes == 0 )

                      Caveats:

                        @@ -521,7 +521,7 @@
                        Example: 2

                        Tests the disk alignment of multiple servers

                        Required Parameters

                        -ComputerName
                        -

                        The target computer or computers.

                        +

                        The target computer or computers.

                      @@ -550,7 +550,7 @@
                      -ComputerName

                      Optional Parameters

                      -Credential
                      -

                      Specifies an alternate Windows account to use when enumerating drives on the server. May require Administrator privileges. To use: +

                      Specifies an alternate Windows account to use when enumerating drives on the server. May require Administrator privileges. To use:
                      $cred = Get-Credential, then pass $cred object to the -Credential parameter.

                      @@ -579,8 +579,8 @@
                      -Credential
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -637,8 +637,8 @@
                      -NoSqlCheck
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaDiskAllocation.html b/Test-DbaDiskAllocation.html index e34d9d7f..f13158b3 100644 --- a/Test-DbaDiskAllocation.html +++ b/Test-DbaDiskAllocation.html @@ -488,7 +488,7 @@

                      Synopsis

                      Checks all disks on a computer to see if they are formatted with allocation units of 64KB.

                      Description

                      Checks all disks on a computer for disk allocation units that match best practice recommendations. If one server is checked, only $true or $false is returned. If multiple servers are checked, each server's name and an IsBestPractice field are returned.

                      -

                      References: +

                      References:
                      https://technet.microsoft.com/en-us/library/dd758814(v=sql.100).aspx - "The performance question here is usually not one of correlation per the formula, but whether the cluster size has been explicitly defined at 64 KB, which is a best practice for SQL Server."

                      Syntax

                      Test-DbaDiskAllocation
                      @@ -519,7 +519,7 @@ 
                      Example: 3

                      Scans all disks not hosting SQL Server data or log files on server sqlserver2014a for best practice allocation unit size.

                      Required Parameters

                      -ComputerName
                      -

                      The server(s) to check disk configuration on.

                      +

                      The server(s) to check disk configuration on.

                      @@ -576,8 +576,8 @@
                      -NoSqlCheck
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -606,7 +606,7 @@
                      -SqlCredential
                      -Credential
                      -

                      Specifies an alternate Windows account to use when enumerating drives on the server. May require Administrator privileges. To use: +

                      Specifies an alternate Windows account to use when enumerating drives on the server. May require Administrator privileges. To use:
                      $cred = Get-Credential, then pass $cred object to the -Credential parameter.

                      @@ -635,8 +635,8 @@
                      -Credential
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaDiskSpeed.html b/Test-DbaDiskSpeed.html index 2db5066b..1bf7a5f9 100644 --- a/Test-DbaDiskSpeed.html +++ b/Test-DbaDiskSpeed.html @@ -489,7 +489,7 @@

                      Synopsis

                      Description

                      Obtains I/O statistics based on the DMV sys.dm_io_virtual_file_stats:

                      https://docs.microsoft.com/en-us/sql/relational-databases/system-dynamic-management-views/sys-dm-io-virtual-file-stats-transact-sql

                      -

                      This command uses a query from Rich Benner +

                      This command uses a query from Rich Benner
                      https://github.com/RichBenner/PersonalCode/blob/master/Disk_Speed_Check.sql

                      ...and also based on further adaptations referenced at https://github.com/dataplat/dbatools/issues/6551#issue-623216718

                      Syntax

                      @@ -543,7 +543,7 @@
                      Example: 8
                      Returns the statistics for databases other than the exclusions specified.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -572,8 +572,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -690,8 +690,8 @@
                      -AggregateBy
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaEndpoint.html b/Test-DbaEndpoint.html index 937c1ecc..df309ec6 100644 --- a/Test-DbaEndpoint.html +++ b/Test-DbaEndpoint.html @@ -552,8 +552,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -638,8 +638,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaIdentityUsage.html b/Test-DbaIdentityUsage.html index c33598b0..9549f155 100644 --- a/Test-DbaIdentityUsage.html +++ b/Test-DbaIdentityUsage.html @@ -517,7 +517,7 @@
                      Example: 3

                      Check identity seeds on server sql2008 for only the TestDB database, limiting results to 20% utilization of seed range or higher

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -546,8 +546,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -688,8 +688,8 @@
                      -ExcludeSystem
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaInstanceName.html b/Test-DbaInstanceName.html index 0b280a36..7c6b5e59 100644 --- a/Test-DbaInstanceName.html +++ b/Test-DbaInstanceName.html @@ -522,7 +522,7 @@
                      Example: 4
                      If a Rename is required, it will also show Updatable, and Reasons if the server name is not updatable.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -551,8 +551,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -609,8 +609,8 @@
                      -ExcludeSsrs
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaLastBackup.html b/Test-DbaLastBackup.html index da9946a5..61c0de7c 100644 --- a/Test-DbaLastBackup.html +++ b/Test-DbaLastBackup.html @@ -613,8 +613,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -699,7 +699,7 @@
                      -ExcludeDatabase
                      -Destination
                      -

                      The destination server to use to test the restore. By default, the Destination will be set to the source server +

                      The destination server to use to test the restore. By default, the Destination will be set to the source server
                      If a different Destination server is specified, you must ensure that the database backups are on a shared location

                      @@ -728,8 +728,8 @@
                      -Destination
                      -DestinationSqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -982,7 +982,7 @@
                      -CopyFile
                      -CopyPath
                      -

                      Specifies a path relative to the SQL Server to copy backups when CopyFile is specified. If not specified will use destination default backup location. If destination SQL Server is not local, admin +

                      Specifies a path relative to the SQL Server to copy backups when CopyFile is specified. If not specified will use destination default backup location. If destination SQL Server is not local, admin
                      UNC paths will be utilized for the copy.

                      @@ -1039,7 +1039,7 @@
                      -MaxSize
                      -DeviceType
                      -

                      Specifies a filter for backup sets based on DeviceTypes. Valid options are 'Disk','Permanent Disk Device', 'Tape', 'Permanent Tape Device','Pipe','Permanent Pipe Device','Virtual Device', in addition +

                      Specifies a filter for backup sets based on DeviceTypes. Valid options are 'Disk','Permanent Disk Device', 'Tape', 'Permanent Tape Device','Pipe','Permanent Pipe Device','Virtual Device', in addition
                      to custom integers for your own DeviceTypes.

                      @@ -1180,7 +1180,7 @@
                      -InputObject
                      -MaxTransferSize
                      -

                      Parameter to set the unit of transfer. Values must be a multiple of 64kb and a max of 4GB +

                      Parameter to set the unit of transfer. Values must be a multiple of 64kb and a max of 4GB
                      Parameter is used as passthrough for Restore-DbaDatabase.

                      @@ -1209,8 +1209,8 @@
                      -MaxTransferSize
                      -BufferCount
                      -

                      Number of I/O buffers to use to perform the operation. -Reference: https://msdn.microsoft.com/en-us/library/ms178615.aspx#data-transfer-options +

                      Number of I/O buffers to use to perform the operation.
                      +Reference: https://msdn.microsoft.com/en-us/library/ms178615.aspx#data-transfer-options
                      Parameter is used as passthrough for Restore-DbaDatabase.

                      @@ -1295,7 +1295,7 @@
                      -MaxDop
                      -ReuseSourceFolderStructure
                      -

                      By default, databases will be migrated to the destination Sql Server's default data and log directories. You can override this by specifying -ReuseSourceFolderStructure. +

                      By default, databases will be migrated to the destination Sql Server's default data and log directories. You can override this by specifying -ReuseSourceFolderStructure.
                      The same structure on the SOURCE will be kept exactly, so consider this if you're migrating between different versions and use part of Microsoft's default Sql structure (MSSql12.INSTANCE, etc)

                      @@ -1324,8 +1324,8 @@
                      -ReuseSourceFolderStructure
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaLinkedServerConnection.html b/Test-DbaLinkedServerConnection.html index 88673579..31a16401 100644 --- a/Test-DbaLinkedServerConnection.html +++ b/Test-DbaLinkedServerConnection.html @@ -523,7 +523,7 @@
                      Example: 5

                      Test all Linked Servers for the SQL Server instances sql2016, sql2014 and sql2012

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -552,8 +552,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -582,8 +582,8 @@
                      -SqlCredential
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaLoginPassword.html b/Test-DbaLoginPassword.html index 8006c34f..6c7df493 100644 --- a/Test-DbaLoginPassword.html +++ b/Test-DbaLoginPassword.html @@ -487,7 +487,7 @@

                      Test-DbaLoginPassword

                      Synopsis

                      Test-DbaLoginPassword finds any logins on SQL instance that are SQL Logins and have a password that is either null or same as the login

                      Description

                      -

                      The purpose of this function is to find SQL Server logins that have no password or the same password as login. You can add your own password to check for or add them to a csv file. +

                      The purpose of this function is to find SQL Server logins that have no password or the same password as login. You can add your own password to check for or add them to a csv file.
                      By default it will test for empty password and the same password as username.

                      Syntax

                      Test-DbaLoginPassword
                      @@ -553,9 +553,9 @@ 
                      -SqlInstance
                      -SqlCredential
                      -

                      Allows you to login to servers using SQL Logins instead of Windows Authentication (AKA Integrated or Trusted). To use: -$scred = Get-Credential, then pass $scred object to the -SqlCredential parameter. -Windows Authentication will be used if SqlCredential is not specified. SQL Server does not accept Windows credentials being passed as credentials. +

                      Allows you to login to servers using SQL Logins instead of Windows Authentication (AKA Integrated or Trusted). To use:
                      +$scred = Get-Credential, then pass $scred object to the -SqlCredential parameter.
                      +Windows Authentication will be used if SqlCredential is not specified. SQL Server does not accept Windows credentials being passed as credentials.
                      To connect as a different Windows user, run PowerShell as that user.

                      @@ -668,8 +668,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaManagementObject.html b/Test-DbaManagementObject.html index 5c39987b..1eeb35c7 100644 --- a/Test-DbaManagementObject.html +++ b/Test-DbaManagementObject.html @@ -506,7 +506,7 @@
                      Example: 1

                      Returns True if the version exists, if it does not exist it will return False

                      Required Parameters

                      -VersionNumber
                      -

                      This is the specific version number you are looking for and the return will be True.

                      +

                      This is the specific version number you are looking for and the return will be True.

                      @@ -591,8 +591,8 @@
                      -Credential
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaMaxDop.html b/Test-DbaMaxDop.html index 025858ba..7a7f7b72 100644 --- a/Test-DbaMaxDop.html +++ b/Test-DbaMaxDop.html @@ -487,15 +487,15 @@

                      Test-DbaMaxDop

                      Synopsis

                      Displays information relating to SQL Server Max Degree of Parallelism setting. Works on SQL Server 2005-2016.

                      Description

                      -

                      Inspired by Sakthivel Chidambaram's post about SQL Server MAXDOP Calculator (https://blogs.msdn.microsoft.com/sqlsakthi/p/maxdop-calculator/), +

                      Inspired by Sakthivel Chidambaram's post about SQL Server MAXDOP Calculator (https://blogs.msdn.microsoft.com/sqlsakthi/p/maxdop-calculator/),
                      this script displays a SQL Server's: max dop configured, and the calculated recommendation.

                      For SQL Server 2016 shows:

                      • Instance max dop configured and the calculated recommendation
                      • max dop configured per database (new feature)
                      -

                      More info: -https://support.microsoft.com/en-us/kb/2806535 +

                      More info:
                      +https://support.microsoft.com/en-us/kb/2806535
                      https://blogs.msdn.microsoft.com/sqlsakthi/2012/05/23/wow-we-have-maxdop-calculator-for-sql-server-it-makes-my-job-easier/

                      These are just general recommendations for SQL Server and are a good starting point for setting the "max degree of parallelism" option.

                      Syntax

                      @@ -524,7 +524,7 @@
                      Example: 3
                      instance will be shown 'InstanceVersion', 'Database' and 'DatabaseMaxDop' columns.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -553,8 +553,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -583,8 +583,8 @@
                      -SqlCredential
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaMaxMemory.html b/Test-DbaMaxMemory.html index d7b5734c..c7c80961 100644 --- a/Test-DbaMaxMemory.html +++ b/Test-DbaMaxMemory.html @@ -515,7 +515,7 @@
                      Example: 3

                      Find all servers in CMS that have Max SQL memory set to higher than the total memory of the server (think 2147483647) and set it to recommended value.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -544,8 +544,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -602,8 +602,8 @@
                      -Credential
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaMigrationConstraint.html b/Test-DbaMigrationConstraint.html index b895565b..9358d5f5 100644 --- a/Test-DbaMigrationConstraint.html +++ b/Test-DbaMigrationConstraint.html @@ -487,10 +487,10 @@

                      Test-DbaMigrationConstraint

                      Synopsis

                      Show if you can migrate the database(s) between the servers.

                      Description

                      -

                      When you want to migrate from a higher edition to a lower one there are some features that can't be used. -This function will validate if you have any of this features in use and will report to you. +

                      When you want to migrate from a higher edition to a lower one there are some features that can't be used.
                      +This function will validate if you have any of this features in use and will report to you.
                      The validation will be made ONLY on on SQL Server 2008 or higher using the 'sys.dm_db_persisted_sku_features' dmv.

                      -

                      This function only validate SQL Server 2008 versions or higher. +

                      This function only validate SQL Server 2008 versions or higher.
                      The editions supported by this function are:

                      • Enterprise
                      • @@ -531,7 +531,7 @@
                        Example: 3

                        Only db1 database will be verified for features in use that can't be supported on the destination server.

                        Required Parameters

                        -Source
                        -

                        Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

                        +

                        Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2000 or higher.

                      @@ -559,7 +559,7 @@
                      -Source
                      -Destination
                      -

                      Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

                      +

                      Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2000 or higher.

                      @@ -588,8 +588,8 @@
                      -Destination

                      Optional Parameters

                      -SourceSqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -618,8 +618,8 @@
                      -SourceSqlCredential
                      -DestinationSqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -704,8 +704,8 @@
                      -ExcludeDatabase
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaNetworkLatency.html b/Test-DbaNetworkLatency.html index 506bd033..6e02f0cf 100644 --- a/Test-DbaNetworkLatency.html +++ b/Test-DbaNetworkLatency.html @@ -517,7 +517,7 @@
                      Example: 3

                      Tests the execution results return of "select top 10 * from otherdb.dbo.table" 10 times on sqlserver2014a, sqlcluster, and sqlserver using Windows credentials.

                      Required Parameters

                      -SqlInstance
                      -

                      The SQL Server you want to run the test on.

                      +

                      The SQL Server you want to run the test on.

                      @@ -546,8 +546,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -632,8 +632,8 @@
                      -Count
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaOptimizeForAdHoc.html b/Test-DbaOptimizeForAdHoc.html index 610f4e65..288a7a18 100644 --- a/Test-DbaOptimizeForAdHoc.html +++ b/Test-DbaOptimizeForAdHoc.html @@ -488,7 +488,7 @@

                      Synopsis

                      Displays information relating to SQL Server Optimize for AdHoc Workloads setting. Works on SQL Server 2008-2016.

                      Description

                      When this option is set, plan cache size is further reduced for single-use ad hoc OLTP workload.

                      -

                      More info: https://msdn.microsoft.com/en-us/library/cc645587.aspx +

                      More info: https://msdn.microsoft.com/en-us/library/cc645587.aspx
                      http://www.sqlservercentral.com/blogs/glennberry/2011/02/25/some-suggested-sql-server-2008-r2-instance-configuration-settings/

                      These are just general recommendations for SQL Server and are a good starting point for setting the "optimize for ad-hoc workloads" option.

                      Syntax

                      @@ -508,7 +508,7 @@
                      Example: 1

                      Validates whether Optimize for AdHoc Workloads setting is enabled for servers sql2008 and sqlserver2012.

                      Required Parameters

                      -SqlInstance
                      -

                      A collection of one or more SQL Server instance names to query.

                      +

                      A collection of one or more SQL Server instance names to query.

                      @@ -537,8 +537,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -567,7 +567,7 @@
                      -SqlCredential
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because
                      it basically disables advanced scripting. Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaPath.html b/Test-DbaPath.html index 12ccf0be..d590d7ef 100644 --- a/Test-DbaPath.html +++ b/Test-DbaPath.html @@ -511,7 +511,7 @@
                      Example: 2

                      Tests whether the service account running the "sqlcluster" SQL Server instance can access L:\MSAS12.MSSQLSERVER\OLAP. Logs into sqlcluster using SQL authentication.

                      Required Parameters

                      -SqlInstance
                      -

                      The SQL Server you want to run the test on.

                      +

                      The SQL Server you want to run the test on.

                      @@ -539,7 +539,7 @@
                      -SqlInstance
                      -Path
                      -

                      The Path to test. This can be a file or directory

                      +

                      The Path to test. This can be a file or directory

                      @@ -568,8 +568,8 @@
                      -Path

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -598,8 +598,8 @@
                      -SqlCredential
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaPowerPlan.html b/Test-DbaPowerPlan.html index d6151824..53d61ca5 100644 --- a/Test-DbaPowerPlan.html +++ b/Test-DbaPowerPlan.html @@ -487,11 +487,11 @@

                      Test-DbaPowerPlan

                      Synopsis

                      Checks the Power Plan settings for compliance with best practices, which recommend High Performance for SQL Server.

                      Description

                      -

                      Checks the Power Plan settings on a computer against best practices recommendations. +

                      Checks the Power Plan settings on a computer against best practices recommendations.
                      Each server's name, the active and the recommended Power Plan and an IsBestPractice field are returned.

                      If your organization uses a different Power Plan that is considered best practice, specify -PowerPlan.

                      -

                      References: -https://support.microsoft.com/en-us/kb/2207548 +

                      References:
                      +https://support.microsoft.com/en-us/kb/2207548
                      http://www.sqlskills.com/blogs/glenn/windows-power-plan-effects-on-newer-intel-processors/

                      Syntax

                      Test-DbaPowerPlan
                      @@ -523,7 +523,7 @@ 
                      Example: 4

                      Uses the Power Plan of oldserver as best practice and tests the Power Plan of newserver1 and newserver2 against that.

                      Required Parameters

                      -ComputerName
                      -

                      The server(s) to check Power Plan settings on.

                      +

                      The server(s) to check Power Plan settings on.

                      @@ -608,8 +608,8 @@
                      -PowerPlan
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaReplLatency.html b/Test-DbaReplLatency.html index 30723cd0..df46af40 100644 --- a/Test-DbaReplLatency.html +++ b/Test-DbaReplLatency.html @@ -488,9 +488,9 @@

                      Test-DbaReplLatency

                      Synopsis

                      Displays replication latency for all transactional publications for a server or database.

                      Description

                      -

                      Creates tracer tokens to determine latency between the publisher/distributor and the distributor/subscriber +

                      Creates tracer tokens to determine latency between the publisher/distributor and the distributor/subscriber
                      for all transactional publications for a server, database, or publication.

                      -

                      All replication commands need SQL Server Management Studio installed and are therefore currently not supported. +

                      All replication commands need SQL Server Management Studio installed and are therefore currently not supported.
                      Have a look at this issue to get more information: https://github.com/dataplat/dbatools/issues/7428

                      Syntax

                      Test-DbaReplLatency
                      @@ -522,7 +522,7 @@ 
                      Example: 3

                      Return replication latency for the TestDB_Pub publication for the TestDB database located on the server sql2008.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -579,8 +579,8 @@
                      -Database
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -637,7 +637,7 @@
                      -PublicationName
                      -TimeToLive
                      -

                      How long, in seconds, to wait for a tracer token to complete its journey from the publisher to the subscriber. +

                      How long, in seconds, to wait for a tracer token to complete its journey from the publisher to the subscriber.
                      If unspecified, all tracer tokens will take as long as they need to process results.

                      @@ -722,8 +722,8 @@
                      -DisplayTokenHistory
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaSpn.html b/Test-DbaSpn.html index b46673f7..e44610ec 100644 --- a/Test-DbaSpn.html +++ b/Test-DbaSpn.html @@ -485,7 +485,7 @@

                      Test-DbaSpn


                      Want to see the Bill Of Health for this command? Check out Test-DbaSpn.

                      Synopsis

                      -

                      Test-DbaSpn will determine what SPNs should be set for a given server (and any instances of SQL running on it) and return +

                      Test-DbaSpn will determine what SPNs should be set for a given server (and any instances of SQL running on it) and return
                      whether the SPNs are set or not.

                      Description

                      This function is designed to take in a server name(s) and attempt to determine required SPNs. It was initially written to mimic the (previously) broken functionality of the Microsoft Kerberos Configuration manager and SQL Server 2016.

                      @@ -523,7 +523,7 @@
                      Example: 3
                      It will then take each SPN it generates and query Active Directory to make sure the SPNs are set. Note that the credential you pass must have be a valid login with appropriate rights on the domain

                      Required Parameters

                      -ComputerName
                      -

                      The computer you want to discover any SQL Server instances on. This parameter is required.

                      +

                      The computer you want to discover any SQL Server instances on. This parameter is required.

                      @@ -580,8 +580,8 @@
                      -Credential
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaTempDbConfig.html b/Test-DbaTempDbConfig.html index 7f0cf92a..f7a1ca69 100644 --- a/Test-DbaTempDbConfig.html +++ b/Test-DbaTempDbConfig.html @@ -522,7 +522,7 @@
                      Example: 3

                      Checks tempdb configuration for a group of servers from SQL Server Central Management Server (CMS). Output includes all columns. Send output to GridView.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances. SQL Server 2005 and higher are supported.

                      +

                      The target SQL Server instance or instances. SQL Server 2005 and higher are supported.

                      @@ -551,8 +551,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -581,8 +581,8 @@
                      -SqlCredential
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Test-DbaWindowsLogin.html b/Test-DbaWindowsLogin.html index af1c37f0..7c245db6 100644 --- a/Test-DbaWindowsLogin.html +++ b/Test-DbaWindowsLogin.html @@ -550,8 +550,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -724,8 +724,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Uninstall-DbaSqlWatch.html b/Uninstall-DbaSqlWatch.html index 18f9c71f..af5c54fd 100644 --- a/Uninstall-DbaSqlWatch.html +++ b/Uninstall-DbaSqlWatch.html @@ -508,7 +508,7 @@
                      Example: 1

                      Deletes all user objects, agent jobs, and historical data associated with SqlWatch from the master database.

                      Required Parameters

                      -SqlInstance
                      -

                      SQL Server name or SMO object representing the SQL Server to connect to.

                      +

                      SQL Server name or SMO object representing the SQL Server to connect to.

                      @@ -537,8 +537,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -595,8 +595,8 @@
                      -Database
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Unregister-DbatoolsConfig.html b/Unregister-DbatoolsConfig.html index 48e2a415..8e268614 100644 --- a/Unregister-DbatoolsConfig.html +++ b/Unregister-DbatoolsConfig.html @@ -487,7 +487,7 @@

                      Unregister-DbatoolsConfig

                      Synopsis

                      Removes registered configuration settings.

                      Description

                      -

                      Removes registered configuration settings. +

                      Removes registered configuration settings.
                      This function can be used to remove settings that have been persisted for either user or computer.

                      Note: This command has no effect on configuration settings currently in memory.

                      Syntax

                      @@ -522,7 +522,7 @@
                      Example: 3

                      Unregisters all configuration settings for the module MyModule.

                      Required Parameters

                      -Module
                      -

                      The module, amongst which settings should be unregistered.

                      +

                      The module, amongst which settings should be unregistered.

                      @@ -607,7 +607,7 @@
                      -FullName
                      -Name
                      -

                      The name of the setting to unregister. +

                      The name of the setting to unregister.
                      For use together with the module parameter, to limit the amount of settings that are unregistered.

                      @@ -636,8 +636,8 @@
                      -Name
                      -Scope
                      -

                      Settings can be set to either default or enforced, for user or the entire computer. -By default, only DefaultSettings for the user are unregistered. +

                      Settings can be set to either default or enforced, for user or the entire computer.
                      +By default, only DefaultSettings for the user are unregistered.
                      Use this parameter to choose the actual scope for the command to process.

                      diff --git a/Update-DbaBuildReference.html b/Update-DbaBuildReference.html index 06e30755..80feb008 100644 --- a/Update-DbaBuildReference.html +++ b/Update-DbaBuildReference.html @@ -487,8 +487,8 @@

                      Update-DbaBuildReference

                      Synopsis

                      Updates the local reference looking online for the most up to date.

                      Description

                      -

                      This function updates the local json files containing all the infos about SQL builds. -It uses the setting 'assets.sqlbuildreference' to fetch it. +

                      This function updates the local json files containing all the infos about SQL builds.
                      +It uses the setting 'assets.sqlbuildreference' to fetch it.
                      To see your current setting, use Get-DbatoolsConfigValue -Name 'assets.sqlbuildreference'

                      Syntax

                      Update-DbaBuildReference
                      @@ -538,8 +538,8 @@ 
                      -LocalFile
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Update-DbaInstance.html b/Update-DbaInstance.html index 3c0bb98a..f04d95a1 100644 --- a/Update-DbaInstance.html +++ b/Update-DbaInstance.html @@ -487,7 +487,7 @@

                      Update-DbaInstance

                      Synopsis

                      Invokes installation of SQL Server Service Packs and Cumulative Updates on local and remote servers.

                      Description

                      -

                      Starts an automated process of updating SQL Server installation to a specific version defined in the parameters. +

                      Starts an automated process of updating SQL Server installation to a specific version defined in the parameters.
                      The command will:

                      • Search for SQL Server installations in a remote registry
                      • @@ -501,9 +501,9 @@

                        Description

                      • Repeat for each consequent KB and computer

                      The impact of this function is set to High, if you don't want to receive interactive prompts, set -Confirm to $false.

                      -

                      When using CredSSP authentication, this function will try to configure CredSSP authentication for PowerShell Remoting sessions. -If this is not desired (e.g.: CredSSP authentication is managed externally, or is already configured appropriately,) -it can be disabled by setting the dbatools configuration option 'commands.initialize-credssp.bypass' value to $true. +

                      When using CredSSP authentication, this function will try to configure CredSSP authentication for PowerShell Remoting sessions.
                      +If this is not desired (e.g.: CredSSP authentication is managed externally, or is already configured appropriately,)
                      +it can be disabled by setting the dbatools configuration option 'commands.initialize-credssp.bypass' value to $true.
                      To be able to configure CredSSP, the command needs to be run in an elevated PowerShell session.

                      Always backup databases and configurations prior to upgrade.

                      Syntax

                      @@ -529,7 +529,8 @@

                      Syntax

                      Update-DbaInstance [[-ComputerName] <DbaInstanceParameter[]>] - [-Credential <PSCredential>] -KB <String[]> + [-Credential <PSCredential>] + -KB <String[]> [-InstanceName <String>] [-Path <String[]>] [-Restart] @@ -600,7 +601,7 @@
                      Example: 8
                      Does not prompt for confirmation.

                      Required Parameters

                      -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 of a string KBXXXXXXX.

                      @@ -657,9 +658,9 @@
                      -ComputerName
                      -Credential
                      -

                      Windows Credential with permission to log on to the remote server. -Must be specified for any remote connection if update Repository is located on a network folder. -Authentication will default to CredSSP if -Credential is used. +

                      Windows Credential with permission to log on to the remote server.
                      +Must be specified for any remote connection if update Repository is located on a network folder.
                      +Authentication will default to CredSSP if -Credential is used.
                      For CredSSP see also additional information in DESCRIPTION.

                      @@ -688,13 +689,13 @@
                      -Credential
                      -Version
                      -

                      A target version of the installation you want to reach. If not specified, a latest available version would be used by default. -Can be defined using the following general pattern: . -Any part of the pattern can be omitted if needed: -2008R2SP1 - will update SQL 2008R2 to SP1 -2016CU3 - will update SQL 2016 to CU3 of current Service Pack installed -SP0CU3 - will update all existing SQL Server versions to RTM CU3 without installing any service packs -SP1CU7 - will update all existing SQL Server versions to SP1 and then (after restart if -Restart is specified) to SP1CU7 +

                      A target version of the installation you want to reach. If not specified, a latest available version would be used by default.
                      +Can be defined using the following general pattern: .
                      +Any part of the pattern can be omitted if needed:
                      +2008R2SP1 - will update SQL 2008R2 to SP1
                      +2016CU3 - will update SQL 2016 to CU3 of current Service Pack installed
                      +SP0CU3 - will update all existing SQL Server versions to RTM CU3 without installing any service packs
                      +SP1CU7 - will update all existing SQL Server versions to SP1 and then (after restart if -Restart is specified) to SP1CU7
                      CU7 - will update all existing SQL Server versions to CU7 of current Service Pack installed

                      @@ -723,8 +724,8 @@
                      -Version
                      -Type
                      -

                      Type of the update: All | ServicePack | CumulativeUpdate. -Default: All +

                      Type of the update: All | ServicePack | CumulativeUpdate.
                      +Default: All
                      Use -Version to limit upgrade to a certain Major version of SQL Server.

                      @@ -785,10 +786,10 @@
                      -InstanceName
                      -Path
                      -

                      Path to the folder(s) with SQL Server patches downloaded. It will be scanned recursively for available patches. -Path should be available from both server with SQL Server installation and client that runs the command. -All file names should match the pattern used by Microsoft: SQLServer####-KB###-x##*.exe -If a file is missing in the repository, the installation will fail. +

                      Path to the folder(s) with SQL Server patches downloaded. It will be scanned recursively for available patches.
                      +Path should be available from both server with SQL Server installation and client that runs the command.
                      +All file names should match the pattern used by Microsoft: SQLServer####-KB###-x##*.exe
                      +If a file is missing in the repository, the installation will fail.
                      Consider setting the following configuration if you want to omit this parameter: Set-DbatoolsConfig -Name Path.SQLServerUpdates -Value '\\path\to\updates'

                      @@ -817,7 +818,7 @@
                      -Path
                      -Restart
                      -

                      Restart computer automatically after a successful installation of a patch and wait until it comes back online. +

                      Restart computer automatically after a successful installation of a patch and wait until it comes back online.
                      Using this parameter is the only way to chain-install more than 1 patch on a computer, since every single patch will require a restart of said computer.

                      @@ -874,7 +875,7 @@
                      -Continue
                      -Throttle
                      -

                      Maximum number of computers updated in parallel. Once reached, the update operations will queue up. +

                      Maximum number of computers updated in parallel. Once reached, the update operations will queue up.
                      Default: 50

                      @@ -903,14 +904,14 @@
                      -Throttle
                      -Authentication
                      -

                      Chooses an authentication protocol for remote connections. -Allowed values: 'Default', 'Basic', 'Negotiate', 'NegotiateWithImplicitCredential', 'Credssp', 'Digest', 'Kerberos'. -If the protocol fails to establish a connection and explicit -Credentials were used, a failback authentication method would be attempted that configures PSSessionConfiguration -on the remote machine. This method, however, is considered insecure and would, therefore, prompt an additional confirmation when used. +

                      Chooses an authentication protocol for remote connections.
                      +Allowed values: 'Default', 'Basic', 'Negotiate', 'NegotiateWithImplicitCredential', 'Credssp', 'Digest', 'Kerberos'.
                      +If the protocol fails to establish a connection and explicit -Credentials were used, a failback authentication method would be attempted that configures PSSessionConfiguration
                      +on the remote machine. This method, however, is considered insecure and would, therefore, prompt an additional confirmation when used.
                      Defaults:

                      • CredSSP when -Credential is specified - due to the fact that repository Path is usually a network share and credentials need to be passed to the remote host to avoid the double-hop issue.
                      • -
                      • Default when -Credential is not specified. Will likely fail if a network path is specified. +
                      • Default when -Credential is not specified. Will likely fail if a network path is specified.
                        For CredSSP see also additional information in DESCRIPTION.
                      @@ -972,7 +973,7 @@
                      -ExtractPath
                      -ArgumentList
                      -

                      A list of extra arguments to pass to the execution file. Accepts one or more strings containing command line parameters. +

                      A list of extra arguments to pass to the execution file. Accepts one or more strings containing command line parameters.
                      Example: ... -ArgumentList "/SkipRules=RebootRequiredCheck", "/Q"

                      @@ -1001,8 +1002,8 @@
                      -ArgumentList
                      -Download
                      -

                      Download missing KBs to the first folder specified in the -Path parameter. -Files would be first downloaded to the local machine (TEMP folder), and then distributed onto remote machines if needed. +

                      Download missing KBs to the first folder specified in the -Path parameter.
                      +Files would be first downloaded to the local machine (TEMP folder), and then distributed onto remote machines if needed.
                      If the Path is a network Path, the files would be downloaded straight to the network folder and executed from there.

                      @@ -1059,8 +1060,8 @@
                      -NoPendingRenameCheck
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Update-DbaMaintenanceSolution.html b/Update-DbaMaintenanceSolution.html index 1c50ed8f..b1fede72 100644 --- a/Update-DbaMaintenanceSolution.html +++ b/Update-DbaMaintenanceSolution.html @@ -487,9 +487,9 @@

                      Update-DbaMaintenanceSolution

                      Synopsis

                      Download and Update SQL Server Maintenance Solution created by Ola Hallengren (https://ola.hallengren.com)

                      Description

                      -

                      This script will download and update the latest version of SQL Server Maintenance Solution created by Ola Hallengren. +

                      This script will download and update the latest version of SQL Server Maintenance Solution created by Ola Hallengren.
                      Only the stored procedure will be updated. All tables and jobs will stay untouched.

                      -

                      So this can only be used until a new version of the procedures need a new version of the tables or jobs. +

                      So this can only be used until a new version of the procedures need a new version of the tables or jobs.
                      In this case you have to completely reinstall the SQL Server Maintenance Solution with Install-DbaMaintenanceSolution.

                      Syntax

                      Update-DbaMaintenanceSolution
                      @@ -514,7 +514,7 @@ 
                      Example: 1

                      Updates Ola Hallengren's Solution objects on RES14224 in the DBA database.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance onto which the Maintenance Solution will be updated.

                      +

                      The target SQL Server instance onto which the Maintenance Solution will be updated.

                      @@ -543,8 +543,8 @@
                      -SqlInstance

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -601,7 +601,7 @@
                      -Database
                      -Solution
                      -

                      Specifies which portion of the Maintenance solution to update. Valid values are All (full solution), Backup, IntegrityCheck and IndexOptimize. +

                      Specifies which portion of the Maintenance solution to update. Valid values are All (full solution), Backup, IntegrityCheck and IndexOptimize.
                      Defaults to All, but only existing procedures will be replaced.

                      @@ -634,7 +634,7 @@
                      -Solution
                      -LocalFile
                      -

                      Specifies the path to a local file to install Ola's solution from. This should be the zip file as distributed by the maintainers. +

                      Specifies the path to a local file to install Ola's solution from. This should be the zip file as distributed by the maintainers.
                      If this parameter is not specified, the latest version will be downloaded from https://github.com/olahallengren/sql-server-maintenance-solution

                      @@ -691,8 +691,8 @@
                      -Force
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Update-DbaServiceAccount.html b/Update-DbaServiceAccount.html index 2147a0a2..49c0657e 100644 --- a/Update-DbaServiceAccount.html +++ b/Update-DbaServiceAccount.html @@ -505,7 +505,8 @@

                      Syntax

                      [<CommonParameters>] Update-DbaServiceAccount - [-Credential <PSCredential>] -InputObject <Object[]> + [-Credential <PSCredential>] + -InputObject <Object[]> [-Username <String>] [-ServiceCredential <PSCredential>] [-PreviousPassword <SecureString>] @@ -545,7 +546,7 @@
                      Example: 5
                      Will not restart, which means the changes will not go into effect, so you will still have to restart during your planned outage window.

                      Required Parameters

                      -InputObject
                      -

                      A collection of services. Basically, any object that has ComputerName and ServiceName properties. Can be piped from Get-DbaService.

                      +

                      A collection of services. Basically, any object that has ComputerName and ServiceName properties. Can be piped from Get-DbaService.

                      @@ -573,7 +574,7 @@
                      -InputObject
                      -ServiceName
                      -

                      A name of the service on which the action is performed. E.g. MSSQLSERVER or SqlAgent$INSTANCENAME

                      +

                      A name of the service on which the action is performed. E.g. MSSQLSERVER or SqlAgent$INSTANCENAME

                      @@ -658,9 +659,9 @@
                      -Credential
                      -Username
                      -

                      Username of the service account. Cannot be used with -ServiceCredential. For local service accounts use one of the following usernames omitting the -SecurePassword parameter: -LOCALSERVICE -NETWORKSERVICE +

                      Username of the service account. Cannot be used with -ServiceCredential. For local service accounts use one of the following usernames omitting the -SecurePassword parameter:
                      +LOCALSERVICE
                      +NETWORKSERVICE
                      LOCALSYSTEM

                      @@ -689,9 +690,9 @@
                      -Username
                      -ServiceCredential
                      -

                      Windows Credential object under which the service will be setup to run. Cannot be used with -Username. For local service accounts use one of the following usernames with empty password: -LOCALSERVICE -NETWORKSERVICE +

                      Windows Credential object under which the service will be setup to run. Cannot be used with -Username. For local service accounts use one of the following usernames with empty password:
                      +LOCALSERVICE
                      +NETWORKSERVICE
                      LOCALSYSTEM

                      @@ -776,7 +777,7 @@
                      -SecurePassword
                      -NoRestart
                      -

                      Do not immediately restart the service after changing the password. +

                      Do not immediately restart the service after changing the password.
                      Note that the changes will not go into effect until you restart the SQL Services

                      @@ -805,8 +806,8 @@
                      -NoRestart
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Update-Dbatools.html b/Update-Dbatools.html index eaf0371a..438ec043 100644 --- a/Update-Dbatools.html +++ b/Update-Dbatools.html @@ -567,8 +567,8 @@
                      -Cleanup
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Watch-DbaDbLogin.html b/Watch-DbaDbLogin.html index 1741243d..f43c795a 100644 --- a/Watch-DbaDbLogin.html +++ b/Watch-DbaDbLogin.html @@ -560,8 +560,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -730,8 +730,8 @@
                      -InputObject
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Watch-DbaXESession.html b/Watch-DbaXESession.html index eba798be..b16fc480 100644 --- a/Watch-DbaXESession.html +++ b/Watch-DbaXESession.html @@ -545,8 +545,8 @@
                      -SqlInstance
                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -659,8 +659,8 @@
                      -Raw
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      diff --git a/Write-DbaDbTableData.html b/Write-DbaDbTableData.html index 6d5870fa..c61058a7 100644 --- a/Write-DbaDbTableData.html +++ b/Write-DbaDbTableData.html @@ -492,7 +492,8 @@

                      Description

                      Syntax

                      Write-DbaDbTableData -SqlInstance <DbaInstanceParameter>
                           [-SqlCredential <PSCredential>]
                      -    [-Database <Object>] -InputObject <Object>
                      +    [-Database <Object>]
                      +    -InputObject <Object>
                           [-Table] <String>
                           [[-Schema] <String>]
                           [-BatchSize <Int32>]
                      @@ -574,7 +575,7 @@ 
                      Example: 8

                      The dataset column 'value1' is inserted into SQL column 'col1' and dataset column value2 is inserted into the SQL Column 'col2'. All other columns are ignored and therefore null or default values.

                      Required Parameters

                      -SqlInstance
                      -

                      The target SQL Server instance or instances.

                      +

                      The target SQL Server instance or instances.

                      @@ -602,14 +603,14 @@
                      -SqlInstance
                      -InputObject
                      -

                      This is the DataTable (or data row) to import to SQL Server. -It is very important to understand how different types of objects are beeing processed to get the best performance. -The best performance is achieved when using the DataSet data type. If the data to be imported are determined with Invoke-DbaQuery, the option "-As DataSet" should be used. Then all records are -imported in a single call of SqlBulkCopy. -Also the data type DataTable can lead to an import of all records in a single call of SqlBulkCopy. However, it should be noted that "$varWithDataTable | Write-DbaDbTableData" causes the pipeline to -convert the single object of type DataTable to a series of objects of type DataRow. These in turn lead to single calls of SqlBulkCopy per record, which negatively affects performance. This is also -the reason why the use of the DataRow data type is generally discouraged. -When using objects of type PSObject, these are first all combined into an internal object of type DataTable and then imported in a single call of SqlBulkCopy.

                      +

                      This is the DataTable (or data row) to import to SQL Server.
                      +It is very important to understand how different types of objects are beeing processed to get the best performance.
                      +The best performance is achieved when using the DataSet data type. If the data to be imported are determined with Invoke-DbaQuery, the option "-As DataSet" should be used. Then all records are
                      +imported in a single call of SqlBulkCopy.
                      +Also the data type DataTable can lead to an import of all records in a single call of SqlBulkCopy. However, it should be noted that "$varWithDataTable | Write-DbaDbTableData" causes the pipeline to
                      +convert the single object of type DataTable to a series of objects of type DataRow. These in turn lead to single calls of SqlBulkCopy per record, which negatively affects performance. This is also
                      +the reason why the use of the DataRow data type is generally discouraged.
                      +When using objects of type PSObject, these are first all combined into an internal object of type DataTable and then imported in a single call of SqlBulkCopy.

                      @@ -637,13 +638,13 @@
                      -InputObject
                      -Table
                      -

                      The table name to import data into. You can specify a one, two, or three part table name. If you specify a one or two part name, you must also use -Database. -If the table does not exist, you can use -AutoCreateTable to automatically create the table. The table will be created with sub-optimal data types such as nvarchar(max). -If the object has special characters please wrap them in square brackets [ ]. -Using dbo.First.Table will try to import to a table named 'Table' on schema 'First' and database 'dbo'. -The correct way to import to a table named 'First.Table' on schema 'dbo' is by passing dbo.[First].[Table]. -Any actual usage of the ] must be escaped by duplicating the ] character. -The correct way to import to a table Name] in schema Schema.Name is by passing [Schema.Name].[Name]]].

                      +

                      The table name to import data into. You can specify a one, two, or three part table name. If you specify a one or two part name, you must also use -Database.
                      +If the table does not exist, you can use -AutoCreateTable to automatically create the table. The table will be created with sub-optimal data types such as nvarchar(max).
                      +If the object has special characters please wrap them in square brackets [ ].
                      +Using dbo.First.Table will try to import to a table named 'Table' on schema 'First' and database 'dbo'.
                      +The correct way to import to a table named 'First.Table' on schema 'dbo' is by passing dbo.[First].[Table].
                      +Any actual usage of the ] must be escaped by duplicating the ] character.
                      +The correct way to import to a table Name] in schema Schema.Name is by passing [Schema.Name].[Name]]].

                      @@ -672,8 +673,8 @@
                      -Table

                      Optional Parameters

                      -SqlCredential
                      -

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). -Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. +

                      Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential).
                      +Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported.
                      For MFA support, please use Connect-DbaInstance.

                      @@ -870,7 +871,7 @@
                      -NoTableLock
                      -CheckConstraints
                      -

                      If this switch is enabled, the SqlBulkCopy option to process check constraints will be enabled. +

                      If this switch is enabled, the SqlBulkCopy option to process check constraints will be enabled.
                      Per Microsoft "Check constraints while data is being inserted. By default, constraints are not checked."

                      @@ -899,7 +900,7 @@
                      -CheckConstraints
                      -FireTriggers
                      -

                      If this switch is enabled, the SqlBulkCopy option to fire insert triggers will be enabled. +

                      If this switch is enabled, the SqlBulkCopy option to fire insert triggers will be enabled.
                      Per Microsoft "When specified, cause the server to fire the insert triggers for the rows being inserted into the Database."

                      @@ -928,7 +929,7 @@
                      -FireTriggers
                      -KeepIdentity
                      -

                      If this switch is enabled, the SqlBulkCopy option to preserve source identity values will be enabled. +

                      If this switch is enabled, the SqlBulkCopy option to preserve source identity values will be enabled.
                      Per Microsoft "Preserve source identity values. When not specified, identity values are assigned by the destination."

                      @@ -957,7 +958,7 @@
                      -KeepIdentity
                      -KeepNulls
                      -

                      If this switch is enabled, the SqlBulkCopy option to preserve NULL values will be enabled. +

                      If this switch is enabled, the SqlBulkCopy option to preserve NULL values will be enabled.
                      Per Microsoft "Preserve null values in the destination table regardless of the settings for default values. When not specified, null values are replaced by default values where applicable."

                      @@ -1070,8 +1071,8 @@
                      -ColumnMap
                      -EnableException
                      -

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. -This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. +

                      By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message.
                      +This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting.
                      Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch.

                      @@ -1100,7 +1101,7 @@
                      -EnableException
                      -UseDynamicStringLength
                      -

                      By default, all string columns will be NVARCHAR(MAX). +

                      By default, all string columns will be NVARCHAR(MAX).
                      If this switch is enabled, all columns will get the length specified by the column's MaxLength property (if specified).

                      diff --git a/assets/external.json b/assets/external.json index e1f6624e..ae57df15 100644 --- a/assets/external.json +++ b/assets/external.json @@ -1,5 +1,5 @@ { - "version": "2.1.15", + "version": "2.1.16", "external_links": [ { "name": "offline installs of dbatools", diff --git a/sitemap.xml b/sitemap.xml index 70553ba0..054e65e8 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -2,2786 +2,2786 @@ https://docs.dbatools.io/Add-DbaAgDatabase - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Add-DbaAgListener - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Add-DbaAgReplica - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Add-DbaComputerCertificate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Add-DbaDbMirrorMonitor - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Add-DbaDbRoleMember - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Add-DbaExtendedProperty - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Add-DbaPfDataCollectorCounter - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Add-DbaRegServer - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Add-DbaRegServerGroup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Add-DbaReplArticle - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Add-DbaServerRoleMember - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Backup-DbaComputerCertificate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Backup-DbaDatabase - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Backup-DbaDbCertificate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Backup-DbaDbMasterKey - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Backup-DbaServiceMasterKey - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Clear-DbaConnectionPool - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Clear-DbaLatchStatistics - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Clear-DbaPlanCache - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Clear-DbaWaitStatistics - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Connect-DbaInstance - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/ConvertTo-DbaDataTable - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/ConvertTo-DbaTimeline - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/ConvertTo-DbaXESession - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaAgentAlert - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaAgentJob - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaAgentJobCategory - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaAgentOperator - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaAgentProxy - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaAgentSchedule - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaAgentServer - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaBackupDevice - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaCredential - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaCustomError - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaDatabase - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaDataCollector - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaDbAssembly - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaDbCertificate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaDbMail - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaDbQueryStoreOption - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaDbTableData - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaDbViewData - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaEndpoint - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaInstanceAudit - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaInstanceAuditSpecification - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaInstanceTrigger - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaLinkedServer - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaLogin - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaPolicyManagement - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaRegServer - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaResourceGovernor - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaSpConfigure - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaSsisCatalog - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaStartupProcedure - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaSystemDbUserObject - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaXESession - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Copy-DbaXESessionTemplate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Disable-DbaAgHadr - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Disable-DbaDbEncryption - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Disable-DbaFilestream - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Disable-DbaForceNetworkEncryption - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Disable-DbaHideInstance - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Disable-DbaReplDistributor - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Disable-DbaReplPublishing - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Disable-DbaStartupProcedure - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Disable-DbaTraceFlag - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Disconnect-DbaInstance - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Dismount-DbaDatabase - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Enable-DbaAgHadr - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Enable-DbaDbEncryption - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Enable-DbaFilestream - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Enable-DbaForceNetworkEncryption - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Enable-DbaHideInstance - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Enable-DbaReplDistributor - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Enable-DbaReplPublishing - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Enable-DbaStartupProcedure - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Enable-DbaTraceFlag - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Expand-DbaDbLogFile - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Export-DbaBinaryFile - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Export-DbaCredential - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Export-DbaDacPackage - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Export-DbaDbRole - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Export-DbaDbTableData - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Export-DbaDiagnosticQuery - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Export-DbaExecutionPlan - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Export-DbaInstance - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Export-DbaLinkedServer - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Export-DbaLogin - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Export-DbaPfDataCollectorSetTemplate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Export-DbaRegServer - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Export-DbaReplServerSetting - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Export-DbaScript - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Export-DbaServerRole - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Export-DbaSpConfigure - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Export-DbaSysDbUserObject - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Export-DbatoolsConfig - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Export-DbaUser - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Export-DbaXECsv - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Export-DbaXESession - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Export-DbaXESessionTemplate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Find-DbaAgentJob - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Find-DbaBackup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Find-DbaCommand - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Find-DbaDatabase - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Find-DbaDbDisabledIndex - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Find-DbaDbDuplicateIndex - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Find-DbaDbGrowthEvent - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Find-DbaDbUnusedIndex - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Find-DbaInstance - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Find-DbaLoginInGroup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Find-DbaOrphanedFile - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Find-DbaSimilarTable - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Find-DbaStoredProcedure - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Find-DbaTrigger - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Find-DbaUserObject - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Find-DbaView - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Format-DbaBackupInformation - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaAgBackupHistory - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaAgDatabase - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaAgentAlert - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaAgentAlertCategory - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaAgentJob - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaAgentJobCategory - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaAgentJobHistory - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaAgentJobOutputFile - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaAgentJobStep - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaAgentLog - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaAgentOperator - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaAgentProxy - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaAgentSchedule - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaAgentServer - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaAgHadr - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaAgListener - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaAgReplica - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaAvailabilityGroup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaAvailableCollation - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaBackupDevice - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaBackupInformation - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaBinaryFileTable - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaBuild - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaClientAlias - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaClientProtocol - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaCmConnection - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaCmObject - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaComputerCertificate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaComputerSystem - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaConnectedInstance - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaConnection - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaCpuRingBuffer - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaCpuUsage - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaCredential - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaCustomError - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDatabase - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbAssembly - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbAsymmetricKey - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbBackupHistory - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbccHelp - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbccMemoryStatus - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbccProcCache - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbccSessionBuffer - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbccStatistic - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbccUserOption - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbCertificate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbCheckConstraint - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbCompatibility - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbCompression - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbDbccOpenTran - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbDetachedFileInfo - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbEncryption - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbEncryptionKey - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbExtentDiff - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbFeatureUsage - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbFile - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbFileGroup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbFileGrowth - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbFileMapping - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbForeignKey - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbIdentity - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbLogShipError - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbLogSpace - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbMail - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbMailAccount - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbMailConfig - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbMailHistory - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbMailLog - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbMailProfile - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbMailServer - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbMasterKey - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbMemoryUsage - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbMirror - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbMirrorMonitor - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbObjectTrigger - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbOrphanUser - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbPageInfo - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbPartitionFunction - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbPartitionScheme - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbQueryStoreOption - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbRecoveryModel - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbRestoreHistory - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbRole - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbRoleMember - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbSchema - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbSequence - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbServiceBrokerQueue - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbServiceBrokerService - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbSharePoint - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbSnapshot - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbSpace - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbState - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbStoredProcedure - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbSynonym - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbTable - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbTrigger - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbUdf - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbUser - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbUserDefinedTableType - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbView - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDbVirtualLogFile - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDefaultPath - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDependency - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDeprecatedFeature - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDiskSpace - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaDump - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaEndpoint - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaErrorLog - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaErrorLogConfig - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaEstimatedCompletionTime - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaExecutionPlan - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaExtendedProperty - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaExtendedProtection - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaExternalProcess - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaFeature - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaFile - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaFilestream - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaFirewallRule - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaForceNetworkEncryption - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaHelpIndex - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaHideInstance - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaInstalledPatch - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaInstanceAudit - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaInstanceAuditSpecification - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaInstanceInstallDate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaInstanceProperty - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaInstanceProtocol - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaInstanceTrigger - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaInstanceUserOption - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaIoLatency - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaKbUpdate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaLastBackup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaLastGoodCheckDb - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaLatchStatistic - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaLinkedServer - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaLinkedServerLogin - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaLocaleSetting - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaLogin - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaMaintenanceSolutionLog - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaManagementObject - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaMaxMemory - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaMemoryCondition - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaMemoryUsage - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaModule - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaMsdtc - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaNetworkActivity - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaNetworkCertificate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaNetworkConfiguration - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaOleDbProvider - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaOpenTransaction - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaOperatingSystem - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaPageFileSetting - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaPbmCategory - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaPbmCategorySubscription - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaPbmCondition - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaPbmObjectSet - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaPbmPolicy - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaPbmStore - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaPermission - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaPfAvailableCounter - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaPfDataCollector - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaPfDataCollectorCounter - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaPfDataCollectorCounterSample - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaPfDataCollectorSet - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaPfDataCollectorSetTemplate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaPlanCache - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaPowerPlan - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaPrivilege - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaProcess - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaProductKey - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaQueryExecutionTime - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaRandomizedDataset - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaRandomizedDatasetTemplate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaRandomizedType - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaRandomizedValue - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaRegistryRoot - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaRegServer - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaRegServerGroup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaRegServerStore - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaReplArticle - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaReplArticleColumn - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaReplDistributor - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaReplPublication - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaReplPublisher - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaReplServer - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaReplSubscription - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaResourceGovernor - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaRgClassifierFunction - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaRgResourcePool - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaRgWorkloadGroup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaRunningJob - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaSchemaChangeHistory - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaServerRole - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaServerRoleMember - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaService - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaSpConfigure - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaSpinLockStatistic - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaSpn - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaSsisEnvironmentVariable - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaSsisExecutionHistory - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaStartupParameter - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaStartupProcedure - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaSuspectPage - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaTcpPort - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaTempdbUsage - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbatoolsChangeLog - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbatoolsConfig - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbatoolsConfigValue - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbatoolsError - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbatoolsLog - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbatoolsPath - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaTopResourceUsage - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaTrace - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaTraceFlag - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaUptime - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaUserPermission - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaWaitingTask - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaWaitResource - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaWaitStatistic - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaWindowsLog - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaWsfcAvailableDisk - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaWsfcCluster - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaWsfcDisk - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaWsfcNetwork - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaWsfcNetworkInterface - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaWsfcNode - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaWsfcResource - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaWsfcResourceGroup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaWsfcResourceType - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaWsfcRole - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaWsfcSharedVolume - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaXEObject - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaXESession - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaXESessionTarget - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaXESessionTargetFile - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaXESessionTemplate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaXESmartTarget - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Get-DbaXEStore - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Grant-DbaAgPermission - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Import-Command - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Import-DbaBinaryFile - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Import-DbaCsv - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Import-DbaPfDataCollectorSetTemplate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Import-DbaRegServer - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Import-DbaSpConfigure - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Import-DbatoolsConfig - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Import-DbaXESessionTemplate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Install-DbaAgentAdminAlert - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Install-DbaDarlingData - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Install-DbaFirstResponderKit - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Install-DbaInstance - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Install-DbaMaintenanceSolution - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Install-DbaMultiTool - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Install-DbaSqlWatch - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Install-DbaWhoIsActive - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaAdvancedInstall - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaAdvancedRestore - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaAdvancedUpdate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaAgFailover - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaBalanceDataFiles - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaCycleErrorLog - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaDbccDropCleanBuffer - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaDbccFreeCache - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaDbClone - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaDbDataGenerator - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaDbDataMasking - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaDbDbccCheckConstraint - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaDbDbccCleanTable - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaDbDbccUpdateUsage - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaDbDecryptObject - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaDbLogShipping - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaDbLogShipRecovery - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaDbMirrorFailover - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaDbMirroring - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaDbPiiScan - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaDbShrink - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaDbTransfer - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaDbUpgrade - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaDiagnosticQuery - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaPfRelog - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaQuery - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbatoolsFormatter - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbatoolsRenameHelper - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaWhoIsActive - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Invoke-DbaXEReplay - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Join-DbaAvailabilityGroup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Join-DbaPath - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Measure-DbaBackupThroughput - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Measure-DbaDbVirtualLogFile - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Measure-DbaDiskSpaceRequirement - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Measure-DbatoolsImport - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Mount-DbaDatabase - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Move-DbaDbFile - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Move-DbaRegServer - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Move-DbaRegServerGroup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaAgentAlert - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaAgentAlertCategory - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaAgentJob - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaAgentJobCategory - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaAgentJobStep - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaAgentOperator - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaAgentProxy - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaAgentSchedule - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaAvailabilityGroup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaAzAccessToken - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaClientAlias - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaCmConnection - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaComputerCertificate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaComputerCertificateSigningRequest - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaConnectionString - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaConnectionStringBuilder - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaCredential - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaCustomError - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaDacOption - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaDacProfile - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaDatabase - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaDbAsymmetricKey - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaDbCertificate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaDbDataGeneratorConfig - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaDbEncryptionKey - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaDbFileGroup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaDbMailAccount - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaDbMailProfile - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaDbMaskingConfig - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaDbMasterKey - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaDbRole - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaDbSchema - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaDbSequence - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaDbSnapshot - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaDbSynonym - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaDbTable - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaDbTransfer - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaDbUser - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaDiagnosticAdsNotebook - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaDirectory - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaEndpoint - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaFirewallRule - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaLinkedServer - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaLinkedServerLogin - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaLogin - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaReplCreationScriptOptions - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaReplPublication - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaReplSubscription - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaRgResourcePool - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaRgWorkloadGroup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaScriptingOption - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaServerRole - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaServiceMasterKey - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaSqlParameter - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaSsisCatalog - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbatoolsSupportPackage - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaXESession - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaXESmartCsvWriter - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaXESmartEmail - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaXESmartQueryExec - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaXESmartReplay - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/New-DbaXESmartTableWriter - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Publish-DbaDacPackage - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Read-DbaAuditFile - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Read-DbaBackupHeader - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Read-DbaTraceFile - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Read-DbaTransactionLog - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Read-DbaXEFile - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Read-XEvent - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Register-DbatoolsConfig - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaAgDatabase - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaAgentAlert - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaAgentAlertCategory - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaAgentJob - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaAgentJobCategory - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaAgentJobStep - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaAgentOperator - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaAgentProxy - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaAgentSchedule - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaAgListener - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaAgReplica - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaAvailabilityGroup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaBackup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaClientAlias - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaCmConnection - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaComputerCertificate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaCredential - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaCustomError - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDatabase - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDatabaseSafely - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbAsymmetricKey - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbBackupRestoreHistory - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbCertificate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbCheckConstraint - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbData - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbEncryptionKey - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbFileGroup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbLogShipping - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbMailAccount - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbMailProfile - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbMasterKey - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbMirror - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbMirrorMonitor - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbOrphanUser - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbPartitionFunction - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbPartitionScheme - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbRole - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbRoleMember - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbSchema - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbSequence - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbSnapshot - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbSynonym - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbTable - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbTableData - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbUdf - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbUser - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaDbView - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaEndpoint - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaExtendedProperty - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaFirewallRule - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaLinkedServer - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaLinkedServerLogin - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaLogin - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaNetworkCertificate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaPfDataCollectorCounter - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaPfDataCollectorSet - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaRegServer - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaRegServerGroup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaReplArticle - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaReplPublication - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaReplSubscription - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaRgResourcePool - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaRgWorkloadGroup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaServerRole - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaServerRoleMember - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaSpn - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaTrace - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaXESession - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Remove-DbaXESmartTarget - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Rename-DbaDatabase - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Rename-DbaLogin - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Repair-DbaDbMirror - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Repair-DbaDbOrphanUser - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Repair-DbaInstanceName - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Reset-DbaAdmin - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Reset-DbatoolsConfig - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Resolve-DbaNetworkName - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Resolve-DbaPath - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Restart-DbaService - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Restore-DbaDatabase - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Restore-DbaDbCertificate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Restore-DbaDbSnapshot - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Resume-DbaAgDbDataMovement - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Revoke-DbaAgPermission - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Save-DbaCommunitySoftware - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Save-DbaDiagnosticQueryScript - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Save-DbaKbUpdate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Select-DbaBackupInformation - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Select-DbaDbSequenceNextValue - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Select-DbaObject - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaAgentAlert - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaAgentJob - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaAgentJobCategory - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaAgentJobOutputFile - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaAgentJobOwner - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaAgentJobStep - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaAgentOperator - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaAgentSchedule - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaAgentServer - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaAgListener - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaAgReplica - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaAvailabilityGroup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaCmConnection - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaDbCompatibility - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaDbCompression - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaDbFileGroup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaDbFileGrowth - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaDbIdentity - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaDbMirror - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaDbOwner - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaDbQueryStoreOption - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaDbRecoveryModel - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaDbSchema - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaDbSequence - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaDbState - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaDefaultPath - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaEndpoint - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaErrorLogConfig - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaExtendedProperty - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaExtendedProtection - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaLogin - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaMaxDop - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaMaxMemory - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaNetworkCertificate - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaNetworkConfiguration - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaPowerPlan - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaPrivilege - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaResourceGovernor - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaRgResourcePool - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaRgWorkloadGroup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaSpConfigure - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaSpn - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaStartupParameter - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaTcpPort - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbaTempDbConfig - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbatoolsConfig - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbatoolsInsecureConnection - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Set-DbatoolsPath - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Show-DbaDbList - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Show-DbaInstanceFileSystem - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Start-DbaAgentJob - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Start-DbaDbEncryption - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Start-DbaEndpoint - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Start-DbaMigration - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Start-DbaPfDataCollectorSet - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Start-DbaService - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Start-DbaTrace - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Start-DbaXESession - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Start-DbaXESmartTarget - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Stop-DbaAgentJob - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Stop-DbaDbEncryption - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Stop-DbaEndpoint - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Stop-DbaExternalProcess - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Stop-DbaPfDataCollectorSet - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Stop-DbaProcess - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Stop-DbaService - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Stop-DbaTrace - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Stop-DbaXESession - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Stop-DbaXESmartTarget - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Suspend-DbaAgDbDataMovement - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Sync-DbaAvailabilityGroup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Sync-DbaLoginPermission - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaAgentJobOwner - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaAgSpn - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaAvailabilityGroup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaBackupEncrypted - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaBackupInformation - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaBuild - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaCmConnection - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaComputerCertificateExpiration - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaConnection - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaConnectionAuthScheme - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaDbCollation - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaDbCompatibility - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaDbCompression - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaDbDataGeneratorConfig - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaDbDataMaskingConfig - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaDbLogShipStatus - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaDbOwner - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaDbQueryStore - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaDbRecoveryModel - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaDeprecatedFeature - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaDiskAlignment - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaDiskAllocation - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaDiskSpeed - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaEndpoint - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaIdentityUsage - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaInstanceName - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaLastBackup - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaLinkedServerConnection - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaLoginPassword - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaManagementObject - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaMaxDop - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaMaxMemory - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaMigrationConstraint - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaNetworkLatency - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaOptimizeForAdHoc - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaPath - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaPowerPlan - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaReplLatency - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaSpn - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaTempDbConfig - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Test-DbaWindowsLogin - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Uninstall-DbaSqlWatch - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Unregister-DbatoolsConfig - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Update-DbaBuildReference - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Update-DbaInstance - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Update-DbaMaintenanceSolution - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Update-DbaServiceAccount - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Update-Dbatools - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Watch-DbaDbLogin - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Watch-DbaXESession - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z https://docs.dbatools.io/Write-DbaDbTableData - 2024-05-22T20:03:27Z + 2024-06-03T20:39:19Z \ No newline at end of file