Users Guide

Table Of Contents
한정자
PowerShell 사용하기 위한 전제 조건
Rapid Recovery PowerShell Module 사용하기 전에 Windows PowerShell 2.0 이상을 설치해야 합니다. PowerShell 3.0에는 쉬운
속성 액세스, PowerShell Web 액세스, REST 호출 지원 새로운 기능이 포함되어 있으므로 PowerShell 3.0 이상을 사용하는 것이
좋습니다.
노트: PowerShell 디렉터리에 powershell.exe.config 파일을 배치해야 합니다. : C:\WindowsPowerShell\powershell.exe.config
powershell.exe.config
<?xml version="1.0"?>
<configuration>
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0.30319"/>
<supportedRuntime version="v2.0.50727"/>
</startup>
</configuration>
PowerShell 실행 모듈 가져오기
다른 시스템 모듈과 달리 Rapid Recovery PowerShell Module 기본적으로 로드되지 않습니다. 세션에 대해 관리자 권한으로
Windows PowerShell 다음 모듈을 가져올 있습니다. PowerShell 실행하고 Rapid Recovery PowerShell Module 가져오려면
절차에 있는 단계를 완료하십시오.
1. Windows PowerShell 대한 관리자 권한 명령 프롬프트를 엽니다. 예를 들어, 시작 메뉴에 Windows PowerShell 입력하고
Windows PowerShell 응용프로그램을 마우스 오른쪽 단추로 클릭한 다음 관리자 권한으로 실행 선택합니다.
Windows PowerShell 명령 창에서 열립니다.
2. 다음 명령을 입력한 Enter 키를 누릅니다.
Import-Module “RapidRecoveryPowerShellModule”
현재 세션에 대해 Rapid Recovery PowerShell Module 가져옵니다. 기존 명령 창에서 cmdlet 실행할 있습니다.
명령 cmdlet 사용
cmdlet 단일 기능을 수행하는 Windows PowerShell 스크립트의 특수 명령입니다. cmdlet 일반적으로 동사-명사 쌍으로 표현됩니
. cmdlet 의해 반환되는 결과는 객체입니다.
PowerShell 명령을 파이프라인하여 cmdlet 출력을 다른 cmdlet 입력으로 파이프할 있습니다. 간단한 예로 Rapid Recovery
PowerShell Module 명령 목록을 요청한 목록을 이름별로 정렬할 있습니다. 작업의 스크립트 예는 다음과 같습니다.
Get-Command -module rapidrecoverypowershellmodule | sort-object name
cmdlet 도움말 예제 보기
PowerShell 열고 Rapid Recovery PowerShell Module 가져온 언제든지 Get-Help <명령_이름> cmdlet 사용하여 추가 정보를
요청할 있습니다. 예를 들어, 가상 시스템 내보내기 cmdlet 대한 정보를 가져오려면 다음 cmdlet 입력하고 Enter 키를 입력하십
시오.
Get-Help Start-VMExport
반환되는 객체에는 명령 이름, 개요, 구문 명령과 함께 사용할 있는 옵션이 포함됩니다.
334 Rapid Recovery PowerShell Module 이해