Eu quero me conectar ao Office 365 por meio do powershell, referindo-me aos tutoriais, uma tarefa muito simples. Mas aparentemente não para mim.
Acho que perdi uma trivialidade simples, mas importante.
Algumas informações:
- a licença é o Buisness Essential do Office 365
- o Azure AD está sendo executado
- Consigo usar o remoting do PowerShell (WinRM) com outros servidores
- eu uso a conta de administrador
- Eu uso meu domínio e experimentei o domínio onmicrosoft.com
A autenticação de dois fatores - (verificação de segurança adicional) está configurada
Eu tentei o seguinte
PS C:\>Import-Module MSOnline
PS C:\>$msolcred = get-credential
PS C:\>connect-msolservice -credential $msolcred
connect-msolservice : The user name or password is incorrect. Verify your user name, and then type your password again.
e
PS C:\> $O365Session = New-PSSession -ConfigurationName Microsoft.Exchange
-ConnectionUri https://ps.outlook.com/powershell
-Credential $msolcred -Authentication Basic
-AllowRedirection
New-PSSession : [ps.outlook.com] Connecting to remote server ps.outlook.com failed with the following error message : Access is denied. For more information, see the about_Remote_Troubleshooting Help topic.
e eu usei uma conexão diferente uri
PS C:\> $Session = New-PSSession -ConfigurationName Microsoft.Exchange
-ConnectionUri https://outlook.office365.com/powershell-liveid/
-Credential $msolcred2 -Authentication Basic
-AllowRedirection
New-PSSession : [outlook.office365.com] Connecting to remote server outlook.office365.com failed with the following error message :
[ClientAccessServer=VI1PR05CA0019,BackEndServer=,RequestId=5d73dec9-b3ee-4e71-9ddd-bdaac8f79998,TimeStamp=3/7/2015 8:17:50 AM] [FailureCategory=LiveID-InvalidCreds] Access Denied For more information, see the
A ajuda é muito apreciada!