Windows Azure SDK 바이너리 및 관련 PowerShell cmdlet은 모두 32 비트이므로 "Windows Azure Powershell"바로 가기는 항상 32 비트 셸을 시작합니다.
모듈 매니페스트에 대한 파일 시스템 경로를 참조하여 Azure 모듈을 기존 PowerShell 세션으로 가져올 수 있습니다.
Import-Module "C:\Program Files (x86)\Microsoft SDKs\Windows Azure\PowerShell\Azure\Azure.psd1"
[업데이트] 최신 Azure에서
Import-Module "C:\Program Files (x86)\Microsoft SDKs\Azure\PowerShell\ServiceManagement\Azure\Azure.psd1"
이름만으로 모듈에 액세스하려면 PSModulePath
환경 변수에 위치를 포함해야 합니다 (여기서는 개발자에게 매우 자세한 내용).
$oldPSModulePath = [Environment]::GetEnvironmentVariable("PSModulePath")
$azureModulePath = "C:\Program Files (x86)\Microsoft SDKs\Windows Azure\PowerShell\"
$newPSModulePath = $oldPSModulePath,$azureModulePath -join ";"
[Environment]::SetEnvironmentVariable("PSModulePath",$newPSModulePath)
Powershell의 속기 표현
$env:PSModulePath += ";C:\Program Files (x86)\Microsoft SDKs\Windows Azure\PowerShell\"
Import-Module Azure # <-- Now you can do this!
PowerShell 프로필에 위 내용을 포함시킬 수 있습니다