Please refer to the following, which is based on VBA.
Find the conference room in the store object and refer to the calendar folder.
Sub Get_ResourceConferenceRoom()
Dim iii As Long
Dim zzz As Long
Dim ResFolder As Outlook.folder
Dim ResCalendar As Outlook.folder
Set ResFolder = Application.Session.Stores.Session.Folders("Room-ABC") ' Conference Room name
Set ResCalendar = ResFolder.Folders("予定表") ' Calendar ??
zzz = ResCalendar.Items.Count
For iii = 1 To zzz
With ResCalendar.Items(iii)
Debug.Print .Start & ":" & .Subject
End With
Next
Set ResCalendar = Nothing
Set ResFolder = Nothing
End Sub
<Japanese>
VBAベースとなりますが下記を参考にしてみて下さい。
ストアーオブシェクトの中から会議室を探し出して、予定表のフォルダを参照して下さい。