Example 1:
1 2 3 4 5 6 7 8 9 |
Import–Module (Get–ChildItem –Path $($env:LOCALAPPDATA+“\Apps\2.0\”) -Filter ‘*ExoPowershellModule.dll’ -Recurse | Foreach{(Get-ChildItem -Path $_.Directory -Filter CreateExoPSSession.ps1)} | Sort-Object LastWriteTime | Select-Object -Last 1).FullName $User = “epic@onmicrosoft.com“ $PasswordFile = “c:\o365\Password.txt“ $KeyFile = “c:\o365\AES.key“ $key = Get–Content $KeyFile $MyCredential = New–Object –TypeName System.Management.Automation.PSCredential ` –ArgumentList $User, (Get–Content $PasswordFile | ConvertTo–SecureString –Key $key) $proxysettings = New–PSSessionOption –ProxyAccessType IEConfig connect–exopssession –pssessionoption $proxysettings –credential $MyCredential |
Example 2:
1 2 3 4 5 6 7 8 9 |
$targetdir = (dir $env:LOCALAPPDATA”\Apps\2.0\” –Include CreateExoPSSession.ps1,Microsoft.Exchange.Management.ExoPowershellModule.dll –Recurse | Group Directory | ? {$_.Count –eq 2}).Values | sort LastWriteTime –Descending | select –First 1 | select –ExpandProperty FullName import–Module $targetdir\CreateExoPSSession.ps1 $User = “elau@onmicrosoft.com” $PasswordFile = “c:\o365\Password.txt” $KeyFile = “c:\o365\AES.key” $key = Get–Content $KeyFile $MyCredential = New–Object –TypeName System.Management.Automation.PSCredential –ArgumentList $User, (Get–Content $PasswordFile | ConvertTo–SecureString –Key $key) $proxysettings = New–PSSessionOption –ProxyAccessType IEConfig connect–exopssession –pssessionoption $proxysettings –credential $MyCredential |
Troubleshooting Errors:
- New-ExoPSSession : user_realm_discovery_failed: User realm discovery failed
1 2 3 4 5 6 |
New–ExoPSSession : user_realm_discovery_failed: User realm discovery failed At C:\Users\adm_elau\AppData\Local\Apps\2.0\806D2EJM.EAP\C421GW28.ARQ\micr..tion_1975b8453054a2b5_0010.0000_b9d3168c8e461adc\CreateExoPSSession.ps1:301 char:30 + ... PSSession = New–ExoPSSession –UserPrincipalName $UserPrincipalName.Va ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [New–ExoPSSession], AdalServiceException + FullyQualifiedErrorId : Microsoft.IdentityModel.Clients.ActiveDirectory.AdalServiceException,Microsoft.Exchange.Management.ExoPowershellSnapin.NewExoPSSession |
-
- Check proxy settings in IE
- New-ExoPSSession: The SSL certificate could not be checked for revocation.
1 2 3 4 5 6 7 |
New–ExoPSSession : [outlook.office365.com] Connecting to remote server outlook.office365.com failed with the following error message : The server certificate on the destination computer (outlook.office365.com:443) has the following errors: The SSL certificate could not be checked for revocation. The server used to check for revocation might be unreachable. For more information, see the about_Remote_Troubleshooting Help topic. At line:1 char:12 + $Session = New–PSSession –ConfigurationName Microsoft.Exchange –ConnectionUri ht ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : OpenError: (System.Manageme....RemoteRunspace:RemoteRunspace) [New–PSSession], PSRemotingTransportException + FullyQualifiedErrorId : 12175,PSSessionOpenFailed |
-
- Set winhttpbyusingsetproxycommand:
- Show: netsh winhttp show proxy
- Set Proxy: netsh winhttp set proxy <proxy url or ip>:<port>
- Reset Proxy: netsh winhttp reset proxy
- Set winhttpbyusingsetproxycommand:
testest test