Các nhị phân Windows Azure SDK và các lệnh ghép ngắn PowerShell liên quan đều là 32 bit, đó là lý do tại sao phím tắt "Windows Azure Powershell" luôn khởi chạy trình bao 32 bit.
Bạn có thể nhập mô-đun Azure vào phiên PowerShell hiện có bằng cách tham chiếu đường dẫn hệ thống tệp đến tệp kê khai mô-đun:
Import-Module "C:\Program Files (x86)\Microsoft SDKs\Windows Azure\PowerShell\Azure\Azure.psd1"
[Cập nhật] Trong Azure mới nhất, sử dụng
Import-Module "C:\Program Files (x86)\Microsoft SDKs\Azure\PowerShell\ServiceManagement\Azure\Azure.psd1"
Để chỉ truy cập mô-đun theo tên, bạn sẽ cần đưa vị trí của mô-đun vào PSModulePath
biến môi trường (ở đây chi tiết rõ ràng, dành cho nhà phát triển):
$oldPSModulePath = [Environment]::GetEnvironmentVariable("PSModulePath")
$azureModulePath = "C:\Program Files (x86)\Microsoft SDKs\Windows Azure\PowerShell\"
$newPSModulePath = $oldPSModulePath,$azureModulePath -join ";"
[Environment]::SetEnvironmentVariable("PSModulePath",$newPSModulePath)
Và một biểu thức tốc ký cho quyền hạn của bạn
$env:PSModulePath += ";C:\Program Files (x86)\Microsoft SDKs\Windows Azure\PowerShell\"
Import-Module Azure # <-- Now you can do this!
Bạn có thể bao gồm những điều trên trong hồ sơ PowerShell của bạn