Hi, i am trying to build the book a room apps, i managed to add a title as the booking for what purpose, but i facing issue as below:
1)in the personal calendar (user that do the booking), it show the "title" but in the room calendar it only show the organization name.
Can anyone help me on this issue.
Solved! Go to Solution.
will do, thanks for the help, it seem is microsoft default privacy setting issue for all the rooms (resources). I managed to solve it by change the setting using powershell.
Set-ExecutionPolicy RemoteSigned
$UserCredentials = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange-ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredentials -Authentication Basic –AllowRedirection
Import-PSSession $Session
To enable the visibility of organizer details – Use the following PowerShell command
Set-MailboxFolderPermission -AccessRights LimitedDetails -Identity “Your room:\calendar” -User default
To enable the visibility of subject details – Use the following PowerShell command
Set-CalendarProcessing -Identity “Your room” -AddOrganizerToSubject $true -DeleteComments $false -DeleteSubject $false
Hi @seanyee,
Could you please tell me that what do you mean by the title of the persona calendar?
You could check the following amazing blog for reference:
Power Apps: overview of Calendar (linkedin.com)
Power Apps Canvas: Hotel Room Booking (linkedin.com)
Dear Qi, I managed to solved the issue. Personal Calendar - their personal outlook calendar.
Hi @seanyee,
So glad that you have solved your problem, please mark your reply as the answer.
Thanks for your cooperation.
will do, thanks for the help, it seem is microsoft default privacy setting issue for all the rooms (resources). I managed to solve it by change the setting using powershell.
Set-ExecutionPolicy RemoteSigned
$UserCredentials = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange-ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredentials -Authentication Basic –AllowRedirection
Import-PSSession $Session
To enable the visibility of organizer details – Use the following PowerShell command
Set-MailboxFolderPermission -AccessRights LimitedDetails -Identity “Your room:\calendar” -User default
To enable the visibility of subject details – Use the following PowerShell command
Set-CalendarProcessing -Identity “Your room” -AddOrganizerToSubject $true -DeleteComments $false -DeleteSubject $false
User | Count |
---|---|
260 | |
110 | |
98 | |
56 | |
40 |