notifications
197 TopicsSNMP Query fails with Error: Error in packet. Reason: (genError) A general failure occured
I have enabled a win Server 2022 and a Win11 machine to answer SNMP requests. However both machines run into error while doing a snmpwalk. I have started with OID just before errornous OID. Both machines show same behaviour. Does someone experience same problem? Can someone recreate this problem? Does someone know a cure fort this problem? Does someone have any ideas how to proceed? root# snmpwalk -Os -v 1 -c public <hostname> .1.3.6.1.4.1.77 comVersionMaj.0 = STRING: "10" comVersionMin.0 = STRING: "0" comType.0 = Hex-STRING: 03 00 00 00 Error in packet. Reason: (genError) A general failure occured Failed object: comType.0 root@monitor:/etc/munin/plugins# snmpwalk -On -v 1 -c public <hostname> .1.3.6.1.4.1.77 .1.3.6.1.4.1.77.1.1.1.0 = STRING: "10" .1.3.6.1.4.1.77.1.1.2.0 = STRING: "0" .1.3.6.1.4.1.77.1.1.3.0 = Hex-STRING: 03 00 00 00 Error in packet. Reason: (genError) A general failure occured Failed object: .1.3.6.1.4.1.77.1.1.3.010Views0likes0CommentsCopilot image generation now shows "Made with AI"
At some point in the last few weeks, image generation with Copilot in Edge was changed to include a little oval with the text "Made with AI". This is very annoying. The oval is usually within the rectangle of the image content (cannot be cropped out) and often on a gradient color area (not a solid color that can be erased). I don't mind using disclaimers that my images were AI-generated, but I don't want the image itself to be plastered with extra content. Copilot says this cannot be eliminated. Copilot "says" that it can move the oval above or below the content, but it either does not properly do that, or it puts the whole image inside a solid background. This oval makes the images practically unusable in documents due to the need to hack out the oval. Copilot says this is for "transparency", but the transparency of my work is not Microsoft's problem.116Views0likes0CommentsUnable to follow the Viva Glint Blog
This post was originally submitted as a question in MS Learn on July 2 and I was advised to move it to the tech community. Hi MS team, I continue to click "Follow" on the Viva Glint blog to ensure I receive release updates but then get automatically set to not follow. https://techcommunity.microsoft.com/category/Viva-Glint For the second time, I am being automatically set to not follow. I checked with my admin team (there are 4 of us) and this is not an individual/isolated incident. They are also being automatically set to unfollow the Viva Glint blog. Please see screenshots attached from myself and my manager. We should be seeing the button as "Unfollow" indicating that we are following, instead it is showing "Follow" indicating that we are not following. I have opened an MS ticket about this already and was directed to contact the Microsoft Tech Community platform team. I followed the Glint blog back on 4/9/2026 and then was set to unfollow. I followed again at the beginning of June (maybe on 6/4/2026) and I was set to unfollow again. I did receive one "Microsoft Community Hub Weekly Digest" email on 6/7/2026 so I must have still been following then but I have not received any communications before or after. Can you please provide an explanation and a solution? We need to receive email notifications about updates and releases. Following the blog should be a reliable process. As of today, 7/28/2026, I am still following the Glint blog which is great but how do I know I won't be automatically set to "unfollow" a third time?40Views0likes1CommentTechcommunity Follow email notification no longer working
Hello, Not sure if this is the right place to post this issue but I could not find another method to report this issue.. As an Exchange Admin in our invironment it's very usefull to stay up to date on the latest new posted in a variety of blogs on this website (Exchange Blog, M365 Blog, ...) This all went well until a few months ago where I started noticing I didn't receive any weekly updates anymore regarding new blogposts & tried to manually go check periodically, thinking it would be a temporary system. After investigation i've noticed that i'm not the only admin in our company that no longer receives these emails from mailto:email address removed for privacy reasons So I wonder if something bigger is up or if it's only my company being affected, not receiving these follow notifications anymore? Is there any other way that I should report this issue, to those managing this website so it can be investigated in detail if it's only us? Already tried to unfollow/delete follows in my profile - save - follow again, same on the respective blog pages, but this does not seem to change anything.29Views0likes2CommentsOne Drive Personal Vault Lock Notification
Hi, How do you turn on the Windows 11 - One Drive - Personal Vault - "Keep Personal Vault open" notification? May not have worded it exactly right but that is the essence of the question. Am on Windows 11 (personal), open One Drive, click on Personal Vault, unlock Personal Vault, Personal Vault file explorer page opens. So far no problems - works as expected. Setting for Personal Vault is to keep open for 1 hour. At the end of the hour, I used to get a notification asking if I still wanted to keep the vault open. Now - no notification and vault locks. How do I get this notification back? As said on Windows 11 with April update - have not done May yet. One of the most aggravating things about Windows and updates - is that some settings - not know to you or identified - are changed. And now you encounter different or unknown behavior. Incredibly frustrating when you just want your PC to work like you are used to. Any ideas or help would be greatly appreciated. Thank you!Solved183Views2likes3CommentsAssistance Needed: Appeal for Microsoft Certification Profile Ban Removal
Hello Microsoft Tech Community, I am reaching out in hopes of connecting with someone from the Microsoft Learn Security Team. Unfortunately, there has been a misunderstanding during one of my exams, resulting in a ban on my Microsoft Certification Profile from scheduling or taking any further certification exams. I have made several appeals for the removal of the ban but have not yet received a response from the Microsoft Learn Security Team. The certification I am pursuing is critical for my professional development and career advancement. I kindly request assistance from the community or any team member who can guide me on how to resolve this issue. Your help in lifting this ban would be immensely appreciated. Thank you for your attention to this matter.Solved1.3KViews1like5CommentsGraph API: summary field ignored for Adaptive Card message notifications/preview
Hello, Problem Summary When sending Adaptive Cards via Microsoft Graph API to Teams chats, the `summary` field in the message payload is completely ignored. This results in unhelpful generic notifications like "Card" or "Sent an attachment" instead of meaningful preview text. Environment - **API**: Microsoft Graph API v1.0 - **Endpoint**: `POST /chats/{chat-id}/messages` - **Platform**: Microsoft Teams (Desktop, Web, Mobile) - **Adaptive Card Version**: 1.5 Expected Behavior According to the https://learn.microsoft.com/en-us/graph/api/resources/chatmessage?view=graph-rest-1.0, the `summary` property should be used for: > "Summary text of the message that could be used for push notifications and summary views or fall back views" When sending a message with `summary: "🚨 Big Alert: This is a real issue"`, I expect: - ✅ Teams notification toast displays: "🚨 Big Alert: This is a real issue" - ✅ Chat list preview shows: "🚨 Big Alert: This is a real issue" - ✅ Activity feed shows: "🚨 Big Alert: This is a real issue" Actual Behavior The `summary` field has **no effect** on notifications or previews: - ❌ Notification shows generic text: "Card" or "Sent an attachment" - ❌ Chat list preview shows generic text or first TextBlock from card - ❌ Activity feed shows generic text - ❌ The `summary` field appears to be completely ignored Minimal Reproduction Request Payload ```json POST https://graph.microsoft.com/v1.0/chats/{chat-id}/messages Content-Type: application/json Authorization: Bearer {token} { "body": { "contentType": "html", "content": "<attachment id=\"card001\"></attachment>" }, "attachments": [ { "id": "card001", "contentType": "application/vnd.microsoft.card.adaptive", "content": { "type": "AdaptiveCard", "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", "version": "1.5", "body": [ { "type": "TextBlock", "text": "Critical Alert", "weight": "bolder", "size": "large", "color": "attention" }, { "type": "TextBlock", "text": "Database connection has failed. Please investigate immediately.", "wrap": true } ], "actions": [ { "type": "Action.OpenUrl", "title": "View Details", "url": "https://example.com/alerts/12345" } ] } } ], "summary": "🚨 Big Alert: This is a real issue" } ``` Steps to Reproduce Create a test chat in Microsoft Teams Obtain OAuth2 token with `Chat.ReadWrite` scope Send the above payload via Graph API Observe notification/preview in Teams client **Result**: The `summary` field is ignored, notification shows generic text. Business Impact This limitation severely impacts user experience for: - **Alert/incident notifications** - Users can't identify urgency without opening the chat - **High-volume scenarios** - Users can't triage messages efficiently - **Time-sensitive operations** - Critical alerts look identical to routine messages Our team manages 200+ incident notifications daily via Adaptive Cards. Without meaningful previews, users must open every notification to assess priority, defeating the purpose of notifications. Workarounds Attempted ❌ **Setting `summary` at message level** - Ignored when attachments present ❌ **Adding preview text in `body.content`** - Overwritten by attachment ❌ **Using different `contentType` values** - No improvement ❌ **Including fallback text in Adaptive Card** - Not displayed in preview ✅ **Only working solution**: Send plain text message first, then card separately (terrible UX) Questions **Is this a bug or by design?** If by design, why does the documentation describe `summary` as useful for notifications? **Is there an alternative mechanism** to control preview text for Adaptive Card messages? **Is this being tracked internally?** This seems like a fundamental limitation for bot developers. Full Reproduction Package I've created a complete reproduction package with test scripts and detailed documentation: - Test payload JSON - Bash/PowerShell test scripts - Step-by-step reproduction guide Can share via GitHub gist if helpful for the team to investigate. Request Please either: **Fix the implementation** to honor the `summary` field for Adaptive Card messages, OR **Provide an alternative mechanism** to control notification/preview text, OR **Update the documentation** to clarify that `summary` is not supported for Adaptive Cards This is blocking our production alert system deployment. Any guidance would be greatly appreciated! ---494Views4likes1CommentCan we get more guidance and feedback on the moderation being done on the messages
I have been an active poster on the Excel forum but every so often my posts will just disappear. Sometimes our message will be there but an attachment will be missing. Sometimes messages disappear but then show up hours or days later. Can someone PLEASE give us some insight into what is happening. Is this an auto-moderator or actual person? Either way can we please get a message informing us that our message is being held or rejected and why. How are we supposed to learn if we get no feedback. I don't appreciate spending time re-creating a worksheet (because these new posters aren't even allowed to attach their excel file for us to see) and then create a formula solution, write up how it works and then just have it all disappear. Makes me think Microsoft doesn't really care for me to help. And BTW, can you please revisit the reasoning behind not letting new accounts attach files. Is it a space/size issue? or is it a security issue? if the concern is space/size then make a limit on the file size. Security issue, make a limit on file types. All this tends to do is force members to ask the user to post the file using a file share service like onedrive, but if they use another service it can be a much larger security risk.238Views3likes8CommentsThe Chat Notification Badge That Won't Die
I know there's another thread on this, but literally none of those solutions worked, so I'm a starting a new thread. My chat notification won't go away. All of my chats are read. Here's everything I've done to fix this already (note- It's a corporate computer so I can't mess with the anti-virus): Signed out of the app every (desktop, web, phone) Restarted my computer Cleared the cache data from all 13 different locations Changed the setting to close the app when I shut down Closed it in the Task Manager Turned off all of my notifications Clicked on every chat I've received over the last week The only thing that seemed to maybe be the culprit was a very large company meeting and I was the last to leave. There was a lot of chat in that meeting, though I didn't participate in any of it. The reason I think this was when I went to log into to Teams from my browser, as I started to type "Microsoft Teams" I noticed in the suggested sites that there was a chat message from that meeting. So obviously I've left the meeting. I've deleted that chat. I've even left the teams channel that hosts those meetings. For what it's worth, I don't have any notifications on the phone app (android). It's just on the desktop and the web. Please, for the love of god, help. It's slowly driving me insane and I don't have the mental capacity to deal with anything else that makes me insane during quarantine. 🙂 *jk- I'm fine. It's a joke*159KViews4likes56Comments