Month: July 2024
On Outlook with iOS birthdays, why are there duplicate entries, and also no contact name?
This is starting to piss me off.
I get that Microsoft and Apple don’t like to play nice together, but they make it impossible for users to self-remedy these issues. I don’t know who to b*tch to, so I’m b*tching to both.
First, there are duplicate birthday entries, even though in my contact list there are no duplicates, and I only have iCloud contacts.
Second, none of the birthday entries in Outlook show contact names.
Does anyone have a solution/workaround?
This is starting to piss me off. I get that Microsoft and Apple don’t like to play nice together, but they make it impossible for users to self-remedy these issues. I don’t know who to b*tch to, so I’m b*tching to both. First, there are duplicate birthday entries, even though in my contact list there are no duplicates, and I only have iCloud contacts.Second, none of the birthday entries in Outlook show contact names.Does anyone have a solution/workaround? Read More
‘Identity Pass’ Unable to request new ‘TAP code’ returns Error Code: 203 Information does not match
Issue:
BLOCKED: Disaster Recovery Fails: Unable to request new ‘TAP code’ from ‘Identity Pass’ app.
Resetting Authenticator App on replacement Corp Laptop & Android
Repo steps:
– Received new MSFT imaged Laptop & Android phone
– On Android, go to aka.ms/knockknock
– ‘Identity Pass’ launches successfully and requests Employee ID & Corp email
– Enter Employee ID ‘000477476’ & Corp Alias ’email address removed for privacy reasons’
– Click ‘Submit’ – Returns Error Code: 203 ‘Information does not match’.
– Retry with Birthdate 9/22/1977 & Corp Alias ’email address removed for privacy reasons’
– Click ‘Submit’ – Returns Error Code: 203 ‘Information does not match’.
– BLOCKED: Resubmitting a new ‘TAP code’ request Fails with Error Code: 203 ‘Information does not match’.
As the result, we can no longer sign-in to https://client.wvd.microsoft.com/arm/webclient/index.html to configure our Authenticator Apps.
Please let us know if there’s anything else we can do or provide the help get this issue resolved ASAP.
Thanks & Best Regards,
Gary
Issue:BLOCKED: Disaster Recovery Fails: Unable to request new ‘TAP code’ from ‘Identity Pass’ app.Resetting Authenticator App on replacement Corp Laptop & Android Repo steps:- Received new MSFT imaged Laptop & Android phone- On Android, go to aka.ms/knockknock- ‘Identity Pass’ launches successfully and requests Employee ID & Corp email- Enter Employee ID ‘000477476’ & Corp Alias ’email address removed for privacy reasons’- Click ‘Submit’ – Returns Error Code: 203 ‘Information does not match’.- Retry with Birthdate 9/22/1977 & Corp Alias ’email address removed for privacy reasons’- Click ‘Submit’ – Returns Error Code: 203 ‘Information does not match’.- BLOCKED: Resubmitting a new ‘TAP code’ request Fails with Error Code: 203 ‘Information does not match’. As the result, we can no longer sign-in to https://client.wvd.microsoft.com/arm/webclient/index.html to configure our Authenticator Apps.Please let us know if there’s anything else we can do or provide the help get this issue resolved ASAP.Thanks & Best Regards,Gary Read More
split or create a funtion
hello everyone, i have a problem to put automaticaly range of daily works, and that is slowly to me
So that I want to create a function or have help how to do it.
like in semaine 53 = I want to that equals to 02/09/24-10/10/24 without describing all the words
@sana
hello everyone, i have a problem to put automaticaly range of daily works, and that is slowly to meSo that I want to create a function or have help how to do it.like in semaine 53 = I want to that equals to 02/09/24-10/10/24 without describing all the words@sana Read More
Mastering the Shorthand Syntax in your daily workflow
Introduction
In this tech blog, we’ll unravel the magic behind Azure CLI shorthand syntax and discover how it can elevate your command-line experience.
By unlocking the potential of Azure CLI Shorthand Syntax, we want to make your command-line experience as smooth as possible.
Quick walkthrough
Full Value Format: JSON without the quotes, making complex objects a breeze.
az some-command –contact “{name:Bill,age:20,paid:true,emails:[Bill@microsoft.com,Bill@outlook.com],address:{country:USA,company:Microsoft,details:{line1:’15590 NE 31st St’,line2:’Redmond, WA’}}}”
Partial Value Format: Simplifying commands with key-value simplicity.
az some-command –contact name=Bill
az some-command –contact age=20 paid=true
az some-command –contact emails[1]=”Bill@outlook.com”
az some-command –contact address.details=”{line1:’15590 NE 31st St’,line2:’Redmond, WA’}”
az some-command –contact address.details=./address_details.json
Combine Full Value and Partial Value for ultimate flexibility.
az some-command –contact “{name:Bill,age:20,paid:true,emails:[Bill@microsoft.com,Bill@outlook.com]}” motto=”One man’s bug is another man’s lesson.”
az some-command –contact “{name:Bill,??”
az some-command –contact “{name:Bill,address:??”
az some-command –contact “{name:Bill,address:{country:??”
az some-command –contact “{name:Bill,address:{country:USA},emails:??”
az some-command –contact “{name:Bill,address:{country:USA},emails:[??”
az some-command –contact name=”‘Bill RP'” data=”‘{a: [1, 2]}'”
az some-command –contact name=”‘null'”
az some-command –contact name=”‘bill’/s'”
?? for Help: Use ?? to reveal helpful hints, making your life easier.
az some-command –contact “??”
az some-command –contact “{??”
az some-command –contact “{name:Bill,??”
az some-command –contact “{name:Bill,address:??”
az some-command –contact “{name:Bill,address:{country:??”
az some-command –contact “{name:Bill,address:{country:USA},emails:??”
az some-command –contact “{name:Bill,address:{country:USA},emails:[??”
az some-command –contact address=”??”
az some-command –contact emails=”??”
az some-command –contact emails[0]=”??”
Passing null Values: Effortlessly handle null values in both Full Value and Partial Value formats.
Pass null in Full Value:
az some-command –contact “{name:Bill,age:20,paid:true,emails:[Bill@microsoft.com,Bill@outlook.com],address:null}”
Pass null in Partial Value:
az some-command –contact name=Bill address=null
Single Quotes String is used to pass a string value with special characters: `:`, `,`, `{`, `}`, `[`, `]`, `null`, `??` and space. Because those characters usually have other meanings when parsing shorthand syntax. So with single quotes, it tells parser to parse as a string only.
Pass a String Value with Space and Special Characters
Crafting commands with spaces or special characters? No worries! Single Quotes String ensures your strings stay intact:
az some-command –contact “{name:’Bill RP’,age:20,paid:true,data:'{a: [1, 2]}’}”
az some-command –contact name=”‘Bill RP'” data=”‘{a: [1, 2]}'”
Pass a “null” String Value
Need to pass a string with the value “null”? Single Quotes String to the rescue:
az some-command –contact “{name:’null’,age:20,paid:true}”
az some-command –contact name=”‘null'”
Use ‘/ to Pass ‘: Handling the tricky single quote within a Single Quotes String? Use ‘/ to navigate smoothly:
az some-command –contact “{name:’bill’/s’,age:20,paid:true}”
az some-command –contact name=”‘bill’/s'”
az some-command –contact name=”bill’s”
Overall, our shorthand syntax is designed to streamline command creation, making it more concise and intuitive for day-to-day development around Azure CLI. By condensing commonly used parameters, it not only saves keystrokes but also enhances readability which will greatly beneficial to our codebase and CLI developer community.
Microsoft Tech Community – Latest Blogs –Read More
Windows XP SP2 causes Error 678 or Error 769 when you try to surf the Internet – Microsoft Support
Describes how to troubleshoot the cause of Error 678 and Error 769 which may occur when you try to connect to the Internet after you install Windows XP Service Pack 2 (SP2).
Error message when you try to start Windows Defender on a computer that you recently upgraded to Windows Vista: “Application failed to initialize” – Microsoft Support
Describes that you receive an “Application failed to initialize” error message when you try to start Windows Defender on a Windows Vista-based computer after you uninstall Windows Defender. Provides two resolutions.
Error message when you start a Windows Vista-based computer: “Windows has blocked some startup programs” – Microsoft Support
Describes an issue that occurs in Windows Vista. Windows may block some startup programs and services. A resolution is included.
Mitigation of a large number of block events that collect in the MDATP portal – Microsoft Support
Describes how to mitigate large numbers of block events that collect in the MDATP portal.
Update your security processor (TPM) firmware – Microsoft Support
Learn how to update your security processor or TPM firmware to protect Windows 10 and your device from attacks by malicious software.
HackTool:Win32/AutoKMS – Microsoft Support
HackTool:Win32/AutoKMS
Turn Microsoft Defender Firewall on or off – Microsoft Support
Get the steps for turning Windows Defender Firewall on or off.
Risks of allowing apps through Windows Defender Firewall – Microsoft Support
Find out the risks of allowing apps through Windows Defender Firewall and how to add or remove apps from the list of approved apps.
Schedule a scan in Microsoft Defender Antivirus – Microsoft Support
Learn how to schedule a Windows Defender Antivirus scan at a time and frequency that you choose.
Update for Microsoft Defender antimalware platform (KB4052623) – Microsoft Support
An antimalware platform update package for Windows 10 and Windows Server 2016 is available.
No puedo instalar matlab R2020a, me sale un error del uninstaller200_win65.zip
No puedo instalar el matlab, lo he intentado varias veces, pero siempre me salta el mismo error de que no encuentra el uninstaller200_win64.zipNo puedo instalar el matlab, lo he intentado varias veces, pero siempre me salta el mismo error de que no encuentra el uninstaller200_win64.zip No puedo instalar el matlab, lo he intentado varias veces, pero siempre me salta el mismo error de que no encuentra el uninstaller200_win64.zip error, installation, matlab MATLAB Answers — New Questions
Where to manage Microsoft Loop Workspace
Hi mates
currently using loop in teams,
i’m facing issue with managing workspaces and adding ext stakeholders
it seems there is an authorization issue
could you tell me more please
Thanks
Amaury
Hi matescurrently using loop in teams,i’m facing issue with managing workspaces and adding ext stakeholdersit seems there is an authorization issuecould you tell me more pleaseThanksAmaury Read More
Sticky Keys Taskbar icon
I am running Windows 11.
I recently had occasion to re-discover “Sticky Keys”. I had to make multiple selections in a row of data and it allowed me to lock the CTRL key and select individual items.
As I looked to find out more about this feature, there were many mentions of a sticky key icon on the taskbar.
I have not been able to see an icon when Sticky Keys is activated.
Please advise how I can have a Sticky Keys icon in the taskbar when the feature is activated.
thanks
I am running Windows 11. I recently had occasion to re-discover “Sticky Keys”. I had to make multiple selections in a row of data and it allowed me to lock the CTRL key and select individual items. As I looked to find out more about this feature, there were many mentions of a sticky key icon on the taskbar. I have not been able to see an icon when Sticky Keys is activated. Please advise how I can have a Sticky Keys icon in the taskbar when the feature is activated. thanks Read More
Change email address this website
I need to change the email address that I use to log into this website. However, the two spaces to change the email address are greyed out.
Question: What do I need to do to “un-grey” the email change spaces?
Thanks for any assistance you can offer.
I need to change the email address that I use to log into this website. However, the two spaces to change the email address are greyed out. Question: What do I need to do to “un-grey” the email change spaces? Thanks for any assistance you can offer. Read More
Trouble Debugging AI Agent Bot in Teams Using Teams Toolkit in VS Code
I am trying to build an AI agent bot in Teams using the Teams Toolkit in the VS Code plugin, following the instructions in this LINK.
I was able to successfully complete it until step G, where I updated the Azure OpenAI key, endpoint and deployment name.
However, when I try to debug in the Test Tool, it does not open the bot, and it doesn’t get connected. I get the following error:
Please help me unblock myself. I also need help on how to finally test this in teams or a web app. Currently in the custom bot I created (in python), the config.py file requires bot ID and password (where do I get those?) but the link only instructs updating the Azure openAI credentials in .env.testtool.user. What am I missing?
I am trying to build an AI agent bot in Teams using the Teams Toolkit in the VS Code plugin, following the instructions in this LINK. I was able to successfully complete it until step G, where I updated the Azure OpenAI key, endpoint and deployment name. However, when I try to debug in the Test Tool, it does not open the bot, and it doesn’t get connected. I get the following error:Please help me unblock myself. I also need help on how to finally test this in teams or a web app. Currently in the custom bot I created (in python), the config.py file requires bot ID and password (where do I get those?) but the link only instructs updating the Azure openAI credentials in .env.testtool.user. What am I missing? Read More
double and triple integral for a complex function. I coded but did not get any output
f = (-1) * (x + l/2) ./ ((x + l/2).^2 + (y – y1).^2 + (z – z1).^2).^(3/2);
The goal is to do the double integral of that function over dy1 and dz1 and then the next step is to do the triple integral of the result(double integration result) over dx,dy and dz. I tried these in several ways but it looks like Matlab is unable to to this integration. Any suggestion?f = (-1) * (x + l/2) ./ ((x + l/2).^2 + (y – y1).^2 + (z – z1).^2).^(3/2);
The goal is to do the double integral of that function over dy1 and dz1 and then the next step is to do the triple integral of the result(double integration result) over dx,dy and dz. I tried these in several ways but it looks like Matlab is unable to to this integration. Any suggestion? f = (-1) * (x + l/2) ./ ((x + l/2).^2 + (y – y1).^2 + (z – z1).^2).^(3/2);
The goal is to do the double integral of that function over dy1 and dz1 and then the next step is to do the triple integral of the result(double integration result) over dx,dy and dz. I tried these in several ways but it looks like Matlab is unable to to this integration. Any suggestion? doble integration, matlab MATLAB Answers — New Questions