notifications
197 TopicsROBOCOPY and UGREEN NAS DH2300
I was editing data when I noticed that my Network Attached Storage (NAS) hard drives were thrashing. Technically, that is what is supposed to happen when configured to update 'real time'. I have been a long-time user of a batch file to execute ROBOCOPY. It is clean and efficient, one of the better items Microsoft has created. Go figure, right? Anyway, being who I am and what I have done in my career, I got the idea to edit in Windows on two separate NVME hard drives (much data and large files) then execute a batch file to run ROBOCOPY. This consolidated all data onto one spin-drive in my Windows PC. The first time I did this, my DH2300 NAS was active. All configured SYNC and BACKUP tasks indicated 'BAD' and would not execute. I had to delete the NAS tasks and recreate them. After several attempts and recreations, I thought that I might shutdown the UGREEN NAS DH2300, run the Windows PC batch file for ROBOCOPY, then start the UGREEN NAS back up in order for the UGREEN NAS Client Sync & Backup app to 'do its thing'. WRONG! All tasks indicated 'BAD' again. I've made it a practice to delete the NAS Tasks after running Windows ROBOCOPY then recreating all seven NAS tasks. Only then will these properly execute. Would anyone have any idea as to what is going on to cause this? I've asked on UGREEN's FB resource page, and they are suggesting that it is a ROBOCOPY issue (Pass-the-buck = EASY). I suppose that's possible, BUT I've used ROBOCOPY for YEARS. It skips over any unchanged file and only changes/updates files when changed. Still, I must ask.3Views0likes0CommentsLooking for a way to make adult content extremely difficult to access on my Windows 11 laptop
Hello everyone, I know this is an unusual question, but I sincerely hope someone here can help me. I am an 18-year-old student who has been struggling with an addiction to adult content for the past four years. I have been trying very hard to overcome it, and at one point I was able to stay away from it for almost a year. Unfortunately, since last October, I have relapsed and have been trying everything I can think of to prevent myself from accessing this content again. So far, I have tried: Changing my IPv4 and IPv6 DNS settings to family-safe filtering services. Editing the hosts file to block websites. Using various website blockers and parental control tools. Trying different software restrictions and browser-based solutions. The problem is that I am the one who configured all of these. When I experience a strong urge, I already know exactly how to disable or bypass every restriction because I set it up myself. Unfortunately, I cannot ask my parents or anyone close to me for help. Discussions about topics like this are extremely difficult in my family, and I don't feel comfortable involving them. Because of that, I'm trying to find a technical solution that I cannot easily undo on my own. I'm not asking how to bypass restrictions—I want the exact opposite. I am looking for the strongest possible Windows-based solution that makes it as difficult as possible for me to access adult content, even if I know a lot about computers. Are there any Windows features, account configurations, Group Policy settings, security options, or other methods that could make these restrictions significantly harder to remove? Even if they are not completely impossible to bypass, I would like something that requires so much effort that it gives me time to stop and reconsider. Any advice or suggestions would mean a great deal to me. This has become a serious personal struggle, and I am doing everything I can to overcome it because I genuinely believe my future depends on breaking this habit. Thank you very much for taking the time to read my post.21Views0likes0CommentsHackers keep getting prompting me for a code on authenticator
Hello, I'm noticing that I get a random prompt for a code on the Authenticator app whose location appears to be in the Netherlands. I'm under the impression that these hackers just try logging into numerous accounts hoping that their victims will unknowingly push on a confirmation number and let them in. Is there a way to help prevent this? I would imagine that preventing logins based on unusal locations would help stop it but would like to hear your take. Thanks!5.3KViews0likes3CommentsVisual studio benefits for MCT
I renewed my subscription for MCT earlier this year but recently noticed that my visual studio benefits is not active. What i have is MCT subscription that has expired date of 23/May/2025 instead of Feb 2027. I reach out to VSS support, they mentioned that my subscription was removed for the benefits and they redirected me to MCT support via Pearson. Pearson sent me back to VSS support and it has been back and forth for a while. Does anyone have idea how to resolve this.17Views0likes0CommentsOne 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!Solved113Views2likes3CommentsAssistance 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! ---402Views3likes1CommentCan 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.221Views3likes8CommentsThe 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*158KViews4likes56Comments