Skip to content

Commit

Permalink
0.9.106
Browse files Browse the repository at this point in the history
  • Loading branch information
potatoqualitee committed Nov 26, 2017
1 parent c53e0a2 commit 5dd10fe
Show file tree
Hide file tree
Showing 7 changed files with 50 additions and 46 deletions.
10 changes: 5 additions & 5 deletions bin/dbatools-index.json
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@
},
{
"CommandName": "Export-DbaExecutionPlan",
"Description": "Exports execution plans to disk. Can pipe from Export-DbaExecutionPlan \n\t\nThanks to \n\thttps://www.simple-talk.com/sql/t-sql-programming/dmvs-for-query-plan-metadata/\n\tand\n\thttp://www.scarydba.com/2017/02/13/export-plans-cache-sqlplan-file/\nfor the idea and query.",
"Description": "Exports execution plans to disk. Can pipe from Export-DbaExecutionPlan\n\nThanks to\n\thttps://www.simple-talk.com/sql/t-sql-programming/dmvs-for-query-plan-metadata/\n\tand\n\thttp://www.scarydba.com/2017/02/13/export-plans-cache-sqlplan-file/\nfor the idea and query.",
"Tags": "Performance",
"Synopsis": "Exports execution plans to disk.",
"Name": "Export-DbaExecutionPlan",
Expand Down Expand Up @@ -949,10 +949,10 @@
{
"CommandName": "Get-DbaBackupInformation",
"Description": "Upon bein passed a list of potential backups files this command will scan the files, select those that contain SQL Server\nbackup sets. It will then filter those files down to a set \n\nThe function defaults to working on a remote instance. This means that all paths passed in must be relative to the remote instance.\nXpDirTree will be used to perform the file scans\n \nVarious means can be used to pass in a list of files to be considered. The default is to non recursively scan the folder\npassed in.",
"Synopsis": "Restores a SQL Server Database from a set of backupfiles",
"Synopsis": "Scan backup files and creates a set, compatible with Restore-DbaDatabase",
"Name": "Get-DbaBackupInformation",
"Links": null,
"Examples": "\r\n-------------------------- EXAMPLE 1 --------------------------\r\n\r\nPS C:\\\u003eGet-DbaBackupInformation -SqlInstance Server1 -Path c:\\backups\\ -DirectoryRecurse\r\n\r\nWill use the Server1 instance to recursively read all backup files under c:\\backups, and return a dbatool BackupHistory \r\nobject\r\n\r\n\r\n\r\n\r\n-------------------------- EXAMPLE 2 --------------------------\r\n\r\nPS C:\\\u003eGet-DbaBackupInformation -SqlInstance Server1 -Path c:\\backups\\ -DirectoryRecurse -ExportPath \r\nc:\\store\\BackupHistory.xml\r\n\r\n#Copy the file c:\\store\\BackupHistory.xml to another machine via preferred technique, and the on 2nd machine:\r\n\r\nGet-DbaBackupInformation -Import -Path c:\\store\\BackupHistory.xml | Restore-DbaDatabase -SqlInstance Server2 \r\n-TrustDbBackupHistory\r\n\r\nThis allows you to move backup history across servers, or to preserve backuphistory even after the original server has \r\nbeen purged\r\n\r\n\r\n\r\n\r\n-------------------------- EXAMPLE 3 --------------------------\r\n\r\nPS C:\\\u003eGet-DbaBackupInformation -SqlInstance Server1 -Path c:\\backups\\ -DirectoryRecurse -ExportPath \r\nc:\\store\\BackupHistory.xml -PassThru !\r\n\r\nRestore-DbaDatabse -SqlInstance Server2 -TrustDbBackupHistory\r\n\r\nIn this example we gather backup information, export it to an xml file, and then pass it on through to \r\nRestore-DbaDatabase\r\nThis allows us to repeat the restore without having to scan all the backup files again\r\n\r\n\r\n\r\n\r\n-------------------------- EXAMPLE 4 --------------------------\r\n\r\nPS C:\\\u003eGet-ChildItem c:\\backups\\ -recurse -files |\r\n\r\nWhere {$_.extension -in (\u0027.bak\u0027,\u0027.trn\u0027) -and $_.LastWriteTime -gt (get-date).AddMonths(-1)} |\r\n Get-DbaBackupInformation -SqlInstance Server1 -ExportPath c:\\backupHistory.xml\r\n\r\nThis lets you keep a record of all backup history from the last month on hand to speed up refreshes\r\n\r\n\r\n\r\n\r\n-------------------------- EXAMPLE 5 --------------------------\r\n\r\nPS C:\\\u003e$Backups = Get-DbaBackupInformation -SqlInstance Server1 -Path \\\\network\\backupps\r\n\r\n$Backups += Get-DbaBackupInformation -SqlInstance Server2 -NoXpDirTree -Path c:\\backups\r\n\r\nScan the unc folder \\\\network\\backups with Server1, and then scan the C:\\backups folder on \r\nServer2 not using xp_dirtree, adding the results to the first set.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n"
"Examples": "\r\n-------------------------- EXAMPLE 1 --------------------------\r\n\r\nPS C:\\\u003eGet-DbaBackupInformation -SqlInstance Server1 -Path c:\\backups\\ -DirectoryRecurse\r\n\r\nWill use the Server1 instance to recursively read all backup files under c:\\backups, and return a dbatool BackupHistory \r\nobject\r\n\r\n\r\n\r\n\r\n-------------------------- EXAMPLE 2 --------------------------\r\n\r\nPS C:\\\u003eGet-DbaBackupInformation -SqlInstance Server1 -Path c:\\backups\\ -DirectoryRecurse -ExportPath \r\nc:\\store\\BackupHistory.xml\r\n\r\n#Copy the file c:\\store\\BackupHistory.xml to another machine via preferred technique, and the on 2nd machine:\r\n\r\nGet-DbaBackupInformation -Import -Path c:\\store\\BackupHistory.xml | Restore-DbaDatabase -SqlInstance Server2 \r\n-TrustDbBackupHistory\r\n\r\nThis allows you to move backup history across servers, or to preserve backuphistory even after the original server has \r\nbeen purged\r\n\r\n\r\n\r\n\r\n-------------------------- EXAMPLE 3 --------------------------\r\n\r\nPS C:\\\u003eGet-DbaBackupInformation -SqlInstance Server1 -Path c:\\backups\\ -DirectoryRecurse -ExportPath \r\nc:\\store\\BackupHistory.xml -PassThru |\r\n\r\nRestore-DbaDatabase -SqlInstance Server2 -TrustDbBackupHistory\r\n\r\nIn this example we gather backup information, export it to an xml file, and then pass it on through to \r\nRestore-DbaDatabase\r\nThis allows us to repeat the restore without having to scan all the backup files again\r\n\r\n\r\n\r\n\r\n-------------------------- EXAMPLE 4 --------------------------\r\n\r\nPS C:\\\u003eGet-ChildItem c:\\backups\\ -recurse -files |\r\n\r\nWhere {$_.extension -in (\u0027.bak\u0027,\u0027.trn\u0027) -and $_.LastWriteTime -gt (get-date).AddMonths(-1)} |\r\n Get-DbaBackupInformation -SqlInstance Server1 -ExportPath c:\\backupHistory.xml\r\n\r\nThis lets you keep a record of all backup history from the last month on hand to speed up refreshes\r\n\r\n\r\n\r\n\r\n-------------------------- EXAMPLE 5 --------------------------\r\n\r\nPS C:\\\u003e$Backups = Get-DbaBackupInformation -SqlInstance Server1 -Path \\\\network\\backups\r\n\r\n$Backups += Get-DbaBackupInformation -SqlInstance Server2 -NoXpDirTree -Path c:\\backups\r\n\r\nScan the unc folder \\\\network\\backups with Server1, and then scan the C:\\backups folder on \r\nServer2 not using xp_dirtree, adding the results to the first set.\r\n\r\n\r\n\r\n\r\n-------------------------- EXAMPLE 6 --------------------------\r\n\r\nPS C:\\\u003e$Backups = Get-DbaBackupInformation -SqlInstance Server1 -Path \\\\network\\backups -MaintenanceSolution\r\n\r\nWhen MaintenanceSolution is indicated we know we are dealing with the output from Ola Hallengren\u0027s backup scripts. So \r\nwe make sure that a FULL folder exists in the first level of Path, if not we shortcut scanning all the files as we have \r\nnothing to work with\r\n\r\n\r\n\r\n\r\n-------------------------- EXAMPLE 7 --------------------------\r\n\r\nPS C:\\\u003e$Backups = Get-DbaBackupInformation -SqlInstance Server1 -Path \\\\network\\backups -MaintenanceSolution \r\n-IgnoreLogBackup\r\n\r\nAs we know we are dealing with an Ola Hallengren style backup folder from the MaintenanceSolution switch, when \r\nIgnoreLogBackup is also included we can ignore the LOG folder to skip any scanning of log backups. Note this also means \r\nthen WON\u0027T be restored\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n"
},
{
"CommandName": "Get-DbaClientAlias",
Expand Down Expand Up @@ -2284,7 +2284,7 @@
"Synopsis": "New-DbaAgentSchedule creates a new schedule in the msdb database.",
"Name": "New-DbaAgentSchedule",
"Links": "https://dbatools.io/New-DbaAgentSchedule",
"Examples": "\r\n-------------------------- EXAMPLE 1 --------------------------\r\n\r\nPS C:\\\u003eNew-DbaAgentSchedule -SqlInstance localhost\\SQL2016 -Schedule daily -FrequencyType Daily -FrequencyInterval \r\nEveryday -Force\r\n\r\nCreates a schedule with a daily frequency every day. It also assumes default values for the start date, start time, end \r\ndate and end time.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n"
"Examples": "\r\n-------------------------- EXAMPLE 1 --------------------------\r\n\r\nPS C:\\\u003eNew-DbaAgentSchedule -SqlInstance localhost\\SQL2016 -Schedule daily -FrequencyType Daily -FrequencyInterval \r\nEveryday -Force\r\n\r\nCreates a schedule with a daily frequency every day. It assumes default values for the start date, start time, end date \r\nand end time due to -Force.\r\n\r\n\r\n\r\n\r\n-------------------------- EXAMPLE 2 --------------------------\r\n\r\nPS C:\\\u003eNew-DbaAgentSchedule -SqlInstance sstad-pc -Schedule MonthlyTest -FrequencyType Monthly -FrequencyInterval 10 \r\n-FrequencyRecurrenceFactor 1 -Force\r\n\r\nCreate a schedule with a monhtly frequency occuring every 10th of the month. It assumes default values for the start \r\ndate, start time, end date and end time due to -Force.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n"
},
{
"CommandName": "New-DbaClientAlias",
Expand Down Expand Up @@ -2708,7 +2708,7 @@
},
{
"CommandName": "Repair-DbaServerName",
"Description": "When a SQL Server\u0027s host OS is renamed, the SQL Server should be as well. This helps with Availability Groups and Kerberos.\n\nThis command renames @@SERVERNAME to match with the Windows name. The new name is automatically determined. It does not matter if you use an alias to connect to the SQL instance.\n\t\t\nIf the automatically determined new name matches the old name, the command will not run.\n\t\nhttps://www.mssqltips.com/sqlservertip/2525/steps-to-change-the-server-name-for-a-sql-server-machine/",
"Description": "When a SQL Server\u0027s host OS is renamed, the SQL Server should be as well. This helps with Availability Groups and Kerberos.\n\nThis command renames @@SERVERNAME to match with the Windows name. The new name is automatically determined. It does not matter if you use an alias to connect to the SQL instance.\n\nIf the automatically determined new name matches the old name, the command will not run.\n\nhttps://www.mssqltips.com/sqlservertip/2525/steps-to-change-the-server-name-for-a-sql-server-machine/",
"Tags": "SPN",
"Synopsis": "Renames @@SERVERNAME to match with the Windows name.",
"Name": "Repair-DbaServerName",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

-- SQL Server 2016 Diagnostic Information Queries
-- Glenn Berry
-- Last Modified: November 15, 2017
-- Last Modified: November 22, 2017
-- https://www.sqlskills.com/blogs/glenn/
-- http://sqlserverperformance.wordpress.com/
-- Twitter: GlennAlanBerry
Expand Down Expand Up @@ -73,6 +73,7 @@ SELECT @@SERVERNAME AS [Server Name], @@VERSION AS [SQL Server and OS Version In
-- 13.0.2204.0 RTM CU6 5/15/2017 ----> 13.0.4435.0 SP1 CU3 5/15/2017
-- 13.0.2210.0 RTM CU7 8/8/2017 ----> 13.0.4446.0 SP1 CU4 8/8/2017
-- 13.0.2213.0 RTM CU8 9/18/2017 ----> 13.0.4451.0 SP1 CU5 9/18/2017
-- 13.0.2216.0 RTM CU9 11/21/2017 ----> 13.0.4457.0 SP1 CU6 11/21/2017


-- How to determine the version, edition and update level of SQL Server and its components
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

-- SQL Server 2017 Diagnostic Information Queries
-- Glenn Berry
-- Last Modified: November 15, 2017
-- Last Modified: November 22, 2017
-- https://www.sqlskills.com/blogs/glenn/
-- http://sqlserverperformance.wordpress.com/
-- Twitter: GlennAlanBerry
Expand Down Expand Up @@ -86,6 +86,9 @@ SELECT @@SERVERNAME AS [Server Name], @@VERSION AS [SQL Server and OS Version In
-- Announcing the Modern Servicing Model for SQL Server
-- https://blogs.msdn.microsoft.com/sqlreleaseservices/announcing-the-modern-servicing-model-for-sql-server/

-- SQL Server Service Packs are discontinued starting from SQL Server 2017
-- https://support.microsoft.com/en-us/help/4041553

-- Update Center for Microsoft SQL Server
-- http://bit.ly/2pZptuQ

Expand Down
36 changes: 18 additions & 18 deletions dbatools.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
RootModule = 'dbatools.psm1'

# Version number of this module.
ModuleVersion = '0.9.105'
ModuleVersion = '0.9.106'

# ID used to uniquely identify this module
GUID = '9d139310-ce45-41ce-8e8b-d76335aa1789'
Expand Down Expand Up @@ -526,8 +526,8 @@
# SIG # Begin signature block
# MIIcYgYJKoZIhvcNAQcCoIIcUzCCHE8CAQExCzAJBgUrDgMCGgUAMGkGCisGAQQB
# gjcCAQSgWzBZMDQGCisGAQQBgjcCAR4wJgIDAQAABBAfzDtgWUsITrck0sYpfvNR
# AgEAAgEAAgEAAgEAAgEAMCEwCQYFKw4DAhoFAAQU0+h5yChpUDiNdGPf1vBot45S
# EMqggheRMIIFGjCCBAKgAwIBAgIQAsF1KHTVwoQxhSrYoGRpyjANBgkqhkiG9w0B
# AgEAAgEAAgEAAgEAAgEAMCEwCQYFKw4DAhoFAAQU20+icirLv448LZagMYcbyhyJ
# 9YmggheRMIIFGjCCBAKgAwIBAgIQAsF1KHTVwoQxhSrYoGRpyjANBgkqhkiG9w0B
# AQsFADByMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYD
# VQQLExB3d3cuZGlnaWNlcnQuY29tMTEwLwYDVQQDEyhEaWdpQ2VydCBTSEEyIEFz
# c3VyZWQgSUQgQ29kZSBTaWduaW5nIENBMB4XDTE3MDUwOTAwMDAwMFoXDTIwMDUx
Expand Down Expand Up @@ -658,22 +658,22 @@
# c3N1cmVkIElEIENvZGUgU2lnbmluZyBDQQIQAsF1KHTVwoQxhSrYoGRpyjAJBgUr
# DgMCGgUAoHgwGAYKKwYBBAGCNwIBDDEKMAigAoAAoQKAADAZBgkqhkiG9w0BCQMx
# DAYKKwYBBAGCNwIBBDAcBgorBgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAjBgkq
# hkiG9w0BCQQxFgQUPqKmlPBYozUA9NiB7zmnw0PBwmEwDQYJKoZIhvcNAQEBBQAE
# ggEAgAx3A3qAa/SKLlIaHbvcdQo7Rrez1OKmCtPaHpnd7I09u97A+TTnDIvATxlr
# D65w6UQ0f9XQuQ1FQJ6puCyWVjplqoaz/XU1YlJ82pV+W9IyYwF8HIMbtwXwt5n+
# HDBjIBLluHMlA3RQDucIS7lXsWgHWcXBDUsX1GlGbKM1lNNZP7UF1umUW+KdSR3Y
# 4bI0masJ1X7QzFLES0iJU6JN8uV++wbr/0Sd5dQwvln2FPG0C6uMEC8CBMDO5tNC
# rvvf2tP7S/LBFEF7PEoaY5mXjiCBOZXYMpkM77Azvep7mtP47trzxgha7l27OrgI
# sgW8mM/wiYp+Hp5zCmxfayaRiqGCAg8wggILBgkqhkiG9w0BCQYxggH8MIIB+AIB
# hkiG9w0BCQQxFgQUeZR63m0cOMg9g70RQc6YhP9get8wDQYJKoZIhvcNAQEBBQAE
# ggEAitI3m7DftS+spBlICvq/NFjlbF8eECC6VXlPhquxysyz66MH9BmUdhhCVXKo
# csmdYACVMkwylxFxDNzfcWDczNNa4+eT1LTOl9kUJnJ7s9xWVwoP7EpA7vr4eHk1
# 9HEGGW3z8iieMSy4HG6+tA11vtb/DRMM6gTV/WkUDe9wf9BFR2E0uIAdGNar4hDp
# ZnYuuLjqL5r6/PA5G0NXrk+NFWetLZdYebpNXg6TCdgbCf0iN9hJMKtmJ84KVIdA
# D9HOwO0vk180aMeHOaxRKh0LT/ZL1aJ+1EJxdKVX+QzvqhAuZO1zfpYwvN78d9w3
# IrOXw8QGjz+XOLn4CWXN35rVOaGCAg8wggILBgkqhkiG9w0BCQYxggH8MIIB+AIB
# ATB2MGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNV
# BAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNVBAMTGERpZ2lDZXJ0IEFzc3VyZWQg
# SUQgQ0EtMQIQAwGaAjr/WLFr1tXq5hfwZjAJBgUrDgMCGgUAoF0wGAYJKoZIhvcN
# AQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTcxMTE3MjAwNzQ4WjAj
# BgkqhkiG9w0BCQQxFgQUV7iQRDhkNyLmsygOlSwMusyt7DgwDQYJKoZIhvcNAQEB
# BQAEggEAhUDWwRrMZmVX8vUmeR4kL5o0EWMOTDVgasNrrOY3r4xZTVbrlaVynPd4
# zWAp2p3l6v500ArNDi9mdiDDc3KCGr0hxDm3MNeCoc23fguiOKqQx4+dve5R8irn
# JUFCQ+0Ro1fFeoRMkkxwtwhBTDMhkbWZgpdGyK2zl2zIB9UNYdVIXZMJdbEEb1LM
# A2rSaH1J8GfShb73SsO6gusQ+EC4rdWwLTYXRp6BTKlzVZMPW9YAiVrPGTr+iO10
# Ti3I27A4d1jspqlHtefJQnwl7uceQypE9cVe9n60v52h7UUHSPyt3qL7oWsrwaNz
# 7q46JUZJXXLyj9wWQ47YslMtP0KLHw==
# AQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTcxMTI2MTU1NTE3WjAj
# BgkqhkiG9w0BCQQxFgQU0pQ6hMbS/KcB591birRbB+0kcBEwDQYJKoZIhvcNAQEB
# BQAEggEAL7ey8ul4LXrW914vwzBVPlW3VSMRWFTqGnFdvFh30FJ1Y5Umy1lg4WRq
# ohh0YRDvBBo1J0rJxCHHYILnpgl5oWsxH9S5qWCR6XHjATzKT2IIrYVclX1r5t8g
# frnYVSg32hAb4kg3MbQI5bBZJ69b0fXBR842v/gTKYCJCEyiV9yRfOUUOvmhI7CN
# G7by0nFf5TqapAghTpTvY1Vqnm5BVeQeXfz+Mn6STdEsNzqOfY0nKVqSbcLe2gCt
# XX/ZMNJOzc+JEZE38Y9p9JaGJzhRzrqDcD6lKHC7/0s8U59gaE3QHLUuh6I0kwjK
# PlxJr3YN0EpatRbZ2mKJ5io8cMUvHw==
# SIG # End signature block
14 changes: 7 additions & 7 deletions dbatools.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -554,12 +554,12 @@ Write-ImportTime -Text "Waiting for runspaces to finish"
# ATB2MGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNV
# BAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNVBAMTGERpZ2lDZXJ0IEFzc3VyZWQg
# SUQgQ0EtMQIQAwGaAjr/WLFr1tXq5hfwZjAJBgUrDgMCGgUAoF0wGAYJKoZIhvcN
# AQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTcxMTE3MjAwNzQ5WjAj
# AQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTcxMTI2MTU1NTE4WjAj
# BgkqhkiG9w0BCQQxFgQUR0fdxgnmPoYVOKyRLLFqzxhalhwwDQYJKoZIhvcNAQEB
# BQAEggEAMbijwB/2XFq2IfGs0mKfVDXQyDD6H1FJGdQeqAB4XiJeZpb1UtXMvurW
# h/KN3pzgWkgtTc8N0JJsZ/U4gUGkWl+HKsQKbxznZvLnMT8Wl96e8BlYdXzsq3DG
# /nh/RHFWLhiUS9mMa8b2i7isAi9tZpvqHkpb3dMM5ub/DGYHUf2/MiQd+DA7eInC
# /SMf3GikK7vL/0QJyLj52uz0x0qGn8G1XEVq5ZiEhxRpQ77pe1XJFtyAg/107fRU
# xIdblXqlfWcgSSaTL+K+qVNZc8CwqalN/9mYddn+k+nvY8tCPQU0v+YxJUQHv6yg
# fPY7A+u+rhe/cIr7LwMCB3U7ASKF6A==
# BQAEggEAGwPfgqaIJGMr5dKW9OPA3T9wGkyh5eNbV69Xlh44QqLsuW7ukR7ZieHH
# YzzxI2RKUJ7UnfRLV2tNVjQtz1AFMSGBlPvW8zx+16lbu31r2ha6EYvmcNxqOIpm
# G1iEFz/JsSqtqk/FpZFkyhLQ1mmrWISnM9pDlTOVtcnmvjuUNXQ7GPjdAOlnrlw1
# G/RgKvEwfhzSDgnf37agj5Kg2azNME8kKdT5um1Es1ygE8TioNT4FeDUfOv/n2JW
# b7xcB/QhCTYGAw2u/iDt1n0Az7oWnTCPCZDdvDGm0PSSIsgvKjsIIGE6iQyM7Waq
# l4hwFgMJQA7mRjaEP8+BLZTIi3Ho4Q==
# SIG # End signature block
14 changes: 7 additions & 7 deletions install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -251,12 +251,12 @@ Write-Output "`n`nIf you experience any function missing errors after update, pl
# ATB2MGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNV
# BAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNVBAMTGERpZ2lDZXJ0IEFzc3VyZWQg
# SUQgQ0EtMQIQAwGaAjr/WLFr1tXq5hfwZjAJBgUrDgMCGgUAoF0wGAYJKoZIhvcN
# AQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTcxMTE3MjAwNzUwWjAj
# AQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTcxMTI2MTU1NTE5WjAj
# BgkqhkiG9w0BCQQxFgQUdZUbiCYZZjNDHyUdTUeUP2wWOQwwDQYJKoZIhvcNAQEB
# BQAEggEAZVznsRPbHHCz92/RicNX7tOMDCkhJclqWV9aydUfPOmW++XqG2quxrdA
# kn08rAGSggmOaA0G91w1p/XQU4RlzjiPXGQFlGBjiSkBX7U5vyac0vJ8+n9vxSWB
# WnFYfB9pjhuhLukg0nwtXxX8fySrZVSl/CIS17/8z4mMrVSsCor8t7k0NAWqWent
# UnFsg9e+h3+Y5r5tNGEfkSxb9ErYH49osfWDEsxnRQfw/yAst9pGMrwPDUU6nEGQ
# MuBusNQZnJoB3qfvTXktOuTLnLGroGWJCCW/jFiuVVTal4FlkW8OVC23xbtuQPMW
# rx+jCBTx7y6Kdu1D7/GrlDUoc/OpQw==
# BQAEggEAB4AnaPLkAiLovv05Wu6yOoUAsUa1taDPRARfRWjiCSYSlwRtVids++lg
# fwVBYC++7UcWXtoEIlPK4s+u+bvY4EK7IjN0dXeQK/74pr/3eOGRovGdnn7P0Zyv
# kpZIikNJk9PtO2FOIrj1PV/58L7Xm23a+pL2MnwEfpPPfkEEREQ6PuwCiEHjgs00
# w3ZTVu5x+0cxvi3iLu8XZbLaU4FLRQUQp7GAasZNuowxkxjrbX59O3WMX02rx9XH
# tkEkdjVLShu6eISmeUvMaJQ9hd0ykKmC9u5nTVuWz5Rix/wt9IIMGkslOp/vyhlj
# EpBaAZsV+DfxoyOi9D5U/UlM5JDWRQ==
# SIG # End signature block
14 changes: 7 additions & 7 deletions xml/dbatools.Format.ps1xml
Original file line number Diff line number Diff line change
Expand Up @@ -601,12 +601,12 @@
<!-- ATB2MGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNV -->
<!-- BAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNVBAMTGERpZ2lDZXJ0IEFzc3VyZWQg -->
<!-- SUQgQ0EtMQIQAwGaAjr/WLFr1tXq5hfwZjAJBgUrDgMCGgUAoF0wGAYJKoZIhvcN -->
<!-- AQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTcxMTE3MjAwNzUwWjAj -->
<!-- AQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTcxMTI2MTU1NTE5WjAj -->
<!-- BgkqhkiG9w0BCQQxFgQU1BSp8yRdwEMcLPl4Qlil9gN9K68wDQYJKoZIhvcNAQEB -->
<!-- BQAEggEAKdpbxBisa+iXu3l5HUvOeIZy48KuhyUjn5ygwTm757ZxQtltoso1PJDM -->
<!-- ZVzPgxohYe6gG5MYogCVBCinXHyBGXgpsLqIAF3QWZQAA1WyTv9ntxmqlCtjyMZQ -->
<!-- dboNaU7a5xF61DM1dxon3qEQymvehsn2a5gWZ6AG3MHgVCZzQDZfcEL/YQSmvDWF -->
<!-- w9hIV6tXC2iKh2Uft1jPFvMFzlswMzz9QL3ZzYL9q9D1o8YmVNJZHXb1Gv+ykp7R -->
<!-- pglOn4u9b1JFfUNRAsbfOg7CupXdrmlQK4suki9akQB4IjjzlC1j4L6+HQCJopTA -->
<!-- SlKFAi9nqD7P2JvRzLSyfAb6og8LtQ== -->
<!-- BQAEggEAN8zdT2MDrKuk73fAvdf+iyqF8K+GPoOzY3HSZF9FjkOrnQXpVm26LMt2 -->
<!-- UEjbKWMEVx5jfFgX0ISJ6mtbY+aN63gS6hGve6sfSVLxB2fJ19yUwblZHzan77CV -->
<!-- /IUDc1ClRUdnlezAzQ7QR3T0IEElkO6NERSSJp/hbeXKljw6B8FZB8jy4I7ryORr -->
<!-- 23SnhHZJx8enCc03v3wc9q3tSySzijypTQZfihPiyev6ueAk2g5/srixDQKW/cUg -->
<!-- PMUjY57pyH5ANmxqlIS9ibGQil96QZycrpguPmECA+/degdT29wcVya+z9wf0kfq -->
<!-- 8YxhX5pqOYj+O3azSQbCBe1MOkQqcQ== -->
<!-- SIG # End signature block -->

0 comments on commit 5dd10fe

Please sign in to comment.