Month: June 2024
I have a function that adds a legend I want to make the legend group certain plots together yet so that instead of a legend with 14 entries there is a legend with 5 entries
I have managed to make a code that automates the plotting of data but I would like the code to group the plots into disticnt groups.
Let us say samples 1,3,5 – is group 1
and 2,4,6- is group 2
7,9,11 group 3
8,10,12 is group 4
and finally 13 & 14 is group 5
this is the code
Nsamples = 7;
%
L = 100; % coupon gauge section (mm)
A = 17; % coupon cross-sectional area (mm^2)
%
figure(1);
hold;
figure(2);
hold
%
for k = 1:Nsamples
%
file_name = [‘Sample’ num2str(k) ‘.csv’];
%
T = readtable(file_name,’VariableNamingRule’,’preserve’);
%
[test(k).disp,test(k).force,test(k).eyy] = post_fun(T);
%
figure(1)
h(k) = plot(test(k).disp,test(k).force);
set(h(k),’LineWidth’,2);
%
figure(2)
g(k) = plot(test(k).eyy*100,1000*test(k).force/A);
set(g(k),’LineWidth’,2);
%
leg_string{k} = [‘Sample ‘ num2str(k)];
%
end
%
figure(1)
set(gcf,’Position’,[200 200 1024 768],’Color’,[1 1 1]);
set(gca,’FontSize’,24);
xlabel(‘Displacement (mm)’,’FontSize’,32,’Interpreter’,’latex’);
ylabel(‘Force (kN)’,’FontSize’,32,’Interpreter’,’latex’);
box on
grid on
legend(leg_string,’FontSize’,28,’Interpreter’,’latex’);
%
%
figure(2)
set(gcf,’Position’,[200 200 1024 768],’Color’,[1 1 1]);
set(gca,’FontSize’,24);
xlabel(‘Strain (%)’,’FontSize’,32,’Interpreter’,’latex’);
ylabel(‘Stress (MPa)’,’FontSize’,32,’Interpreter’,’latex’);
box on
grid on
legend(leg_string,’FontSize’,28,’Interpreter’,’latex’);
%
%
function [disp,force,eyy] = post_fun(T)
%
disp = table2array(T(:,4));
force = table2array(T(:,end));
eyy = table2array(T(:,10));
%
index = isnan(disp) | isnan(force) | isnan(eyy) | disp < 0 | force < 0 | eyy < 0;
%
disp(index) = [];
force(index) = [];
eyy(index) = [];
%
[~,index] = max(force);
disp(index+1:end) = [];
force(index+1:end) = [];
eyy(index+1:end) = [];
%
end
I have added sample 1-7 . csv but the code doesn’t seem to run on this page.
this is what the figure1+2 looks like
Hopefully you can help.
Thanks
AlexI have managed to make a code that automates the plotting of data but I would like the code to group the plots into disticnt groups.
Let us say samples 1,3,5 – is group 1
and 2,4,6- is group 2
7,9,11 group 3
8,10,12 is group 4
and finally 13 & 14 is group 5
this is the code
Nsamples = 7;
%
L = 100; % coupon gauge section (mm)
A = 17; % coupon cross-sectional area (mm^2)
%
figure(1);
hold;
figure(2);
hold
%
for k = 1:Nsamples
%
file_name = [‘Sample’ num2str(k) ‘.csv’];
%
T = readtable(file_name,’VariableNamingRule’,’preserve’);
%
[test(k).disp,test(k).force,test(k).eyy] = post_fun(T);
%
figure(1)
h(k) = plot(test(k).disp,test(k).force);
set(h(k),’LineWidth’,2);
%
figure(2)
g(k) = plot(test(k).eyy*100,1000*test(k).force/A);
set(g(k),’LineWidth’,2);
%
leg_string{k} = [‘Sample ‘ num2str(k)];
%
end
%
figure(1)
set(gcf,’Position’,[200 200 1024 768],’Color’,[1 1 1]);
set(gca,’FontSize’,24);
xlabel(‘Displacement (mm)’,’FontSize’,32,’Interpreter’,’latex’);
ylabel(‘Force (kN)’,’FontSize’,32,’Interpreter’,’latex’);
box on
grid on
legend(leg_string,’FontSize’,28,’Interpreter’,’latex’);
%
%
figure(2)
set(gcf,’Position’,[200 200 1024 768],’Color’,[1 1 1]);
set(gca,’FontSize’,24);
xlabel(‘Strain (%)’,’FontSize’,32,’Interpreter’,’latex’);
ylabel(‘Stress (MPa)’,’FontSize’,32,’Interpreter’,’latex’);
box on
grid on
legend(leg_string,’FontSize’,28,’Interpreter’,’latex’);
%
%
function [disp,force,eyy] = post_fun(T)
%
disp = table2array(T(:,4));
force = table2array(T(:,end));
eyy = table2array(T(:,10));
%
index = isnan(disp) | isnan(force) | isnan(eyy) | disp < 0 | force < 0 | eyy < 0;
%
disp(index) = [];
force(index) = [];
eyy(index) = [];
%
[~,index] = max(force);
disp(index+1:end) = [];
force(index+1:end) = [];
eyy(index+1:end) = [];
%
end
I have added sample 1-7 . csv but the code doesn’t seem to run on this page.
this is what the figure1+2 looks like
Hopefully you can help.
Thanks
Alex I have managed to make a code that automates the plotting of data but I would like the code to group the plots into disticnt groups.
Let us say samples 1,3,5 – is group 1
and 2,4,6- is group 2
7,9,11 group 3
8,10,12 is group 4
and finally 13 & 14 is group 5
this is the code
Nsamples = 7;
%
L = 100; % coupon gauge section (mm)
A = 17; % coupon cross-sectional area (mm^2)
%
figure(1);
hold;
figure(2);
hold
%
for k = 1:Nsamples
%
file_name = [‘Sample’ num2str(k) ‘.csv’];
%
T = readtable(file_name,’VariableNamingRule’,’preserve’);
%
[test(k).disp,test(k).force,test(k).eyy] = post_fun(T);
%
figure(1)
h(k) = plot(test(k).disp,test(k).force);
set(h(k),’LineWidth’,2);
%
figure(2)
g(k) = plot(test(k).eyy*100,1000*test(k).force/A);
set(g(k),’LineWidth’,2);
%
leg_string{k} = [‘Sample ‘ num2str(k)];
%
end
%
figure(1)
set(gcf,’Position’,[200 200 1024 768],’Color’,[1 1 1]);
set(gca,’FontSize’,24);
xlabel(‘Displacement (mm)’,’FontSize’,32,’Interpreter’,’latex’);
ylabel(‘Force (kN)’,’FontSize’,32,’Interpreter’,’latex’);
box on
grid on
legend(leg_string,’FontSize’,28,’Interpreter’,’latex’);
%
%
figure(2)
set(gcf,’Position’,[200 200 1024 768],’Color’,[1 1 1]);
set(gca,’FontSize’,24);
xlabel(‘Strain (%)’,’FontSize’,32,’Interpreter’,’latex’);
ylabel(‘Stress (MPa)’,’FontSize’,32,’Interpreter’,’latex’);
box on
grid on
legend(leg_string,’FontSize’,28,’Interpreter’,’latex’);
%
%
function [disp,force,eyy] = post_fun(T)
%
disp = table2array(T(:,4));
force = table2array(T(:,end));
eyy = table2array(T(:,10));
%
index = isnan(disp) | isnan(force) | isnan(eyy) | disp < 0 | force < 0 | eyy < 0;
%
disp(index) = [];
force(index) = [];
eyy(index) = [];
%
[~,index] = max(force);
disp(index+1:end) = [];
force(index+1:end) = [];
eyy(index+1:end) = [];
%
end
I have added sample 1-7 . csv but the code doesn’t seem to run on this page.
this is what the figure1+2 looks like
Hopefully you can help.
Thanks
Alex plot, figure, legend MATLAB Answers — New Questions
Use Purview to provide visibility into sending sensitive data to smartphones connected via USB
Hey guys! We verified that when testing to send files that contain sensitive information with the destination to smartphones connected via USB, there is no visibility of these actions in the activity explorer and the DLP rule is not triggered. Is there any guidance regarding cases like this that we can apply to Microsoft Purview/DLP?
Hey guys! We verified that when testing to send files that contain sensitive information with the destination to smartphones connected via USB, there is no visibility of these actions in the activity explorer and the DLP rule is not triggered. Is there any guidance regarding cases like this that we can apply to Microsoft Purview/DLP? Read More
Include Device Name in Alerts for Non-Compliant Devices with Low Disk Space
Hello everyone,
Is it possible to configure notifications for non-compliant devices to include the device name? We have a policy in place that marks devices with less than 5% available space as non-compliant. For efficient resolution, we’d like to ensure that the email notifications sent to IT include the specific device name. Since these devices belong to students, they are unlikely to resolve the issue on their own, so a proactive approach on our part is essential. This way, we can quickly address the problem and ensure smooth operation.
Hello everyone,Is it possible to configure notifications for non-compliant devices to include the device name? We have a policy in place that marks devices with less than 5% available space as non-compliant. For efficient resolution, we’d like to ensure that the email notifications sent to IT include the specific device name. Since these devices belong to students, they are unlikely to resolve the issue on their own, so a proactive approach on our part is essential. This way, we can quickly address the problem and ensure smooth operation. Read More
Personalize favorite folders
Suggestion:
I was here imagining how wonderful and badass it would be for Edge, if we could customize in our favorites folders with our own images or icons.
It could possible.?
Suggestion:I was here imagining how wonderful and badass it would be for Edge, if we could customize in our favorites folders with our own images or icons. It could possible.? Read More
How to lookup and pull data from multiple sheets
Hello! I need to pull a list of all staff that say that they need follow up training. Please help! Thanks!
Here is the data I need to pull:
Here is how the sheets are setup
Hello! I need to pull a list of all staff that say that they need follow up training. Please help! Thanks!Here is the data I need to pull: Here is how the sheets are setup Read More
Open bookmark in a different profile
I have three profiles configured on Edge: one personal and two for business. I handle numerous URLs, and some are accessible only through business profiles.
Links for Company A and Company B are exclusive to their respective profiles, as each profile contains specific rules and logins associated with the Microsoft business account.
Is it possible to centralize all favorites in a single profile and have an option to “open in Profile X” when right-clicking on a favorite?
I have three profiles configured on Edge: one personal and two for business. I handle numerous URLs, and some are accessible only through business profiles. Links for Company A and Company B are exclusive to their respective profiles, as each profile contains specific rules and logins associated with the Microsoft business account. Is it possible to centralize all favorites in a single profile and have an option to “open in Profile X” when right-clicking on a favorite? Read More
The bookings trigger “When an appointment is updated” is not working
1. the bookings trigger “When an appointment is updated” is not working, it keeps on running until the trigger time is up,
2. “customer notes” are not able to fetch from the bookings trigger “when a booking appointment is created”
Does anybody face same issue?
1. the bookings trigger “When an appointment is updated” is not working, it keeps on running until the trigger time is up,2. “customer notes” are not able to fetch from the bookings trigger “when a booking appointment is created”Does anybody face same issue? Read More
Random Pop-ups
help!!
At somewhat random times I get a “black window” pop-up that stays up for several seconds and then goes away. If I hover over it I’ll see something like the following:
c:userstomtiappdataroaminglicensing Validator updaterSecurityHealthService.exe or
c:userstomtiappdataroamingsecure Transaction SystemsSecurityHealthservice.exe or
c:userstomtiappdataroaminglicensing validator
What should I do?
help!!At somewhat random times I get a “black window” pop-up that stays up for several seconds and then goes away. If I hover over it I’ll see something like the following: c:userstomtiappdataroaminglicensing Validator updaterSecurityHealthService.exe orc:userstomtiappdataroamingsecure Transaction SystemsSecurityHealthservice.exe orc:userstomtiappdataroaminglicensing validator What should I do? Read More
Why does Copilot stop answering?
Frequently when using Copilot, it will stop answering with a message insisting on a change of topic. These refusals to respond don’t seem to be associated with the topic under discussion or any objectionable material, but are entirely random. Starting a new topic and restating the unanswered question just gives the same “change topic” message. The only fix is to shut Copilot down and try again later. Needless to say, this is suboptimal.
Does anyone know what’s going on around here and how to fix it?
Frequently when using Copilot, it will stop answering with a message insisting on a change of topic. These refusals to respond don’t seem to be associated with the topic under discussion or any objectionable material, but are entirely random. Starting a new topic and restating the unanswered question just gives the same “change topic” message. The only fix is to shut Copilot down and try again later. Needless to say, this is suboptimal. Does anyone know what’s going on around here and how to fix it? Read More
MS Project 2021 Professional missing commands
The following Commands are missing Microsoft Project Professional 2021:
Sprints Project template (from the File Ribbon |New tab).Link task to planner plan (from the Task Ribbon | Planner tab (the tab is also missing)).Task Boards (from the Report Ribbon).Manage Sprints (from the Project Ribbon).Task Board (from the View Ribbon).
Will those commands become available when logged to a work account with a current subscription to MS 365 ?
Thank you
The following Commands are missing Microsoft Project Professional 2021: Sprints Project template (from the File Ribbon |New tab).Link task to planner plan (from the Task Ribbon | Planner tab (the tab is also missing)).Task Boards (from the Report Ribbon).Manage Sprints (from the Project Ribbon).Task Board (from the View Ribbon).Will those commands become available when logged to a work account with a current subscription to MS 365 ? Thank you Read More
Error 2604 upon login
This might not be the place for this regarding MRD and AVD, but I have one M1-based Apple laptop that I can logon to the Army desktop fine, but on an intel-based machine (macOS 13.6.7, MRD 10.9.8) I get an error 2604 at the login screen after punching in my pin. If this is dealt with somewhere else a simple referral will be fine, but I have not seen this issue on any Army or Microsoft support boards or troubleshooting guides.
And after this it MRD gives a message “Error: MSAL failed to acquire claims token – Network infrastructure failed.”
This might not be the place for this regarding MRD and AVD, but I have one M1-based Apple laptop that I can logon to the Army desktop fine, but on an intel-based machine (macOS 13.6.7, MRD 10.9.8) I get an error 2604 at the login screen after punching in my pin. If this is dealt with somewhere else a simple referral will be fine, but I have not seen this issue on any Army or Microsoft support boards or troubleshooting guides. And after this it MRD gives a message “Error: MSAL failed to acquire claims token – Network infrastructure failed.” Read More
Azure API Center: Centralizando a Gestão de APIs para Melhoria da Descoberta e Governança
Já pensou na possibilidade de centralizar a gestão de suas APIs em um único local, facilitando a descoberta e governança de seus serviços? O Azure API Center é uma solução que ajudará você a alcançar esse objetivo, oferecendo uma plataforma unificada para a criação, publicação, gerenciamento e monitoramento de APIs. Neste artigo, vamos entender melhor sobre esse serviço, suas funcionalidades e benefícios.
Novo Treinamento Gratuito no Microsoft Learn: Introdução ao Azure API Center!
Mas, antes de começarmos, gostaríamos de trazer uma grande novidade! Há um novo treinamento gratuito no Microsoft Learn sobre o Azure API Center.
Lembrando que, após a conclusão do curso, você receberá um certificado de conclusão que poderá ser compartilhado em suas redes sociais e até mesmo no seu currículo ou LinkedIn. Confira agora mesmo o treinamento:
O que é o Azure API Center?
O Azure API Center permite que as organizações desenvolvam e mantenham um inventário estruturado e organizado de suas APIs, independentemente de seu tipo, estágio de ciclo de vida ou local de implantação. Este hub centralizado permite que stakeholders, como API Producers, API Consumers e API Platform Engineers, descubram, reutilizem e governem as APIs de maneira eficiente. Ao fornecer detalhes de versão, arquivos de definição de API e metadados comuns, o Azure API Center garante que as APIs sejam facilmente acessíveis e gerenciáveis.
Mas, quais são os principais benefícios desse serviço? Vejamos a seguir.
Benefícios do Azure API Center
Criar e Manter um Inventário de APIs Organizacional: O Azure API Center nos permite criar um inventário completo de todas as APIs de uma organização. Além disso, é possível promover a colaboração entre API Producers, API Consumers e API Platform Engineers para aumentar a reutilização, qualidade, segurança, conformidade e produtividade para todos os envolvidos, especialmente para os desenvolvedores.
Governança das APIs da Organização: Com o Azure API Center é possível obter visibilidade completa das APIs sendo produzidas e consumidas em toda a organização. Outro ponto importante a ser destacado é a definição de metadados personalizados, para que sejam analisadas as definições de API para garantir a conformidade com os padrões organizacionais.
Descoberta Fácil de APIs: Com esse serviço é possível também promover a reutilização de APIs para maximizar a produtividade dos desenvolvedores e permitir que os gerentes de programas e desenvolvedores descubram APIs fazendo uso de metadados embutidos e personalizados.
Acelerar o Consumo de APIs: E, finalmente, tempo é algo precioso, e com o Azure API Center é possível melhorar a produtividade dos desenvolvedores ao garantir o consumo seguro de APIs de acordo com os padrões organizacionais.
Principais Capacidades do Azure API Center
O Azure API Center oferece uma série de capacidades que ajudam a simplificar a gestão de APIs, tais como:
Gestão de Inventário de APIs: Registre todas as APIs da organização em um inventário centralizado.
Representação Real das APIs: Adicione informações reais sobre cada API, incluindo versões e definições da OpenAPI. É possível listar implantações de APIs e associá-las a ambientes de tempo de execução.
Governança de APIs: Organize e filtre APIs usando metadados embutidos e personalizados. Configure linting e análise para garantir a qualidade da definição de APIs.
Descoberta e Reutilização de APIs: Permita a descoberta de APIs através do Portal do Azure, Portal do API Center e ferramentas de desenvolvimento integradas ao Visual Studio Code: Azure API Center Extension. Essa extensão permite criar, descobrir, explorar e consumir APIs diretamente do Visual Studio Code.
Disponibilidade de Região e Preços
O Azure API Center está disponível em várias regiões do Azure, incluindo:
Austrália Leste
Índia Central
Leste dos EUA
Sul do Reino Unido
Oeste da Europa
O Azure API Center é oferecido nos planos Free e Standard.
Há muitos outros aspectos interessantes sobre o Azure API Center. Deixaremos um vídeo realizado por Julia Kasper – Program Manager do Azure API Center na Microsoft durante o Microsoft Build 2024 falando mais sobre o serviço:
Próximos Passos
O Azure API Center é uma ferramenta poderosa para centralizar e gerenciar APIs dentro de uma organização. Com seus recursos robustos e futuras melhorias, promete simplificar a governança de APIs, melhorar a visibilidade e aprimorar a experiência geral dos desenvolvedores.
Encorajamos você a explorar o Azure API Center e descobrir como ele pode ajudar sua organização a gerenciar APIs de maneira mais eficiente.
Recursos Adicionais
Se você quiser saber mais sobre o Azure API Center, acesse a documentação oficial do Azure e outros recursos abaixo:
Documentação Oficial do Azure API Center
Tutorial: Defina metadados personalizados
Tutorial: Registre APIs no seu inventário de APIs
Tutorial: Adicione ambientes e implantações para APIs
Exemplos, laboratórios e templates para Azure API Center
Aqui também vão alguns blogs publicados por Cloud Advocates e Product Managers da Microsoft sobre o Azure API Center:
Azure API Center: The First Look by Justin Yoo
Azure API Center: Your Comprehensive API Inventory and Governance Solution by Julia Kasper
Universal API Center – A Truly Comprehensive API Catalog that Warmly Welcomes All Your APIs! by Alexandre Vieira
Exemplos e Referências
O Portal APIC (Azure API Center) desenvolvido, conforme a imagem abaixo, usa as seguintes tecnologias:
.NET SDK 8.0
Node.js v.18x
API Center Extension
Azure Developer CLI
Azure CLI
Se você gosta de aprender através de vídeos, recomendamos essa série de vídeos sobre o Azure API Center:
Espero que você tenha gostado deste artigo e que ele tenha sido útil para você. Se tiver alguma dúvida ou comentário, sinta-se à vontade para compartilhar conosco.
Até o próximo artigo!
Microsoft Tech Community – Latest Blogs –Read More
ON DEMAND | SharePoint in-depth: Learning content
There’s the thinking cap. And then there’s the deep-thinking cap. It’s time to put on the latter.
This article contains eight in-depth videos about SharePoint – now on demand and embedded below, with five more coming soon.
You’ll discover SharePoint’s capabilities and upcoming features, focusing on content management, collaboration, and leveraging AI in Microsoft 365. You’ll gain a deeper understanding of AI’s role in content creation and management. As the intranet evolves, too shall you advance along with tools to help build strategies for corporate communications. As your own brand ambassador, you’ll learn how to personalize SharePoint – to create content consistent with organizational identity. And of course, we have updated content for admins and devs – to see the latest ways to manage and extend SharePoint. Last, we added Jeff Teper’s recent keynote to give you the broadest insights on the transformative impact of Copilot in the mix with Microsoft 365, signaling a new era of AI-driven productivity.
OK, on to the show(s) (on demand)!!! All content is as it was presented during the Microsoft 365 Community Conference, presented by top product makers from Microsoft.
Note: Beyond the SharePoint content below, you can view all recorded sessions on demand now within the full Microsoft 365 Community Conference playlist on the Microsoft Community Learning channel (YouTube). You’ll find keynotes, general sessions, and numerous breakout sessions — in their entirety.
The best, recent overview of SharePoint in the era of AI
“Content Management and Collaboration for the AI Era” presented by Zach Rosenfield, Melissa Torres, Lincoln DeMaris, Ashu Rawat, and Sesha Mani. Learning how creating content in the era of AI provides you with opportunities to unleash your creativity and simplify large-scale content management. You’ll see and hear ways to enrich your content, get insights from your store of knowledge, and transform document-driven solutions with experiences across Microsoft 365. Watch below:
SharePoint powers your intranet and communicators
“The intranet of tomorrow: beautiful, flexible, and AI ready” presented by Denise Trabona and Dave Cohen. What is the intranet of the future all about? We’ll cover industry trends around content presentation, more robust authoring experiences, and what the era of AI means for your intranet. The video contains many demos and design tips and tricks throughout. Watch now:
“Planning a Corporate Comms strategy w/SharePoint News & Viva Amplify” presented by Naomi Moneypenny, Maeneka Grewal, and Dave Cohen. This transformation track session spans strategy, best practices, and product guidance. Learn how to plan a corporate communications strategy leveraging the power of SharePoint news and Viva Amplify. Watch now:
Look and feel: Make SharePoint your own.
“Branding SharePoint Sites, Clipchamp Videos, Teams Meetings, & More” presented by Cathy Dew. Learn how to take control of your authoring experience, to create rich content, easily, by your design and on brand – throughout your intranet, across applications, and consistently. Cathy brings a lot of demos, how to guidance, and best practices. Watch now:
Manage and control: Get up to speed as an admin.
“What’s New in SharePoint Admin Center, Copilot, and Beyond” presented by Dave Minasyan. Learn how you can leverage Copilot within the SharePoint admin center to discover and learn new management and control capabilities, understand the impact to your organization, and quickly implement them. Watch now:
“Plan and Deliver a Friction Free Migration to Microsoft 365” presented by Visha Chadha, Tony Mathew, and Yogesh Ratnaparkhi. Are you considering migrating to Microsoft 365? Learn about the latest enhancements in Microsoft 365 migrations and how you can seamlessly migrate your organization to Microsoft from the current productivity stack including Google Workspace, Box, Dropbox, and on-premises networks. Watch now:
A new offer for developers
“SharePoint Embedded: Build custom content apps with Microsoft 365” presented by Marc Windle and Farreltin Fan. Explore how SharePoint Embedded accelerates content-centric app development and leverages Microsoft 365’s robust security, compliance, and collaboration capabilities. Build your custom app with SharePoint built in, as your app’s primary, robust content service. Watch below:
Get the broadest view of Microsoft 365, watch Jeff Teper’s opening keynote.
“The Age of Copilots” presented by Jeff Teper, Miceile Barrett, Derek Snyder, and Naomi Moneypenny. See how innovation in Microsoft Copilot, SharePoint, OneDrive, and Teams – combined with the familiarity and scale of Microsoft 365 – unlocks productivity and transforms business processes for everyone across all functions and industry in this new era of AI. Watch now:
Coming soon
We’ll update this blog post with more content as soon as the below gets published.
For now, review what related session content is “coming soon”:
“SharePoint: Maximize the value of your content with AI-powered content processing.”
“SharePoint: Transform your content experiences in the era of AI.”
“The Ins and Outs of Microsoft 365 Backup, Archive”
“SharePoint Architecture: A Look Behind the Scenes”
“Copilot for Microsoft 365: Extensibility 101”
SharePoint is the primary content services platform across Microsoft 365 apps.
Whether you’re collaborating with a project team on a Loop, watching a meeting recording via Stream, or using sites to supercharge your intranet, SharePoint is at the center of it all. This is that PB/month of content at work for you – be it a loop, a list, a file, a video, a site – it’s stored in and powered by SharePoint. This allows us to deliver a best-in-class content platform that our customers love, using apps that also abide by our trusted data security and privacy standards.
Thank you for your interest in taking your knowledge and depth of SharePoint to the next level. It warms our metadata-driven hearts!
Cheers, Mark “in depth” Kashman
Microsoft Tech Community – Latest Blogs –Read More
voltage exceed limit of distribution system
do the simulink program can simulate the voltage exceed grid code when solar pv is connected to grid? pls helpdo the simulink program can simulate the voltage exceed grid code when solar pv is connected to grid? pls help do the simulink program can simulate the voltage exceed grid code when solar pv is connected to grid? pls help simulink MATLAB Answers — New Questions
Strict inequalities are not supported (learn why)
Hello everyone
I need your help please , I am student and am working in LQR control by LMI
i face probleme with inequalities , firstly i was thinking that becose the version of matlab 2020 but now i am working with 2024Hello everyone
I need your help please , I am student and am working in LQR control by LMI
i face probleme with inequalities , firstly i was thinking that becose the version of matlab 2020 but now i am working with 2024 Hello everyone
I need your help please , I am student and am working in LQR control by LMI
i face probleme with inequalities , firstly i was thinking that becose the version of matlab 2020 but now i am working with 2024 lmi, inqualities, lqr MATLAB Answers — New Questions
Why do improperly formatted emails come through, yet I can’t block them?
I am getting a lot of spam emails with an oddly formatted address, and when I click to block them, I get a message that the address is improperly formatted and it does not let me block them.
For example, the sender’s address will be something like, email address removed for privacy reasons admin@1234zxcv. Note the space between hotmail.com and admin, plus 2 “@” signs. In order to block it, I have to copy the part after the 2nd “@” sign and manually enter it in my blocked senders list … which means I have to open the email (which, of course, Microsoft has told us we should not do).
If the address is improperly formatted, why in the world wouldn’t that be a red flag for hotmail? Why would Microsoft even let an email like that come through?
Between the whose junk mail fiasco and this, I am beginning to wonder if ANYONE at Microsoft is paying attention.
I am getting a lot of spam emails with an oddly formatted address, and when I click to block them, I get a message that the address is improperly formatted and it does not let me block them. For example, the sender’s address will be something like, email address removed for privacy reasons admin@1234zxcv. Note the space between hotmail.com and admin, plus 2 “@” signs. In order to block it, I have to copy the part after the 2nd “@” sign and manually enter it in my blocked senders list … which means I have to open the email (which, of course, Microsoft has told us we should not do). If the address is improperly formatted, why in the world wouldn’t that be a red flag for hotmail? Why would Microsoft even let an email like that come through? Between the whose junk mail fiasco and this, I am beginning to wonder if ANYONE at Microsoft is paying attention. Read More
Outlook with iCloud mail
I have a family e-mail account on iCloud ( @me.com) .
On this account is the Apple user ID account (email address removed for privacy reasons) and a proxy e-mail address for one family member (email address removed for privacy reasons)
The new version of Outlook on Windows 11 will let all of the e-mail be displayed in the Inbox (recipient shown as parent@me or name@me, but replying or generating a new e-mail it only gives the parent@me option to use.
Every other e-mail client I’ve used (Apple’s Mail for desktop as well as iOS mail) will let them work as stand-alone addresses. When you generate an e-mail you can pick as sender email address removed for privacy reasons, email address removed for privacy reasons, email address removed for privacy reasons, email address removed for privacy reasons, email address removed for privacy reasons
And the older MS Mail client that came with Windows prior to version 11 saw all e-mails and treated them differently.
I’ve got Outlook recognizing the email address removed for privacy reasons address, but does not allow email address removed for privacy reasons to work as an independent address.
Has anyone faced this before?
I have a family e-mail account on iCloud ( @me.com) . On this account is the Apple user ID account (email address removed for privacy reasons) and a proxy e-mail address for one family member (email address removed for privacy reasons) The new version of Outlook on Windows 11 will let all of the e-mail be displayed in the Inbox (recipient shown as parent@me or name@me, but replying or generating a new e-mail it only gives the parent@me option to use. Every other e-mail client I’ve used (Apple’s Mail for desktop as well as iOS mail) will let them work as stand-alone addresses. When you generate an e-mail you can pick as sender email address removed for privacy reasons, email address removed for privacy reasons, email address removed for privacy reasons, email address removed for privacy reasons, email address removed for privacy reasons And the older MS Mail client that came with Windows prior to version 11 saw all e-mails and treated them differently. I’ve got Outlook recognizing the email address removed for privacy reasons address, but does not allow email address removed for privacy reasons to work as an independent address. Has anyone faced this before? Read More
Bing Image Creator isn’t saving my images in the collections like it used to
It automatically saves the images in the recent collection that’s been saved, right? So, why does it keep saving to “My Saves” when the most recent collection I’ve saved to is not “My Saves”. I’ve done this before already and it works by clicking the save button again and removing the image from “My Saves” and saving it to the other collection I want the images to be automatically saved in (because I’m not sure you can click the save button without it automatically saving in the most recent collection) and it worked before. But now, it’s not wanting to do just that and I have to click numerous times to get it to save in the right collection.
It automatically saves the images in the recent collection that’s been saved, right? So, why does it keep saving to “My Saves” when the most recent collection I’ve saved to is not “My Saves”. I’ve done this before already and it works by clicking the save button again and removing the image from “My Saves” and saving it to the other collection I want the images to be automatically saved in (because I’m not sure you can click the save button without it automatically saving in the most recent collection) and it worked before. But now, it’s not wanting to do just that and I have to click numerous times to get it to save in the right collection. Read More
Partly english terms in german Windows Server 2019 – Update 2024-06
Hi folks,
Since the latest cumulative update (KB5039217), English terms have been appearing in the dialogs on our German-language Windows Server 2019 servers. Uninstalling this update fixes the problem, but in my opinion it is not a solution as it leads to security problems.
Are there other solutions to this?
Thanks in advance
Frank
Hi folks, Since the latest cumulative update (KB5039217), English terms have been appearing in the dialogs on our German-language Windows Server 2019 servers. Uninstalling this update fixes the problem, but in my opinion it is not a solution as it leads to security problems.Are there other solutions to this? Thanks in advanceFrank Read More
Update KB5039304 does not install
In Windows Update the update KB5039304 runs through 100%, but in restart it only runs to 36%.
After a few minutes there, it gives an error message (no numbers or anything identifiable) en performs a roll-back.
Back in Windows the update KB5039304 is then presented again etc. etc. etc.
In Windows Update the update KB5039304 runs through 100%, but in restart it only runs to 36%.After a few minutes there, it gives an error message (no numbers or anything identifiable) en performs a roll-back.Back in Windows the update KB5039304 is then presented again etc. etc. etc. Read More