Skip to content

Commit c6f642e

Browse files
PsCustomObjectPsCustomObject
authored andcommitted
Fixed typo in article
Renamed article .MD file Fixed typo in syntax
1 parent 7f988ac commit c6f642e

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

_posts/2022-01-25-annot bind argument to parameter-Token-Expiry.md renamed to _posts/2022-01-25-Cannot bind argument to parameter-Token-Expiry.md

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,23 @@ header:
1818

1919
## Exchange Online Certificate Based authentication
2020

21-
Microsoft is, *finally*, disabling **basic authentication** (read username and password) in Exchange Online in favour of **Certificate Based authentication**.
21+
Microsoft is, _finally_, disabling **basic authentication** (read username and password) in Exchange Online in favour of **Certificate Based authentication**.
2222

23-
Once this change is fully implemented, around mid February at least for some tenants, connecting via username and passwords to Exchange Online will not be possible anymore.
23+
Once this change is fully implemented, around mid February at least for some tenants, connecting via username and passwords to Exchange Online will not be possible anymore.
2424

25-
You can read my article on how to implement *Certificate Based authentication* for Exchange Online [here](https://pscustomobject.github.io/powershell/office365/exchange/Exchange-Online-Certificate-Based-Authentication/).
25+
You can read my article on how to implement _Certificate Based authentication_ for Exchange Online [here](https://pscustomobject.github.io/powershell/office365/exchange/Exchange-Online-Certificate-Based-Authentication/).
2626

27-
As a result of this change I started updating one of our automations, responsible for the whole lifecycle of our mailboxes, to ditch old credential objects in favour of the more secure Certificate Authentication.
27+
As a result of this change I started updating one of our automations, responsible for the whole lifecycle of our mailboxes, to ditch old credential objects in favour of the more secure Certificate Authentication.
2828

29-
This is when I encountered the *‌cannot bind argument to parameter 'token expiry time' because it is null.* error message.
29+
This is when I encountered the _‌cannot bind argument to parameter 'token expiry time' because it is null._ error message.
3030

3131
## Multiple PowerShell Exchange Sessions
3232

33-
When operating an hybrid environment it is pretty common to open, in the same window/session, a PowerShell connection to both Exchange on-prem and Exchange online.
33+
When operating an hybrid environment it is pretty common to open, in the same window/session, a PowerShell connection to both Exchange on-prem and Exchange online.
3434

35-
This is required as part of the configuration, usually creation of the mailbox, takes place in on-prem for example via the *New-RemoteMailbox* cmdlet while other parts of the configuration are performed directly online.
35+
This is required as part of the configuration, usually creation of the mailbox, takes place in on-prem for example via the _New-RemoteMailbox_ cmdlet while other parts of the configuration are performed directly online.
3636

37-
This morning while debugging my workflow I’ve noticed that while trying to retrieve mailbox information from the on-prem server an exception was being thrown
37+
This morning while debugging my workflow I’ve noticed that while trying to retrieve mailbox information from the on-prem server an exception was being thrown
3838

3939
```powershell
4040
# Cmdlet I was running
@@ -46,12 +46,11 @@ Cannot bind argument to parameter 'token expiry time' because it is null.
4646

4747
It took me quite a bit to figure this out as no exception during the connection phase was being thrown by either module.
4848

49-
When I was about to give up and open a ticket with Microsoft, which is usually as helpful as freezer in the North Pole, I discovered by chance that opening connection to Exchange Online **first** and **only afterwards** to the Exchange on-prem was working as intended, allowing me to interact with both the Online service and my local Exchange.
50-
49+
When I was about to give up and open a ticket with Microsoft, which is usually as helpful as freezer in the North Pole, I discovered by chance that opening connection to Exchange Online **first** and **only afterwards** to the Exchange on-prem was working as intended, allowing me to interact with both the Online service and my local Exchange.
50+
5151
**Note:** I have experienced/tested this with version 2.0.4 and 2.0.5 of Exchange Online PowerShell module but other versions could be affected as well.
52-
{: .notice—warning}
52+
{: .notice—-warning}
5353

54-
I did not dig deep into the root cause of the issue but plan to do this tomorrow and already sent my feedback to exocmdletpreview {at} service {fullstop} microsoft {fullstop} com but I doubt I will hear anything from that channel. I plan to open a ticket anyhow to at least have an official statement on this.
54+
I did not dig deep into the root cause of the issue but plan to do this tomorrow and already sent my feedback to exocmdletpreview {at} service {fullstop} microsoft {fullstop} com but I doubt I will hear anything from that channel. I plan to open a ticket anyhow to at least have an official statement on this.
5555

5656
As soon as I have any news I will update the post until then I hope you can find the information useful.
57-

0 commit comments

Comments
 (0)