Category: News
Friend Function implementation in MATLAB
Typically, the private properties of a class are not accessible by any other class or function from outside.
But, a friend function can be granted special access to private and protected members of a class in C++.
For further reference: https://en.cppreference.com/w/cpp/language/friend
Is there any way, I can implement this in MATLAB?
It would be really helpful if anyone could provide a sample code illustrating the implementation in MATLAB.
Thanks in advance.Typically, the private properties of a class are not accessible by any other class or function from outside.
But, a friend function can be granted special access to private and protected members of a class in C++.
For further reference: https://en.cppreference.com/w/cpp/language/friend
Is there any way, I can implement this in MATLAB?
It would be really helpful if anyone could provide a sample code illustrating the implementation in MATLAB.
Thanks in advance. Typically, the private properties of a class are not accessible by any other class or function from outside.
But, a friend function can be granted special access to private and protected members of a class in C++.
For further reference: https://en.cppreference.com/w/cpp/language/friend
Is there any way, I can implement this in MATLAB?
It would be really helpful if anyone could provide a sample code illustrating the implementation in MATLAB.
Thanks in advance. matlab, oop, programming MATLAB Answers — New Questions
Updating SharePoint Column without Overwriting
Hello,
I have a Sharepoint List that contains two columns, column A and column B which can contain multiple person or group (so no string value, more like Teams functionnality) When column B is not empty, I would like to update column A with the value of column B without overwriting what it contains, so only append the value of B in A.
Does somebody know how to achieve that ?
Thanks in advance
Hello, I have a Sharepoint List that contains two columns, column A and column B which can contain multiple person or group (so no string value, more like Teams functionnality) When column B is not empty, I would like to update column A with the value of column B without overwriting what it contains, so only append the value of B in A.Does somebody know how to achieve that ? Thanks in advance Read More
Mã giới thiệu KuCoin: QBAYT4XB – Mã mời
Mã tham chiếu chính thức cho quan hệ đối tác (đối tác) của sàn giao dịch KuCoin được xác định là QBAYT4XB. Nhờ mã mời này, bạn sẽ nhận được chiết khấu hoa hồng cao nhất trọn đời. Mở ra cánh cửa giao dịch tiền điện tử thuận lợi với mã giới thiệu QBAYT4XB.
Mã tham chiếu chính thức cho quan hệ đối tác (đối tác) của sàn giao dịch KuCoin được xác định là QBAYT4XB. Nhờ mã mời này, bạn sẽ nhận được chiết khấu hoa hồng cao nhất trọn đời. Mở ra cánh cửa giao dịch tiền điện tử thuận lợi với mã giới thiệu QBAYT4XB. Read More
iOS Microsoft Defender Compliance Policy not showing compliance despite successfull setup of the app
I am having an issue on multiple tenants and after a lot of try and error I am not getting it.
All tenant enroll their devices through the Apple DEP in supervised mode and deploy the Microsoft Defender app using a VPP token with a device based license.
The app is successfully installed on the devices and users are able to sign in to the app and the defender is showing everything is green. However the Compliance policy does not switch to compliant even after long waiting. Strangely this is not happening always… around half of the enrollments switch to compliant while the other half does not. Sometimes the issue also resolve by reinstalling the app.
I have this issue on multiple tenants. I am using the Filter profile with auto enrollment (which also does not start always) but the VPN onboarding has the same issue.
So if someone else had this issue and has an idea where this comes from: Please give me a comment.
I am having an issue on multiple tenants and after a lot of try and error I am not getting it. All tenant enroll their devices through the Apple DEP in supervised mode and deploy the Microsoft Defender app using a VPP token with a device based license. The app is successfully installed on the devices and users are able to sign in to the app and the defender is showing everything is green. However the Compliance policy does not switch to compliant even after long waiting. Strangely this is not happening always… around half of the enrollments switch to compliant while the other half does not. Sometimes the issue also resolve by reinstalling the app. I have this issue on multiple tenants. I am using the Filter profile with auto enrollment (which also does not start always) but the VPN onboarding has the same issue. So if someone else had this issue and has an idea where this comes from: Please give me a comment. Read More
Get Microsoft Customer | Get Microsoft Office +1-844-200-0457
+1-844-200-0457 — Microsoft Certified Agent- Online Now. Microsoft® Gold Partner. Free Diagnosis Provided. Money Back Guarantee. 70,000+ Happy Customers. BBB Rating A+. Featured on HUFFPOST. Featured on TechCrunch.
+1-844-200-0457 — Microsoft Certified Agent- Online Now. Microsoft® Gold Partner. Free Diagnosis Provided. Money Back Guarantee. 70,000+ Happy Customers. BBB Rating A+. Featured on HUFFPOST. Featured on TechCrunch. Read More
Add event to other person’s calendar
I am using the new outlook. I am able to add a new calendar event and select the calendar in which to add this. However, the drop down list of calendars only includes a few colleagues, and not all who have given me editing permissions. How can I resolve this please
I am using the new outlook. I am able to add a new calendar event and select the calendar in which to add this. However, the drop down list of calendars only includes a few colleagues, and not all who have given me editing permissions. How can I resolve this please Read More
How to use indices of one matrix as entries of another matrix?
Hello, I have two matrices, M1 ans M2. They both have rows and columns fom 0 to 9 and a to f (16 * 16) matrix.
Mi matrix is filled with random numbers form 0 to 255 in hex decimal notation.
The second matrix M2 is empty but has the same row and column indexs. I need to fill M2 with the help of M1. For eample, in M2, at row 3 and colm 4 ( 34,the first entry of M1) will be 00 ( index of the first entry of M1). In M2 at row 6 col A, the entry will be 01, at row 2 col 9, the entry will be 02, and so on.
%% % Initialize M2 with zeros
M2 = zeros(16,16);
for row = 0:15
for col = 0:15
% get the value from M1
value= M1(row+1,col+1);
% Convert the values to row and col indices for M2
hexStr=dec2hex(value,2); % convert to 2 digit hex
M2_row=hex2dec(hexStr(1))+1;% convert first digit to decimal
M2_col=hex2dec(hexStr(2))+1;% convert first digit to decimal
% %Debugging
% % place the original rows and columns in M2
%
M2(M2_row, M2_col)=row*16+col;
end
end
M2;
If anyone can help.Hello, I have two matrices, M1 ans M2. They both have rows and columns fom 0 to 9 and a to f (16 * 16) matrix.
Mi matrix is filled with random numbers form 0 to 255 in hex decimal notation.
The second matrix M2 is empty but has the same row and column indexs. I need to fill M2 with the help of M1. For eample, in M2, at row 3 and colm 4 ( 34,the first entry of M1) will be 00 ( index of the first entry of M1). In M2 at row 6 col A, the entry will be 01, at row 2 col 9, the entry will be 02, and so on.
%% % Initialize M2 with zeros
M2 = zeros(16,16);
for row = 0:15
for col = 0:15
% get the value from M1
value= M1(row+1,col+1);
% Convert the values to row and col indices for M2
hexStr=dec2hex(value,2); % convert to 2 digit hex
M2_row=hex2dec(hexStr(1))+1;% convert first digit to decimal
M2_col=hex2dec(hexStr(2))+1;% convert first digit to decimal
% %Debugging
% % place the original rows and columns in M2
%
M2(M2_row, M2_col)=row*16+col;
end
end
M2;
If anyone can help. Hello, I have two matrices, M1 ans M2. They both have rows and columns fom 0 to 9 and a to f (16 * 16) matrix.
Mi matrix is filled with random numbers form 0 to 255 in hex decimal notation.
The second matrix M2 is empty but has the same row and column indexs. I need to fill M2 with the help of M1. For eample, in M2, at row 3 and colm 4 ( 34,the first entry of M1) will be 00 ( index of the first entry of M1). In M2 at row 6 col A, the entry will be 01, at row 2 col 9, the entry will be 02, and so on.
%% % Initialize M2 with zeros
M2 = zeros(16,16);
for row = 0:15
for col = 0:15
% get the value from M1
value= M1(row+1,col+1);
% Convert the values to row and col indices for M2
hexStr=dec2hex(value,2); % convert to 2 digit hex
M2_row=hex2dec(hexStr(1))+1;% convert first digit to decimal
M2_col=hex2dec(hexStr(2))+1;% convert first digit to decimal
% %Debugging
% % place the original rows and columns in M2
%
M2(M2_row, M2_col)=row*16+col;
end
end
M2;
If anyone can help. matrix indexes MATLAB Answers — New Questions
How to create an overall legend that includes all appeared data groups?
I’m trying to make a plot, using the tiledlayout function to create 4 subplots, while in the first subplot, there are 5 data groups, while the remaining subplots only have four of those 5 groups. If I create an overall legend, it will only show 4 groups that appeared in all the subplots, and automatically omit the extra one that’s only shown in the first subplot, how to include that grounp into the overall legend as well? Thanks!I’m trying to make a plot, using the tiledlayout function to create 4 subplots, while in the first subplot, there are 5 data groups, while the remaining subplots only have four of those 5 groups. If I create an overall legend, it will only show 4 groups that appeared in all the subplots, and automatically omit the extra one that’s only shown in the first subplot, how to include that grounp into the overall legend as well? Thanks! I’m trying to make a plot, using the tiledlayout function to create 4 subplots, while in the first subplot, there are 5 data groups, while the remaining subplots only have four of those 5 groups. If I create an overall legend, it will only show 4 groups that appeared in all the subplots, and automatically omit the extra one that’s only shown in the first subplot, how to include that grounp into the overall legend as well? Thanks! plotting, legend, tiledlayout, subplots MATLAB Answers — New Questions
Composite Authentication via on premise connectors
Prefacing this with, this is all in my testing across multiple Exchange Online environments. I have also raised a Microsoft support ticket for it.
Consider a mail-flow scenario where an email enters EOP, is then redirected to a 3rd party service. The email is then sent back to EOP via an on-premise connector.
This allows for both inbound and outbound email to be redirected. A partner type inbound connector does not allow external relay.
Then we have authentication. On the first hop to EOP, assume SPF/DKIM/DMARC/ARC/CompAuth passes.
On the re-delivery to EOP after the 3rd party has interacted with the email, it is likely SPF/DKIM will fail and therefore DMARC will. ARC should pass.
However, it is known that composite authentication is not calculated against emails received via an on-premise type connector.
Microsoft changed their on-premise type inbound connectors on approx 24th June 2024, to make several properties “partner connector” only. This includes RequireTLS and RestrictDomainsToCertificate.
Assuming our connector is using a unique accepted domain per tenant (which is required per MS documentation), and this value is set in the TlsSenderCertificateName parameter.
After the changes on the 24th, I set the RestrictDomainsToCertificate value to $false, so that I could continue to edit the connector in future. This is because MS made it impossible to edit a connector with that value set – they have since reverted this restriction.
However, I found that the value set for my TlsSenderCertificateName had changed slightly.
Instead of xyz.domain.com, it has a special character prepended to it. This was unicode character “LEFT-TO-RIGHT MARK” https://unicode-explorer.com/c/200E.
So it looked like (character)xyz.domain.com, note that it’s not a visible character.
Following this, all my inbound emails, being delivered after the 3rd party service, had composite authentication calculated.
With no other changes, it was compauth=none.
If I added the TLSSenderCertificateName, simply xyz.domain.com, to the Trusted ARC Sealers configuration, then it would show compauth=pass reason=130.
The special character isn’t visible in the GUI, but if you run Get-InboundConnector you can see the character taking up the space.
If I override it in PowerShell and set it to the certificate without the character, composite authentication is disabled again. But now, I can manually set the character and it enables it.
I can validate that this works for outbound relayed mail also, which would fail if the connector was configured incorrectly.
Try it out:
Set-InboundConnector -identity “yourConnector” -TlsSenderCertificateName “yourCertName”
Make sure you prepend the “yourCertName” with the “LEFT-TO-RIGHT MARK” charcater from here https://unicode-explorer.com/c/200E(you can copy it to clipboard from there).
Prefacing this with, this is all in my testing across multiple Exchange Online environments. I have also raised a Microsoft support ticket for it. Consider a mail-flow scenario where an email enters EOP, is then redirected to a 3rd party service. The email is then sent back to EOP via an on-premise connector.This allows for both inbound and outbound email to be redirected. A partner type inbound connector does not allow external relay. Then we have authentication. On the first hop to EOP, assume SPF/DKIM/DMARC/ARC/CompAuth passes.On the re-delivery to EOP after the 3rd party has interacted with the email, it is likely SPF/DKIM will fail and therefore DMARC will. ARC should pass.However, it is known that composite authentication is not calculated against emails received via an on-premise type connector. Microsoft changed their on-premise type inbound connectors on approx 24th June 2024, to make several properties “partner connector” only. This includes RequireTLS and RestrictDomainsToCertificate. Assuming our connector is using a unique accepted domain per tenant (which is required per MS documentation), and this value is set in the TlsSenderCertificateName parameter. After the changes on the 24th, I set the RestrictDomainsToCertificate value to $false, so that I could continue to edit the connector in future. This is because MS made it impossible to edit a connector with that value set – they have since reverted this restriction. However, I found that the value set for my TlsSenderCertificateName had changed slightly. Instead of xyz.domain.com, it has a special character prepended to it. This was unicode character “LEFT-TO-RIGHT MARK” https://unicode-explorer.com/c/200E.So it looked like (character)xyz.domain.com, note that it’s not a visible character. Following this, all my inbound emails, being delivered after the 3rd party service, had composite authentication calculated.With no other changes, it was compauth=none.If I added the TLSSenderCertificateName, simply xyz.domain.com, to the Trusted ARC Sealers configuration, then it would show compauth=pass reason=130. The special character isn’t visible in the GUI, but if you run Get-InboundConnector you can see the character taking up the space.If I override it in PowerShell and set it to the certificate without the character, composite authentication is disabled again. But now, I can manually set the character and it enables it. I can validate that this works for outbound relayed mail also, which would fail if the connector was configured incorrectly. Try it out:Set-InboundConnector -identity “yourConnector” -TlsSenderCertificateName “yourCertName” Make sure you prepend the “yourCertName” with the “LEFT-TO-RIGHT MARK” charcater from here https://unicode-explorer.com/c/200E(you can copy it to clipboard from there). Read More
Enable notifications from Shared Calendar
I would like create calendar for my team to every team member can add appointments and every team member receive reminders from this calendar.
I’m experimenting with sharing additional personal calendar or calendar for shared mailbox. Team members can see and add appointments but they doesn’t receive reminders
I found it is possible for Outlook on the web or New Outlook for Windows but we are using Exchange 2016 (on-prem) and Outlook 2019 and not plan to migrate to Exchange Online
(https://support.microsoft.com/en-us/office/receive-notifications-from-a-shared-calendar-in-outlook-f6a318d6-9d76-4c9f-b8c0-9c6f94066eb0)
Have you any idea how to do this?
I would like create calendar for my team to every team member can add appointments and every team member receive reminders from this calendar. I’m experimenting with sharing additional personal calendar or calendar for shared mailbox. Team members can see and add appointments but they doesn’t receive remindersI found it is possible for Outlook on the web or New Outlook for Windows but we are using Exchange 2016 (on-prem) and Outlook 2019 and not plan to migrate to Exchange Online(https://support.microsoft.com/en-us/office/receive-notifications-from-a-shared-calendar-in-outlook-f6a318d6-9d76-4c9f-b8c0-9c6f94066eb0) Have you any idea how to do this? Read More
Only show one perons in video stream
Hi,
I´m working in an open office, where people are working in the back and walking behind me.
So sometime in a meeting, you can see the other persons in the back, I dont want that and they dont want that.
Is there a function, that only shows one person?
Thanks
Hi,I´m working in an open office, where people are working in the back and walking behind me.So sometime in a meeting, you can see the other persons in the back, I dont want that and they dont want that.Is there a function, that only shows one person? Thanks Read More
How to create a rule in Defender for o365 to quarantine with the “Sender display name” condition ?
Does it possible to create a rule in Defender for o365 to quarantine if the “Sender display name” is Vipps ?
Does it possible to create a rule in Defender for o365 to quarantine if the “Sender display name” is Vipps ? Read More
How to get cluster data after clustering in EEGLAB ?
Hello everyone
Hello everyone,I’m encountering some difficulties while analyzing EEG data using EEGLab. After clustering ICs using the K-means algorithm, I’m unsure about how to select meaningful clusters for further analysis.Specifically, I’d like to plot ERSPs for a chosen cluster (e.g., cluster 2) and then apply bootstrapping to the entire epoch. Subsequently, I want to set all non-significant ERSP values (p > 0.05) compared to this distribution to zero dB.Hello everyone
Hello everyone,I’m encountering some difficulties while analyzing EEG data using EEGLab. After clustering ICs using the K-means algorithm, I’m unsure about how to select meaningful clusters for further analysis.Specifically, I’d like to plot ERSPs for a chosen cluster (e.g., cluster 2) and then apply bootstrapping to the entire epoch. Subsequently, I want to set all non-significant ERSP values (p > 0.05) compared to this distribution to zero dB. Hello everyone
Hello everyone,I’m encountering some difficulties while analyzing EEG data using EEGLab. After clustering ICs using the K-means algorithm, I’m unsure about how to select meaningful clusters for further analysis.Specifically, I’d like to plot ERSPs for a chosen cluster (e.g., cluster 2) and then apply bootstrapping to the entire epoch. Subsequently, I want to set all non-significant ERSP values (p > 0.05) compared to this distribution to zero dB. matlab, eeglab, eeg, ersp, clustering MATLAB Answers — New Questions
Only algebraic system equations in Model Predictive Control Toolbox?
My goal ist to use Model Predictive Control (MPC) for high-level planning. Instead of having differential equations I want to use only algebraic equations in the state function.
The equations would be in the form . Is there a way to define the MPC state functions as such?
Preferably I would use the nonlinear version of MPC.
Thank you very much.
Best regards,
MartinMy goal ist to use Model Predictive Control (MPC) for high-level planning. Instead of having differential equations I want to use only algebraic equations in the state function.
The equations would be in the form . Is there a way to define the MPC state functions as such?
Preferably I would use the nonlinear version of MPC.
Thank you very much.
Best regards,
Martin My goal ist to use Model Predictive Control (MPC) for high-level planning. Instead of having differential equations I want to use only algebraic equations in the state function.
The equations would be in the form . Is there a way to define the MPC state functions as such?
Preferably I would use the nonlinear version of MPC.
Thank you very much.
Best regards,
Martin mpc, algebraic equation MATLAB Answers — New Questions
Controller update in a discrete system
Hello everyone, I have a question
I have a continuous system that updates every 0.001 seconds.
In addition to this, I have a controller that should be updated with a delay of at least 100 times the system (ie every 100 iterations it is updated)
My question is this:
Do I need to calculate the signal and its derivatives and in addition the error and its derivative with T or with dt? I’m not sure..
The system is denoted as y_pk
The required signal is denoted as y_dk
This is part of my code:
dt=0.001; %discrete time
T=0.1; %continoues time
y_d = sin(1 * time); % desired signal
dy_d = diff(y_d) / dt;
ddy_d = diff(dy_d) / dt;
%initialize:
y_dk1=0; dy_dk1=0; uk2=0; uk1=0;
firstrun=true;
for j = 1:length(time)
y_dk = y_d(j);
if mod(j, 100) == 0 ||firstrun
T=dt; % ??
dy_dk = (y_dk-y_dk1)/T; %derv of y_dk
ddy_dk = (dy_dk – dy_dk1)/T; %second derv of y_dk
ek = y_dk – y_pk;
de_k = dy_dk – dy_pk;
uk = (1/c)*(a1*dy_pk + b1*(dy_pk)^2 + a2*y_pk + b2*(y_pk)^2 +k_p*ek + k_d*de_k + ddy_dk); % u: control input
% Store data for nex step:
uk2=uk1;
uk1=uk;
firstrun=false;
end
y_pk = …. ; %update each 0.001 second (continoues time)
dy_pk = (y_pk-y_pk1)/dt; %derv of y_pk
% Store data for nex step: system
y_pk2=y_pk1;
y_pk1=y_pk;
Thank you all!! :)Hello everyone, I have a question
I have a continuous system that updates every 0.001 seconds.
In addition to this, I have a controller that should be updated with a delay of at least 100 times the system (ie every 100 iterations it is updated)
My question is this:
Do I need to calculate the signal and its derivatives and in addition the error and its derivative with T or with dt? I’m not sure..
The system is denoted as y_pk
The required signal is denoted as y_dk
This is part of my code:
dt=0.001; %discrete time
T=0.1; %continoues time
y_d = sin(1 * time); % desired signal
dy_d = diff(y_d) / dt;
ddy_d = diff(dy_d) / dt;
%initialize:
y_dk1=0; dy_dk1=0; uk2=0; uk1=0;
firstrun=true;
for j = 1:length(time)
y_dk = y_d(j);
if mod(j, 100) == 0 ||firstrun
T=dt; % ??
dy_dk = (y_dk-y_dk1)/T; %derv of y_dk
ddy_dk = (dy_dk – dy_dk1)/T; %second derv of y_dk
ek = y_dk – y_pk;
de_k = dy_dk – dy_pk;
uk = (1/c)*(a1*dy_pk + b1*(dy_pk)^2 + a2*y_pk + b2*(y_pk)^2 +k_p*ek + k_d*de_k + ddy_dk); % u: control input
% Store data for nex step:
uk2=uk1;
uk1=uk;
firstrun=false;
end
y_pk = …. ; %update each 0.001 second (continoues time)
dy_pk = (y_pk-y_pk1)/dt; %derv of y_pk
% Store data for nex step: system
y_pk2=y_pk1;
y_pk1=y_pk;
Thank you all!! 🙂 Hello everyone, I have a question
I have a continuous system that updates every 0.001 seconds.
In addition to this, I have a controller that should be updated with a delay of at least 100 times the system (ie every 100 iterations it is updated)
My question is this:
Do I need to calculate the signal and its derivatives and in addition the error and its derivative with T or with dt? I’m not sure..
The system is denoted as y_pk
The required signal is denoted as y_dk
This is part of my code:
dt=0.001; %discrete time
T=0.1; %continoues time
y_d = sin(1 * time); % desired signal
dy_d = diff(y_d) / dt;
ddy_d = diff(dy_d) / dt;
%initialize:
y_dk1=0; dy_dk1=0; uk2=0; uk1=0;
firstrun=true;
for j = 1:length(time)
y_dk = y_d(j);
if mod(j, 100) == 0 ||firstrun
T=dt; % ??
dy_dk = (y_dk-y_dk1)/T; %derv of y_dk
ddy_dk = (dy_dk – dy_dk1)/T; %second derv of y_dk
ek = y_dk – y_pk;
de_k = dy_dk – dy_pk;
uk = (1/c)*(a1*dy_pk + b1*(dy_pk)^2 + a2*y_pk + b2*(y_pk)^2 +k_p*ek + k_d*de_k + ddy_dk); % u: control input
% Store data for nex step:
uk2=uk1;
uk1=uk;
firstrun=false;
end
y_pk = …. ; %update each 0.001 second (continoues time)
dy_pk = (y_pk-y_pk1)/dt; %derv of y_pk
% Store data for nex step: system
y_pk2=y_pk1;
y_pk1=y_pk;
Thank you all!! 🙂 control, discrete system, controller MATLAB Answers — New Questions
Indexing and Duplicates
Hi
I don’t need help resolving a problem on this occasion, but I would appreciate some help in understanding Indexing and Duplicates. I have a main Audits table plus 7 clause tables. They are related through the clause AuditID. The FK AuditIDs in the main table I would have thought should be indexed with no duplicates (that’s what makes sense in my head). But if I do that, the query becomes not updateable.
I would have thought that having no duplicates in the main table was the correct thing to do. Or is there something I am completely missing here?
Thanks.
Hi I don’t need help resolving a problem on this occasion, but I would appreciate some help in understanding Indexing and Duplicates. I have a main Audits table plus 7 clause tables. They are related through the clause AuditID. The FK AuditIDs in the main table I would have thought should be indexed with no duplicates (that’s what makes sense in my head). But if I do that, the query becomes not updateable.I would have thought that having no duplicates in the main table was the correct thing to do. Or is there something I am completely missing here? Thanks. Read More
VLookup #N/A Error
My Vlookup formula returns a ‘value not available error’.
Here is my formula:
=VLOOKUP(MAX(H5:H14),C5:H14,1,FALSE)
I want to search up the maximum value and return the name of the item.
My Vlookup formula returns a ‘value not available error’. Here is my formula:=VLOOKUP(MAX(H5:H14),C5:H14,1,FALSE) I want to search up the maximum value and return the name of the item. Read More
AVD Hostpool Insights – Migration from Log Analytics Agent to Azure Monitor Agent
Hi everyone,
we are currently experiencing some trouble migrating from the deprecated Log Analytics Agent to Azure Monitor Agent. After the migration “Hostpool >> Monitoring >> Insights >> Host performance” doesn’t show any info at all and only says “The query returned no results”
It’s the same problem this guy has: https://learn.microsoft.com/en-us/answers/questions/1689731/avd-insights-host-performance-blade-empty-after-ch
Other blades like “Connection Diagnostics” or “Utilization” show data as they did before with MMA.
I already tried a new Log Analytics Workspace – without success. New DCRs (collecting everything) don’t work either.
I can see that perf-data, heartbeats, etc. are sent to the LAW by the DCR – but it seems like the hostpool’s insights workbook is unable to display/query the data.
On a dedicated/standalone virtual machine everything works fine (VM >> Monitoring >> Insights >> Performance).
The person above “solved” it this way:
“I found that the only solution for this issue is, to create a new log analytics workspace and recreate all session hosts and connect them to this workspace. This brought the Insights Host Performance back for us in all environments.”
But this can’t be the only way to fix it, right?
Does anyone have an idea how I can fix this?
Thanks & all the best,
Dirk
Hi everyone, we are currently experiencing some trouble migrating from the deprecated Log Analytics Agent to Azure Monitor Agent. After the migration “Hostpool >> Monitoring >> Insights >> Host performance” doesn’t show any info at all and only says “The query returned no results” It’s the same problem this guy has: https://learn.microsoft.com/en-us/answers/questions/1689731/avd-insights-host-performance-blade-empty-after-ch Other blades like “Connection Diagnostics” or “Utilization” show data as they did before with MMA.I already tried a new Log Analytics Workspace – without success. New DCRs (collecting everything) don’t work either. I can see that perf-data, heartbeats, etc. are sent to the LAW by the DCR – but it seems like the hostpool’s insights workbook is unable to display/query the data.On a dedicated/standalone virtual machine everything works fine (VM >> Monitoring >> Insights >> Performance). The person above “solved” it this way: “I found that the only solution for this issue is, to create a new log analytics workspace and recreate all session hosts and connect them to this workspace. This brought the Insights Host Performance back for us in all environments.” But this can’t be the only way to fix it, right? Does anyone have an idea how I can fix this? Thanks & all the best,Dirk Read More
How to Get Rid of Extra Admin Accounts
I wanted to streamline my computer login process by minimizing the need to enter my PIN every time I return to my computer or it goes into sleep mode.
Unexpectedly, I now find myself managing a faulty Admin account, my regular User account, and an additional Admin account that I’m hesitant to interact with.
I am hoping to eliminate the two unnecessary Admin accounts while preserving my User account.
I would be grateful for any assistance you can provide.
I wanted to streamline my computer login process by minimizing the need to enter my PIN every time I return to my computer or it goes into sleep mode. Unexpectedly, I now find myself managing a faulty Admin account, my regular User account, and an additional Admin account that I’m hesitant to interact with. I am hoping to eliminate the two unnecessary Admin accounts while preserving my User account. I would be grateful for any assistance you can provide. Read More
Service disabled during troubleshooting leading to login failure
I believe I accidentally disabled a crucial service while attempting to troubleshoot, leading to the login failure. Despite trying to restore a point from recovery mode, I encountered an unexpected error. Is it possible to switch the login setting to manual in the UEFI? Any other suggestions would be greatly appreciated. Thank you for your assistance.
– Dave
I believe I accidentally disabled a crucial service while attempting to troubleshoot, leading to the login failure. Despite trying to restore a point from recovery mode, I encountered an unexpected error. Is it possible to switch the login setting to manual in the UEFI? Any other suggestions would be greatly appreciated. Thank you for your assistance.- Dave Read More