Error
185 TopicsMeeting Options are limited
Hello, I have run into a problem of not having a full access to meeting options. I would like to schedule meetings for other people in the office where I do not necessarily have to attend. I would also like to assign other people as co-hosts so that they are able to admit people and have more control of the meeting. There should be settings of being able to let people come in without waiting in the waiting room as well, but I cannot seem to find it anywhere. Here is the attached screenshot: These are the only two options I get when clicking "Meeting Options". Additionally, whenever I set up a meeting, some people are not able to respond to it because they get an error of undeliverable response: "delivery has failed to these recipients or groups". What is the issue here? Does it have to do with how Outlook is set up? How can I change these limitations and errors? Thank you so much!18Views0likes0CommentsWhere to ask to delete Microsoft 365 Developer Program account (profile)
Let me ask about where to ask to delete a Microsoft 365 Developer Program account(profile). This post might be inappropriate here but let me ask as follows because I do not find the useful answers yet. My predecessor joined the Microsoft 365 Developer Program. After she left my company, I took over her company mobile phone with the same phone number. Since my predecessor left without deleting the account(profile) of the program, I am unable to join the program using the company mobile phone number. *Please see the screenshot of the error. I created a support case through the support for the Visual Studio subscription and inquired. If there are any other contact points, please let me know. Regards,31Views0likes1CommentMS Teams App Bookings - transient issue in personal bookings
Hi there, can anybody help: Since two days I've been receiving the following information and I am not able to access the bookings services (app, browser version likewise). transient issue in personal bookings How to solve that issue? TY for any hint!2.9KViews3likes13CommentsApprovals Not updating
I'm having a problem when retrieving the approvals created. Until 2024-12-26 at 13:16:48 UTC, when I created an approval, either through the application or through the API, it immediately appeared when I used get in the endpoint: https://graph.microsoft.com/beta/solutions/approval/approvalItems. Now I'm only able to see the approvals from before 2024-12-26 at 13:16:48 UTC, there is no record of the new approvals. I also noticed that, in the application, it's not showing the name of the person to whom the approval request was sent, only the name of the person who approved it, both for the new requests and for the old requests that have already been completed.19Views0likes0CommentsError when creating campaign
Currently we have issue with attempting to create Campaigns. There are a handful of users that receive the following error when attempting to create a campaign. "An unexpected problem occurred. It's likely there is an error with your campaign name, alias, or member selection. Please go back and try re-entering those values to see if the problem resolves." We have verified that the users attempting to create are licensed with the Microsoft Viva Employee Communities & Communications license. Users are also set up as Campaign Managers. We also reverted the setting back to Everyone in your Organization can create campaigns, there is still an error. All users are allowed to create M365 group.Solved51Views1like1CommentUnable to Connect my Hotmail Account to Outlook for Mac
I have an M3 MacBook Pro MAX running Parallels Desktop to give me Windows 11. Historically, I have been able to run Outlook on MacOS and Windows without any problems. However, now I can't add my Hotmail account to Outfor Mac v16.93. I have removed Outlook and reinstalled it. I have cleared the application data. I also tried to raise a support ticket, but it won't connect to the Live Chat agent. Contact Support - Outlook for Mac OneCustomer | Chat Support We are unable to load chat at this time. Please try again later. When I try to add my Hotmail account back in, I get the following message after accepting the Authenticator challenge. Outlook.com Connecting to Outlook.com. An authentication error occurred while configuring account. Try Again Connecting to Outlook via a web browser works; Outlook on Windows also works. Any recommendations on how I can add Hotmail back into Outlook for Mac? Many thanks, David548Views0likes3CommentsExcel Does Not Sync Until Opened
I created a form linked to an Excel spreadsheet in SharePoint as well as a Power Automate approval flow triggered on submission. In addition to sending out confirmation/approval emails, the flow also updates the associated Excel spreadsheet with the approval/denial. The flow was working fine until last week but since then has failed 2 consecutive times. The failures appear to be related to the flow unable to find the automatically generated submission ID in the Excel spreadsheet. When I open the linked spreadsheet, the submission is not immediately present at first but the file does sync at that point and the entry appears. When re-triggered after the sync, the flow completes successfully. Not sure if it is related, but MS form/linked spreadsheets have been updated by Microsoft recently and I was prompted to go through an update process for synced Excel spreadsheets. I completed the update with this specific form last week after the flow failed for the first time. TLDR - my form only syncs with the spreadsheet once opened. Any ideas how to get MS Forms to update the spreadsheet in real-time as opposed to when it is opened?1.2KViews3likes3CommentsMS form unresponsive
hi there I have an MS forms survey's collect-responses page that keeps on being unresponsive facts abt the form: we use Microsoft 365 the form is created in sharepoint - our site - document - new - forms survey, so it auto updates its connected Excel the form's questions include pictures, subtitles; answer includes choices, free text, text restricted to URL formats symptoms: the unresponsiveness can happen when opening the link (blank page with loading sign), or trying to fill in text after loading the collect-responses page (the first answer is restricted to URL format) it happens in normal window (and after clearing cache) and incognito window, in chrome and in edge it happens to more than 1 person, more than 1 day it happens in the past few weeks, not before that what could be the cause and how to resolve it? I really appreciate any help you can provide.Solved49Views0likes2CommentsInaccessible boot device error
Yesterday night i clicked update and shut down on my PC for the windows insider programme and went to sleep and today it shows me the inaccessible boot error And wont turn on. I tried uninstalling the latest feature update thru troubleshoot but it did not work and showed some kind of error. Contacted the support team and they couldnt help and asked me to reach out here. Please i need help to get it running without loosing my files and stuff. I signed up for windows insider back in 2021 and didnt know exactly what it was about but kept it running i tried to exit the programme but never worked and always showed some error. Did anyone else who had done the update yesterday faced this issue? And how can i resolve it without using my data and files. Please and Thank you94Views0likes5CommentsCatch Error in a SQL Server Logon Trigger
I have written a Logon trigger in a SQL Server to control logon authorization. ALTER TRIGGER [LOG_TRG_01] ON ALL SERVER WITH EXECUTE AS 'SA' FOR LOGON AS BEGIN if ORIGINAL_LOGIN() = 'sa' begin return; end; if ORIGINAL_LOGIN() = 'OMEGACAEVDEV1' begin -- not allowed to logon rollback; end; -- Insert Trail EXEC [OmegaCoreAudit].[OMEGACA].[P_ACC_UNF_TRAIL] 0, 'trail_details', 'ip', 'server', 'db', 0 ; END GO It does (as expected): OMEGACAEVDEV1 is not allowed to logon OMEGACAEVDEV2 is allowed to logon An audit event is inserted by proc P_ACC_UNF_TRAIL in a table for both users. All three above I want to stay this way ! But I need to have error handling in it, so that in case of whatever error the login is allowed to login - but keeping a record on another table named SYS_ERROR_LOG (with error details). In this trigger I have intentionally provoked an error by "select 10/0" The new trigger is: ALTER TRIGGER [LOG_TRG_02] ON ALL SERVER WITH EXECUTE AS 'SA' FOR LOGON AS BEGIN BEGIN TRY if ORIGINAL_LOGIN() = 'sa' begin return; end; --provoke error select 10/0; if ORIGINAL_LOGIN() = 'OMEGACAEVDEV1' begin -- not allowed to logon rollback; end; -- Insert Trail EXEC [OmegaCoreAudit].[OMEGACA].[P_ACC_UNF_TRAIL] 0, 'trail_details', 'ip', 'server', 'db', 0 ; END TRY BEGIN CATCH Insert into OmegaCoreAudit.OMEGACA.SYS_ERROR_LOG ([LOGIN_USER_NAME], [DB_USER_NAME], [USERHOST], [IP_ADDRESS], [OS_USER], [BG_JOB_ID], [ERROR_DATA]) values ('LOGIN_NAME', 'USER_NAME', 'USER_HOST', 'IP', NULL, NULL, 'ERROR_MESSAGE'); END CATCH END GO In the above code "if ORIGINAL_LOGIN() = 'OMEGACAEVDEV1'" represents a simplified version of a wider authorization process. Problem: CATCH is not working. Both users are not allowed to logon ("Logon failed for login '[user]' due to trigger execution") No record is written on table SYS_ERROR_LOG. I was expecting one for each user. What can I do to fix this problem? best regards AltinSolved174Views0likes13Comments