Export-SqlVulnerabilityAssessmentBaselineSet
將弱點評量基準設定匯出至檔案。
語法
Export-SqlVulnerabilityAssessmentBaselineSet
-BaselineSet <SecurityCheckBaselineSet>
-FolderPath <String>
[-Force]
[<CommonParameters>]
Description
Export-SqlVulnerabilityAssessmentBaselineSet Cmdlet 會將弱點評量基準設定為檔案。 輸出檔案可用於SQL Server Management Studio (SSMS) 。
Module requirements: version 21+ on PowerShell 5.1; version 22+ on PowerShell 7.x.
This cmdlet was removed in v22.3+ of the module.
範例
範例 1:將弱點評量基準設為檔案
PS C:\> $scanResult = Invoke-SqlVulnerabilityAssessmentScan -ServerInstance "MyComputer\MainInstance" -Database some_database
PS C:\> $failedResults = @{}
PS C:\> $scanResult.Results.GetEnumerator() | Where {$_.Value.Status -eq "Failed"} | foreach {$failedResults[$_.Key] = $_.Value }
PS C:\> $failedCheckResults = $failedScanResult["VA2109"].QueryResults
PS C:\> $baseline = New-SqlVulnerabilityAssessmentBaseline -SecurityCheckId "VA2109" -ExpectedResult $failedCheckResults
PS C:\> $baselineSet = New-SqlVulnerabilityAssessmentBaselineSet -Baselines $baseline
PS C:\> $baselineSet | Export-SqlVulnerabilityAssessmentBaselineSet -FolderPath ".\baseline.json"
在此範例中,我們會建立具有一個基準的新基準集以進行安全性檢查 'VA2109',然後將它匯出至名為 'baseline.json' 的檔案
參數
-BaselineSet
要匯出的基準集
類型: | SecurityCheckBaselineSet |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-FolderPath
將儲存匯出的檔案的位置
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-Force
如果檔案已經存在,是否強制覆寫檔案。 如果這個參數不存在,則會在作業繼續之前提示您。
類型: | SwitchParameter |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
輸入
Microsoft.SqlServer.VulnerabilityAssessment.SecurityCheckBaselineSet