powershell 5.1 no servidor windows 2016 não funciona

1

Estou seguindo o exercício 1 deste Microsoft laboratório oficial do Azure sob o cabeçalho Deploying Azure SQL Database by using the Azure PowerShell . A máquina da VM no laboratório é Windows Server 2016 . Quando executo o seguinte comando da etapa 6, ele me solicita uma entrada mostrada abaixo. Não tenho certeza de qual entrada eu preciso colocar lá. Nota : instalei o Azure PowerShell 5.1 em aqui :

Etapa 6 do tutorial vinculado acima :

PS C:\Users\Student> $pass = ConvertTo-SecureString 'Pa55w.rd1234' –AsPlainText –Force
$cred = New-Object
System.Management.Automation.PSCredential('Student',$pass)
server = New-AzureRmSqlServer –ServerName 'raztestsqlserver' -
SqlAdministratorCredentials $cred –Location 'centralus' -
ServerVersion '12.0' –ResourceGroupName 'SQLDBRG'

PS solicita o seguinte :

cmdlet New-Object at command pipeline position 1
Supply values for the following parameters:
TypeName: 
    
por nam 22.11.2017 / 03:53

1 resposta

2

Este não é um problema do Shell de energia do Azure.

$cred = New-Object System.Management.Automation.PSCredential('Student',$pass)

Há uma quebra de linha quando você copia o script.

O script deve seguir abaixo:

$pass = ConvertTo-SecureString 'Pa55w.rd1234' –AsPlainText –Force
$cred = New-Object System.Management.Automation.PSCredential('Student',$pass)
$server = New-AzureRmSqlServer –ServerName 'raztestsqlserver' -SqlAdministratorCredentials $cred –Location 'centralus' -ServerVersion '12.0' –ResourceGroupName 'SQLDBRG'
    
por 22.11.2017 / 04:03