Get-AzBatchRemoteDesktopProtocolFile

컴퓨팅 노드에서 RDP 파일을 가져옵니다.

Syntax

Get-AzBatchRemoteDesktopProtocolFile
   [-PoolId] <String>
   [-ComputeNodeId] <String>
   -DestinationPath <String>
   -BatchContext <BatchAccountContext>
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]
Get-AzBatchRemoteDesktopProtocolFile
   [-PoolId] <String>
   [-ComputeNodeId] <String>
   -DestinationStream <Stream>
   -BatchContext <BatchAccountContext>
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]
Get-AzBatchRemoteDesktopProtocolFile
   [[-ComputeNode] <PSComputeNode>]
   -DestinationPath <String>
   -BatchContext <BatchAccountContext>
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]
Get-AzBatchRemoteDesktopProtocolFile
   [[-ComputeNode] <PSComputeNode>]
   -DestinationStream <Stream>
   -BatchContext <BatchAccountContext>
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]

Description

Get-AzBatchRemoteDesktopProtocolFile cmdlet은 컴퓨팅 노드에서 RDP(원격 데스크톱 프로토콜) 파일을 가져와서 파일 또는 사용자가 제공한 스트림으로 저장합니다.

예제

예제 1: 지정된 컴퓨팅 노드에서 RDP 파일을 가져와서 파일 저장

Get-AzBatchRemoteDesktopProtocolFile -PoolId "Pool06" -ComputeNodeId "ComputeNode01" -DestinationPath "C:\PowerShell\ComputeNode01.rdp" -BatchContext $Context

이 명령은 ID Pool06이 있는 풀에 ID ComputeNode01이 있는 컴퓨팅 노드에서 RDP 파일을 가져옵니다. 이 명령은 .rdp 파일을 C:\PowerShell\MyComputeNode.rdp로 저장합니다. Get-AzBatchAccountKey cmdlet을 사용하여 $Context 변수에 컨텍스트를 할당합니다.

예제 2: 컴퓨팅 노드에서 RDP 파일 가져오기 및 파이프라인을 사용하여 파일 저장

Get-AzBatchComputeNode -PoolId "Pool06" -Id "ComputeNode02" -BatchContext $Context | Get-AzBatchRemoteDesktopProtocolFile -DestinationPath "C:\PowerShell\MyComputeNode02.rdp" -BatchContext $Context

이 명령은 ID Pool06이 있는 풀에 ID ComputeNode02가 있는 컴퓨팅 노드를 가져옵니다. 이 명령은 파이프라인 연산자를 사용하여 해당 컴퓨팅 노드를 현재 cmdlet에 전달합니다. 현재 cmdlet은 컴퓨팅 노드에서 .rpd 파일을 가져오고 C:\PowerShell\MyComputeNode02.rdp라는 파일로 내용을 저장합니다.

예제 3: 지정된 컴퓨팅 노드에서 RDP 파일을 가져와 스트림으로 전달

$Stream = New-Object -TypeName "System.IO.MemoryStream"
Get-AzBatchRemoteDesktopProtocolFile "Pool06" -ComputeNodeId "ComputeNode03" -DestinationStream $Stream -BatchContext $Context

첫 번째 명령은 New-Object cmdlet을 사용하여 스트림을 만든 다음 $Stream 변수에 저장합니다. 두 번째 명령은 ID Pool06이 있는 풀에 ID ComputeNode03이 있는 컴퓨팅 노드에서 .rdp 파일을 가져옵니다. 이 명령은 파일 내용을 $Stream 스트림으로 전달합니다.

매개 변수

-BatchContext

이 cmdlet이 Batch 서비스와 상호 작용하는 데 사용하는 BatchAccountContext 인스턴스를 지정합니다. Get-AzBatchAccount cmdlet을 사용하여 BatchAccountContext를 가져오는 경우 Batch 서비스와 상호 작용할 때 Microsoft Entra 인증이 사용됩니다. 대신 공유 키 인증을 사용하려면 Get-AzBatchAccountKey cmdlet을 사용하여 액세스 키가 채워진 BatchAccountContext 개체를 가져옵니다. 공유 키 인증을 사용하는 경우 기본 액세스 키가 기본적으로 사용됩니다. 사용할 키를 변경하려면 BatchAccountContext.KeyInUse 속성을 설정합니다.

Type:BatchAccountContext
Position:Named
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-ComputeNode

.rdp 파일이 가리키는 PSComputeNode 개체로 컴퓨팅 노드를 지정합니다. 컴퓨팅 노드 개체를 가져오려면 Get-AzBatchComputeNode cmdlet을 사용합니다.

Type:PSComputeNode
Position:0
Default value:None
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-ComputeNodeId

.rdp 파일이 가리키는 컴퓨팅 노드의 ID를 지정합니다.

Type:String
Position:1
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-DefaultProfile

Azure와의 통신에 사용되는 자격 증명, 계정, 테넌트 및 구독입니다.

Type:IAzureContextContainer
Aliases:AzContext, AzureRmContext, AzureCredential
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-DestinationPath

이 cmdlet이 .rdp 파일을 저장할 파일 경로를 지정합니다.

Type:String
Position:Named
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False

-DestinationStream

이 cmdlet이 RDP 데이터를 지시하는 스트림을 지정합니다. 이 cmdlet은 이 스트림을 닫거나 되감지 않습니다.

Type:Stream
Position:Named
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False

-PoolId

이 cmdlet이 .rdp 파일을 가져오는 컴퓨팅 노드를 포함하는 풀의 ID를 지정합니다.

Type:String
Position:0
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

입력

String

PSComputeNode

BatchAccountContext

출력

Void