Category: News
Ghant Chart Times scale Dates
Please assist,
How do I change the time scale on the Ghant view.? I shows the year as 2025 July.. I need it to show Month first then year. The drop down also does not show the format I want only this????
Please assist, How do I change the time scale on the Ghant view.? I shows the year as 2025 July.. I need it to show Month first then year. The drop down also does not show the format I want only this???? Read More
Plotting deflection of beam using macaulay functions
I am trying to plot the deflection of a beam under bending forces. My understanding is to use the heaviside function but i am having trouble plotting these points. An example of this function would be: slope=(1/(E*I))*(146.5*<x>^2+315<x-0.12>^2-70.24*,x.^3)I am trying to plot the deflection of a beam under bending forces. My understanding is to use the heaviside function but i am having trouble plotting these points. An example of this function would be: slope=(1/(E*I))*(146.5*<x>^2+315<x-0.12>^2-70.24*,x.^3) I am trying to plot the deflection of a beam under bending forces. My understanding is to use the heaviside function but i am having trouble plotting these points. An example of this function would be: slope=(1/(E*I))*(146.5*<x>^2+315<x-0.12>^2-70.24*,x.^3) macaulay, deflection of beam MATLAB Answers — New Questions
how to convert or generate prn files to xlsx files
i have .prn files i want to covert those files to xlsx filesi have .prn files i want to covert those files to xlsx files i have .prn files i want to covert those files to xlsx files multiple prn files to xlsx files MATLAB Answers — New Questions
How to recover deleted files from SD Card for free on Windows 10?
Hi everyone,
I have an SD card connected to my camera and I accidentally deleted dozens of photos from it. I’m using Windows 10 and I’m desperately looking for a way to recover deleted files from SD Card. These photos are really important to me, so I’m hoping there’s a reliable solution out there.
I’ve read that it’s possible to recover deleted files from an SD card as long as they haven’t been overwritten, but I’m not sure which tools or methods are the best to use. I would appreciate any recommendations for reliable and easy-to-use software that can help me recover my deleted photos.
Regards,
Hunter
Hi everyone, I have an SD card connected to my camera and I accidentally deleted dozens of photos from it. I’m using Windows 10 and I’m desperately looking for a way to recover deleted files from SD Card. These photos are really important to me, so I’m hoping there’s a reliable solution out there. I’ve read that it’s possible to recover deleted files from an SD card as long as they haven’t been overwritten, but I’m not sure which tools or methods are the best to use. I would appreciate any recommendations for reliable and easy-to-use software that can help me recover my deleted photos. Regards,Hunter Read More
KQL Query for Defender for Endpoint to Hunt Users who download any new software.
Hello Everyone,
Anyone could help me to build a KQL query in which I can hunt users who download any new software in my company environment. see below is a query which i build but this query results me all logs including system logs, I just want to see only new downloaded files software logs.
”
Hello Everyone, Anyone could help me to build a KQL query in which I can hunt users who download any new software in my company environment. see below is a query which i build but this query results me all logs including system logs, I just want to see only new downloaded files software logs.” // Define the time range for the querylet startTime = ago(7d);let endTime = now();// Filter DeviceFileEvents for downloaded executable files (e.g., .exe, .msi)DeviceFileEvents| where ActionType == “FileCreated”| where FileName endswith “.exe” or FileName endswith “.msi” or FileName endswith “.msix” or FileName endswith “.dmg”| summarize Count = count(), FirstSeen = min(Timestamp), LastSeen = max(Timestamp) by DeviceId, Timestamp, ReportId, DeviceName, InitiatingProcessAccountName, FileName, FolderPath| project DeviceId, Timestamp = LastSeen, ReportId, DeviceName, User = InitiatingProcessAccountName, FileName, FolderPath, Count, FirstSeen, LastSeen| order by LastSeen desc” Read More
Allow all external domain
Hi,
When i applied the policy i was unable to chat with other organization users can any one tell which configuration i have missed
Hi,When i applied the policy i was unable to chat with other organization users can any one tell which configuration i have missed Read More
Microsoft Outlook for iOS and Android: The Dictation feature will retire in September 2024
Hi everyone,
Got an email from Microsoft message centre saying the Dictation feature will be retired in Sept 2024 for iOS and Android devices.
However, according to the MC841218 Admins don’t have any option to override this. Any reasons why Microsoft will retire this feature, considering accessibility for end users will be affected?
Also, any advise in how to check, how many users use this feature?
Hi everyone, Got an email from Microsoft message centre saying the Dictation feature will be retired in Sept 2024 for iOS and Android devices.However, according to the MC841218 Admins don’t have any option to override this. Any reasons why Microsoft will retire this feature, considering accessibility for end users will be affected?Also, any advise in how to check, how many users use this feature? Read More
I face a problem with the dimensions of Z as it should be a 2×2 matrix.
%——Creating a strain matrix———–%
E = zeros(2*(size(K1,1)-1),2*(size(K1,1)-1));
for j = 1: (size(K1,1)-1)
for i = 1: (size(K1,1)-1)
v = [zpk1(j,i);zpk2(j,i);zpk1(j,i+1);zpk2(j,i+1);zpk1(j+1,i+1);zpk2(j+1,i+1);zpk1(j+1,i);zpk2(j+1,i)];
e1= strain1(v);
e2= strain2(v);
e3= strain3(v);
e4= strain4(v);
E((2*j-1),(2*i-1)) = e1(1);
E((2*j-1),2*i) = e2(1);
E(2*j,(2*i-1)) = e4(1);
E(2*j,2*i) = e3(1);
end
end
su = round(4*d/g)+1;
r = E((((su-1)- round(d/g)):-1:1),(su-1));
p = E((((su-1)- round(d/g)):-1:1),(su));
st = (p+r)./(1.5*(10)^(-4));
m = g*(size(r)-1);
H = 0:g:(m);
h = H./10;
writematrix(st)
type ‘st.txt’
writematrix(h)
type ‘h.txt’
plot(h,st)
xlim([0 1.5])
xlabel("X2/d",’fontsize’,14)
ylabel("Normalised Strain along vertical path", ‘fontsize’,13)
legend("d/w = 0.5")
saveas(gcf,’plot.png’)
contourf(st)
colorbar
saveas(gcf,’contour.png’)
The final plot of the above code should resemble something like this:
I have double chekced, the formula is correct and the value of st at a given r and p match with the experimental results. However, I face a problem with the dimensions of Z as it should be a 2×2 matrix.
Thank you in advance.%——Creating a strain matrix———–%
E = zeros(2*(size(K1,1)-1),2*(size(K1,1)-1));
for j = 1: (size(K1,1)-1)
for i = 1: (size(K1,1)-1)
v = [zpk1(j,i);zpk2(j,i);zpk1(j,i+1);zpk2(j,i+1);zpk1(j+1,i+1);zpk2(j+1,i+1);zpk1(j+1,i);zpk2(j+1,i)];
e1= strain1(v);
e2= strain2(v);
e3= strain3(v);
e4= strain4(v);
E((2*j-1),(2*i-1)) = e1(1);
E((2*j-1),2*i) = e2(1);
E(2*j,(2*i-1)) = e4(1);
E(2*j,2*i) = e3(1);
end
end
su = round(4*d/g)+1;
r = E((((su-1)- round(d/g)):-1:1),(su-1));
p = E((((su-1)- round(d/g)):-1:1),(su));
st = (p+r)./(1.5*(10)^(-4));
m = g*(size(r)-1);
H = 0:g:(m);
h = H./10;
writematrix(st)
type ‘st.txt’
writematrix(h)
type ‘h.txt’
plot(h,st)
xlim([0 1.5])
xlabel("X2/d",’fontsize’,14)
ylabel("Normalised Strain along vertical path", ‘fontsize’,13)
legend("d/w = 0.5")
saveas(gcf,’plot.png’)
contourf(st)
colorbar
saveas(gcf,’contour.png’)
The final plot of the above code should resemble something like this:
I have double chekced, the formula is correct and the value of st at a given r and p match with the experimental results. However, I face a problem with the dimensions of Z as it should be a 2×2 matrix.
Thank you in advance. %——Creating a strain matrix———–%
E = zeros(2*(size(K1,1)-1),2*(size(K1,1)-1));
for j = 1: (size(K1,1)-1)
for i = 1: (size(K1,1)-1)
v = [zpk1(j,i);zpk2(j,i);zpk1(j,i+1);zpk2(j,i+1);zpk1(j+1,i+1);zpk2(j+1,i+1);zpk1(j+1,i);zpk2(j+1,i)];
e1= strain1(v);
e2= strain2(v);
e3= strain3(v);
e4= strain4(v);
E((2*j-1),(2*i-1)) = e1(1);
E((2*j-1),2*i) = e2(1);
E(2*j,(2*i-1)) = e4(1);
E(2*j,2*i) = e3(1);
end
end
su = round(4*d/g)+1;
r = E((((su-1)- round(d/g)):-1:1),(su-1));
p = E((((su-1)- round(d/g)):-1:1),(su));
st = (p+r)./(1.5*(10)^(-4));
m = g*(size(r)-1);
H = 0:g:(m);
h = H./10;
writematrix(st)
type ‘st.txt’
writematrix(h)
type ‘h.txt’
plot(h,st)
xlim([0 1.5])
xlabel("X2/d",’fontsize’,14)
ylabel("Normalised Strain along vertical path", ‘fontsize’,13)
legend("d/w = 0.5")
saveas(gcf,’plot.png’)
contourf(st)
colorbar
saveas(gcf,’contour.png’)
The final plot of the above code should resemble something like this:
I have double chekced, the formula is correct and the value of st at a given r and p match with the experimental results. However, I face a problem with the dimensions of Z as it should be a 2×2 matrix.
Thank you in advance. simulation, abaqus MATLAB Answers — New Questions
I am getting a ‘You do not have a valid license file’ whenever I launch MATLAB after installing even though I have a valid student license.
I get a ‘ you do not have a valid license file’ whenever I try to launch MATLAB. I tried to delete and reinstall it but that did not help. Please note that I have a valid student license and I’m able to use MATLAB online with that license.I get a ‘ you do not have a valid license file’ whenever I try to launch MATLAB. I tried to delete and reinstall it but that did not help. Please note that I have a valid student license and I’m able to use MATLAB online with that license. I get a ‘ you do not have a valid license file’ whenever I try to launch MATLAB. I tried to delete and reinstall it but that did not help. Please note that I have a valid student license and I’m able to use MATLAB online with that license. you do not have a valid license file, license MATLAB Answers — New Questions
¿Cómo llamar al teléfono United México?::-
Para marcar al teléfono United Airlines México llame aquí +52 –55 8526 3538 / +52 -55 8526 3538 Atención al cliente de esta aerolínea está abierto 24*7 horas para ayudar a los clientes de United Airlines México. por teléfono puede hacer el cambio de vuelo. dejar abiertos los billetes, con los ejecutivos de aerolíneas United México. @pacos
Para marcar al teléfono United Airlines México llame aquí +52 -55 8526 3538 / +52 -55 8526 3538 Atención al cliente de esta aerolínea está abierto 24*7 horas para ayudar a los clientes de United Airlines México. por teléfono puede hacer el cambio de vuelo. dejar abiertos los billetes, con los ejecutivos de aerolíneas United México. @pacos Read More
Window defender Black Screen
Since last week, my Windows Defender hasn’t been working. In the Control Center, it says, ‘The Windows Security Center Service can’t be started.’ Additionally, when I open Windows Defender, it displays a blank or black screen. Please help me fix this.
Since last week, my Windows Defender hasn’t been working. In the Control Center, it says, ‘The Windows Security Center Service can’t be started.’ Additionally, when I open Windows Defender, it displays a blank or black screen. Please help me fix this. Read More
How to use PowerShell cmdlet to export content search results and download locally on Linux Server?
I need to do a compliance project. I want to export the content search results to a specific location, and then download them locally. How do I use the PowerShell cmdlet such as New-ComplianceSearchAction -Export to reach the goal, please?
I saw one solution like this :
1.Export the data via New-ComplianceSearchAction -Export cmdlet;
2. Use eDiscovery Export Tool to download locally.
The link is : https://techcommunity.microsoft.com/t5/microsoft-365/export-to-pst-via-powershell/m-p/95007. But I have a question: The eDiscovery tool is just available in Windows system, right? I need to release the system on Linux Server.
Any help or guidance would be greatly appreciated!
I need to do a compliance project. I want to export the content search results to a specific location, and then download them locally. How do I use the PowerShell cmdlet such as New-ComplianceSearchAction -Export to reach the goal, please? I saw one solution like this :1.Export the data via New-ComplianceSearchAction -Export cmdlet;2. Use eDiscovery Export Tool to download locally.The link is : https://techcommunity.microsoft.com/t5/microsoft-365/export-to-pst-via-powershell/m-p/95007. But I have a question: The eDiscovery tool is just available in Windows system, right? I need to release the system on Linux Server. Any help or guidance would be greatly appreciated! Read More
Need help to burn dmg to usb for making Mac bootable USB drive
My wife’s MacBook Air was stuck on system update after reboot and can’t get into the desktop. Unfortunately, this is the only Apple device at our home. I need to make a bootable USB on my Windows 11 PC for reinstalling macOS on this Mac.
I heard it is possible to create a Mac bootable USB by burning dmg to USB in Windows PC. Can anyone confirm and how to do this on a Windows 11 or Windows 10 PC?
My wife’s MacBook Air was stuck on system update after reboot and can’t get into the desktop. Unfortunately, this is the only Apple device at our home. I need to make a bootable USB on my Windows 11 PC for reinstalling macOS on this Mac. I heard it is possible to create a Mac bootable USB by burning dmg to USB in Windows PC. Can anyone confirm and how to do this on a Windows 11 or Windows 10 PC? Read More
About Mobile Teams production
Dear sir
We are first trying to develop Teams addin app for Desktop Teams and Web Teams.
And next release we have a plan to produce Teams app for mobile.
Therefore, in the first release, we are going to display “Not Supported” screen or something like that in Team app for Mobile.
Is it possible to produce Teams addin app for desktop and web teams?
Many thanks
BH
Dear sirWe are first trying to develop Teams addin app for Desktop Teams and Web Teams.And next release we have a plan to produce Teams app for mobile.Therefore, in the first release, we are going to display “Not Supported” screen or something like that in Team app for Mobile. Is it possible to produce Teams addin app for desktop and web teams?Many thanksBH Read More
¿Cómo llamar a Telefono Avianca Mexico?
Para hablar por telefono Avianca Mexico llame +52 55 8526 3538 / +52 55 8526 3538 a este numero de contacto de aerolíneas luego seleccione el idioma en lo que prefiere hablar con una agente de Avianca Mexico. Atención al cliente de Avianca México está abierto por {24*7} ayudar a los clientes.si Pierde el vuelo por algunas razones entonces contacte directamente con uno de los expertos de aerolíneas Avianca Mexico.@pamela
Para hablar por telefono Avianca Mexico llame +52 55 8526 3538 / +52 55 8526 3538 a este numero de contacto de aerolíneas luego seleccione el idioma en lo que prefiere hablar con una agente de Avianca Mexico. Atención al cliente de Avianca México está abierto por {24*7} ayudar a los clientes.si Pierde el vuelo por algunas razones entonces contacte directamente con uno de los expertos de aerolíneas Avianca Mexico.@pamela Read More
How to auto populate field in a list from another referenced list?
I am using share point as a data base for an application for which I need to auto populate fields from one table to another so that I don’t need to add data manually
I am using share point as a data base for an application for which I need to auto populate fields from one table to another so that I don’t need to add data manually Read More
Issue with Hololens Emulator
Can’t open Hololens Emulator 2.
Version using: 10.0.22621.1390
Error:
[XDE:002] The emulator is unable to verify that the virtual machine is running:
One or more errors occurred.
[XdeHcs:006] HCS function call returned error: Logon failure: the user has not been granted the requested logon type at this computer. (Exception from HRESULT: 0x80070569).
Fixes Tried
Tried running the emulator as administrator
Can’t open Hololens Emulator 2. Version using: 10.0.22621.1390 Error:[XDE:002] The emulator is unable to verify that the virtual machine is running: One or more errors occurred.[XdeHcs:006] HCS function call returned error: Logon failure: the user has not been granted the requested logon type at this computer. (Exception from HRESULT: 0x80070569). Fixes TriedTried running the emulator as administrator Read More
The website had blank page
I need help with a Windows IIS issue. We have three websites running on the same server, and one of them is not working; the page loads blank. DNS is being resolved. When IIS is restarted, the first time a user opens the website, it loads; no other users receive a blank page. We use Cloudflare for DNS and WAF. SSL Certificate.
I need help with a Windows IIS issue. We have three websites running on the same server, and one of them is not working; the page loads blank. DNS is being resolved. When IIS is restarted, the first time a user opens the website, it loads; no other users receive a blank page. We use Cloudflare for DNS and WAF. SSL Certificate. Read More
Exploring Azure AI Services : Introduction and its use cases
Hey everyone! We’re Chanchal Kuntal and Shivam Goyal, both Microsoft Learn Student Ambassadors, excited to explore the world of AI and its impact on how we build applications. Today, we’re diving into Azure AI Services a set of powerful pre-built AI capabilities designed to simplify adding intelligence to your apps.
What are Azure Cognitive Services?
Imagine wanting to add features like image recognition, language translation, or sentiment analysis to your application. Building these capabilities from scratch would require significant time, expertise, and resources. That’s where Azure AI Services come in. They provide developers with ready-to-use AI models and APIs, so you can easily integrate intelligent features without needing to become an AI expert.
Key Capabilities of Azure AI Services:
Cognitive Services cover a broad range of AI domains, each with its own set of APIs. Here are some popular ones:
Computer Vision: Analyze images and videos to identify objects, faces, emotions, and more.
Text Analytics: Extract key phrases, detect sentiment, identify entities, and translate languages in text data.
Speech Recognition: Convert speech to text, understand spoken commands, and even translate spoken languages in real time.
Language Understanding (LUIS): Build applications that understand natural language and can respond to user requests or commands.
This flowchart helps you navigate the various Azure AI Services based on the type of data you want to analyze or process.
Getting Started with Azure AI Services :
The best way to experience the power of Cognitive Services is to jump in and start experimenting. Here’s a quick guide:
Create a Resource: Head over to the Azure Portal and create an Azure resource. You’ll be able to choose the specific service you want (e.g., Computer Vision).
Obtain Credentials: Once your resource is created, grab the API key and endpoint URL. You’ll need these to authenticate your requests to the service.
Explore the Quickstart Code: The Cognitive Services Quickstart Code repository on GitHub provides sample code for various Cognitive Services APIs in different programming languages like Python.
Real-World Use Cases:
Azure Cognitive Services unlock a wide range of possibilities across diverse industries:
E-commerce: Use Computer Vision to automatically tag products in images, enable visual search, or moderate user-generated content.
Social Media: Analyze sentiment in social media posts to understand public opinion or gauge customer satisfaction.
Customer Service: Build AI-powered chatbots using LUIS to answer customer questions or provide support.
Healthcare: Analyze medical images to assist with diagnosis or identify patterns in patient data.
To illustrate how Azure Cognitive Services can be used in real-world scenarios, let’s take a look at this document processing workflow example.
Ingestion:
Azure Web App (1b): A web application acts as the entry point, allowing users to upload documents for processing.
Azure Blob Storage (1a): The uploaded documents are stored in Blob Storage, providing a scalable and reliable storage solution.
Azure Queue Storage (2): The web app triggers an event in Queue Storage, signifying a new document is ready for processing.
Computer Vision Read API (3): The Computer Vision API extracts text from the document using Optical Character Recognition (OCR).
Azure Functions Orchestration (Steps 4-6):
Scan Activity (4): Azure Functions orchestrates the workflow, starting by scanning the extracted text to identify key information.
Classify Activity (5): The document is classified based on its content or specific criteria, leveraging the power of Azure Kubernetes Service for scalability and resource management.
Metadata Store Activity (6): Relevant metadata extracted from the document (e.g., document type, key dates, author) is stored in Azure Cosmos DB for easy retrieval and analysis.
Indexing Activity (6): The extracted text and metadata are indexed by Azure AI Search to create a powerful search index.
Access and Retrieval (7): The processed documents, enriched with metadata and a searchable index, are now readily accessible for analysis, reporting, or retrieval through other applications built on Azure.
Code Samples: A Glimpse into Integration:
Here’s a simple Python snippet showing how to use the Computer Vision API to analyze an image:
from azure.cognitiveservices.vision.computervision import ComputerVisionClient
from msrest.authentication import CognitiveServicesCredentials
# Your subscription key and endpoint
subscription_key = “YOUR_SUBSCRIPTION_KEY”
endpoint = “YOUR_ENDPOINT”
# Authenticate the client
computervision_client = ComputerVisionClient(endpoint, CognitiveServicesCredentials(subscription_key))
# Analyze an image
image_url = “https://example.com/image.jpg”
analysis = computervision_client.analyze_image(image_url, visual_features=[“description”])
# Print the image description
print(analysis.description.captions[0].text)
Best Practices for Using Cognitive Services:
To get the most out of Cognitive Services, keep these tips in mind:
Security: Secure your API keys and consider using Azure Key Vault to store them.
Scalability: Choose the appropriate pricing tier for your expected usage and consider autoscaling to handle varying demands.
Cost Management: Monitor your usage and costs to optimize spending.
Ready to Dive Deeper? Explore These Resources:
Quickstart – Getting started with Azure OpenAI Assistants (Preview) – Azure OpenAI | Microsoft Learn
Explore and configure the Azure Machine Learning workspace – Training | Microsoft Learn
Microsoft Azure AI Fundamentals: Natural Language Processing – Training | Microsoft Learn
Microsoft Azure AI Fundamentals: Computer Vision – Training | Microsoft Learn
Quickstart – Python client library – Azure Cosmos DB for NoSQL | Microsoft Learn
Build an AI-Powered Chatbot with LlamaIndex and Azure: Step-by-Step Guide
Conclusion:
Azure AI Services offer a powerful and accessible way to add AI capabilities to your applications. Whether you’re building a chatbot, analyzing customer feedback, or creating a personalized news feed, AI Services can help you enhance your applications and unlock the potential of AI. Start exploring, experimenting, and building intelligent solutions today!
Microsoft Tech Community – Latest Blogs –Read More