Get-AzureRmAutomationDscNodeReport
取得從 DSC 節點傳送至自動化的報告。
警告
自 2024 年 2 月 29 日起,AzureRM PowerShell 模組已正式淘汰。 建議使用者從 AzureRM 遷移至 Az PowerShell 模組,以確保持續支援和更新。
雖然 AzureRM 模組可能仍可運作,但不再維護或支援它,但會根據用戶的判斷權和風險放置任何繼續使用。 如需轉換至 Az 模組的指引,請參閱我們的 移轉資源 。
語法
Get-AzureRmAutomationDscNodeReport
-NodeId <Guid>
[-StartTime <DateTimeOffset>]
[-EndTime <DateTimeOffset>]
[-ResourceGroupName] <String>
[-AutomationAccountName] <String>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Get-AzureRmAutomationDscNodeReport
-NodeId <Guid>
[-Latest]
[-ResourceGroupName] <String>
[-AutomationAccountName] <String>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Get-AzureRmAutomationDscNodeReport
-NodeId <Guid>
-Id <Guid>
[-ResourceGroupName] <String>
[-AutomationAccountName] <String>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
Get-AzureRmAutomationDscNodeReport Cmdlet 會從 APS Desired 狀態設定 (DSC) 節點傳送到 Azure 自動化 的報告。
範例
範例 1:取得 DSC 節點的所有報告
PS C:\>$Node = Get-AzureRmAutomationDscNode -ResourceGroupName "ResourceGroup03" -AutomationAccountName "Contoso17" -Name "Computer14"
PS C:\> Get-AzureRmAutomationDscNodeReport -ResourceGroupName "ResourceGroup14" -AutomationAccountName "Contoso17" -NodeId $Node.Id
第一個命令會取得名為 Contoso17 之自動化帳戶中電腦 Computer14 的 DSC 節點。 命令會將這個物件儲存在 $Node 變數中。 第二個命令會取得從名為 Computer14 之 DSC 節點傳送到名為 Contoso17 之自動化帳戶之所有報告的元數據。 命令會使用 $Node 物件的 Id 屬性來指定節點。
範例 2:依報表標識碼取得 DSC 節點的報告
PS C:\>$Node = Get-AzureRmAutomationDscNode -ResourceGroupName "ResourceGroup03" -AutomationAccountName "Contoso17" -Name "Computer14"
PS C:\> Get-AzureRmAutomationDscNodeReport -ResourceGroupName "ResourceGroup03" -AutomationAccountName "Contoso17" -NodeId $Node.Id -Id c0a1718e-d8be-4fa3-91b6-82e1d3a36298
第一個命令會取得名為 Contoso17 之自動化帳戶中電腦 Computer14 的 DSC 節點。 命令會將這個物件儲存在 $Node 變數中。 第二個命令會取得從名為 Computer14 之 DSC 節點傳送到名為 Contoso17 之自動化帳戶所識別之報表的元數據。
範例 3:取得 DSC 節點的最新報告
PS C:\>$Node = Get-AzureRmAutomationDscNode -ResourceGroupName "ResourceGroup03" -AutomationAccountName "Contoso17" -Name "Computer14"
PS C:\> Get-AzureRmAutomationDscNodeReport -ResourceGroupName "ResourceGroup03" -AutomationAccountName "Contoso17" -NodeId $Node.Id -Latest
第一個命令會取得名為 Contoso17 之自動化帳戶中電腦 Computer14 的 DSC 節點。 命令會將這個物件儲存在 $Node 變數中。 第二個命令會取得從名為 Computer14 之 DSC 節點傳送到名為 Contoso17 之自動化帳戶之最新報表的元數據。
參數
-AutomationAccountName
指定自動化帳戶的名稱。 此 Cmdlet 會匯出屬於此參數所指定帳戶的 DSC 節點報告。
類型: | String |
Position: | 1 |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-DefaultProfile
用於與 azure 通訊的認證、帳戶、租用戶和訂用帳戶
類型: | IAzureContextContainer |
別名: | AzureRmContext, AzureCredential |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-EndTime
指定結束時間。 此 Cmdlet 會取得自動化在此時間之前收到的報告。
類型: | Nullable<T>[DateTimeOffset] |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | True |
接受萬用字元: | False |
-Id
指定要取得此 Cmdlet 之 DSC 節點報告的唯一標識碼。
類型: | Guid |
別名: | ReportId |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-Latest
指出此 Cmdlet 只會取得指定節點的最新 DSC 報告。
類型: | SwitchParameter |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-NodeId
指定此 Cmdlet 取得報告之 DSC 節點的唯一識別碼。
類型: | Guid |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-ResourceGroupName
指定包含此 Cmdlet 取得報告之 DSC 節點的資源群組名稱。
類型: | String |
Position: | 0 |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-StartTime
指定開始時間。 此 Cmdlet 會取得自動化在此時間之後收到的報告。
類型: | Nullable<T>[DateTimeOffset] |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | True |
接受萬用字元: | False |
輸入
Nullable<T>[[System.DateTimeOffset, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]