Binari Windows Azure SDK dan cmdlet PowerShell yang terkait semuanya 32-bit, itulah sebabnya pintasan "Windows Azure Powershell" selalu meluncurkan shell 32-bit.
Anda bisa mengimpor modul Azure ke sesi PowerShell yang ada dengan merujuk jalur sistem file ke manifes modul:
Import-Module "C:\Program Files (x86)\Microsoft SDKs\Windows Azure\PowerShell\Azure\Azure.psd1"
[Perbarui] Di Azure terbaru, gunakan
Import-Module "C:\Program Files (x86)\Microsoft SDKs\Azure\PowerShell\ServiceManagement\Azure\Azure.psd1"
Untuk mengakses modul dengan nama saja, Anda harus memasukkan lokasinya dalam PSModulePath
variabel lingkungan (di sini, dalam detail yang luar biasa, untuk pengembang):
$oldPSModulePath = [Environment]::GetEnvironmentVariable("PSModulePath")
$azureModulePath = "C:\Program Files (x86)\Microsoft SDKs\Windows Azure\PowerShell\"
$newPSModulePath = $oldPSModulePath,$azureModulePath -join ";"
[Environment]::SetEnvironmentVariable("PSModulePath",$newPSModulePath)
Dan ekspresi singkat untuk kekuatanmu
$env:PSModulePath += ";C:\Program Files (x86)\Microsoft SDKs\Windows Azure\PowerShell\"
Import-Module Azure # <-- Now you can do this!
Anda bisa memasukkan yang di atas dalam profil PowerShell Anda