Month: July 2024
Keeping formatting on frozen columns across sheets?
Hello,
I’ve got the first three columns on sheet one formatted conditionally, and frozen. They are always the leading three columns on all following sheets in the workbook, and continue the color pattern, for example when I type “Conservation” in an empty cell in column B, it turns orange.
My intent, which I cannot figure out, is to be able to update the data in sheet one in these frozen columns, and have it update across all sheets, while keeping the source formatting; cell fill color, bold, and links. I’ve tried copy->paste as link for the column on the next sheets, but that doesn’t keep the formatting. I’ve also tried a few formulas that replicate the data accurately, but don’t keep the color coding, or the corresponding hyperlinks, for example.
Seems like this function should be hiding in plain sight, but I’m somewhat of an Excel newbie here, so please keep that in mind, if you’re kind enough to respond.
Thank you!
Hello,I’ve got the first three columns on sheet one formatted conditionally, and frozen. They are always the leading three columns on all following sheets in the workbook, and continue the color pattern, for example when I type “Conservation” in an empty cell in column B, it turns orange.My intent, which I cannot figure out, is to be able to update the data in sheet one in these frozen columns, and have it update across all sheets, while keeping the source formatting; cell fill color, bold, and links. I’ve tried copy->paste as link for the column on the next sheets, but that doesn’t keep the formatting. I’ve also tried a few formulas that replicate the data accurately, but don’t keep the color coding, or the corresponding hyperlinks, for example.Seems like this function should be hiding in plain sight, but I’m somewhat of an Excel newbie here, so please keep that in mind, if you’re kind enough to respond.Thank you! Read More
Migrating from more than 2 days and seems like there is some issue as the total size is 16 GB
Hello
Please i need your help on this issue.
We did migration but we are having error.
We had a user who We have scheduled this migration
The user is using .onmicrosoft.com account. Its been migrating from more than 2 days and seems like there is some issue as the total size is 16 GB on Source end.
However the attached results and snip shown below says
257 GB how come.? Total mailbox size on source is 16 GB then how is it possible 257 GB. Seems like there is some discrepancy between these storage numbers.
I would like to know why it is taking so long to be migrated 16 GB storage.?
Hello Please i need your help on this issue. We did migration but we are having error. We had a user who We have scheduled this migration The user is using .onmicrosoft.com account. Its been migrating from more than 2 days and seems like there is some issue as the total size is 16 GB on Source end. However the attached results and snip shown below says 257 GB how come.? Total mailbox size on source is 16 GB then how is it possible 257 GB. Seems like there is some discrepancy between these storage numbers. I would like to know why it is taking so long to be migrated 16 GB storage.? Read More
AutoSum by cell color
Hi All,
I am trying to find a formula that lets me add the values based on the color of the cell. You can see i have 4 different colors that i’m using but just used three for this example. I want to be able to sum up the value based on the color and put under Column R, S & T. This has to work even if i move the colors around.
Hi All,I am trying to find a formula that lets me add the values based on the color of the cell. You can see i have 4 different colors that i’m using but just used three for this example. I want to be able to sum up the value based on the color and put under Column R, S & T. This has to work even if i move the colors around. Read More
Business Applications incentives updates for FY25
Microsoft Tech Community – Latest Blogs –Read More
installing matlab and simulink on pi – ‘verifying sudo user privilege failed’
hi there,
i am trying to install matlab and simulink on my raspberry pi, but i keep getting the error ‘verifying sudo user privilege failed’
i have followed the steps in this article by matlab and enabled passwordless sudo but it still isn’t working.
Anybody encountered this problem before?
Thankshi there,
i am trying to install matlab and simulink on my raspberry pi, but i keep getting the error ‘verifying sudo user privilege failed’
i have followed the steps in this article by matlab and enabled passwordless sudo but it still isn’t working.
Anybody encountered this problem before?
Thanks hi there,
i am trying to install matlab and simulink on my raspberry pi, but i keep getting the error ‘verifying sudo user privilege failed’
i have followed the steps in this article by matlab and enabled passwordless sudo but it still isn’t working.
Anybody encountered this problem before?
Thanks raspberry pi, matlab, simulink, install MATLAB Answers — New Questions
Error message when trying to run System Validation in Fuzzy Logic Designer app
When I run the System Validation function I get the following error message in Workspace.
‘Tri 3×3’ is the name of the FIS I’ve designed.
All other simulation functions work fine.When I run the System Validation function I get the following error message in Workspace.
‘Tri 3×3’ is the name of the FIS I’ve designed.
All other simulation functions work fine. When I run the System Validation function I get the following error message in Workspace.
‘Tri 3×3’ is the name of the FIS I’ve designed.
All other simulation functions work fine. fuzzy logic designer app, system validation MATLAB Answers — New Questions
Reading a text file using readtable, Matlab stubbornly refuses to accept dates in anything but US-format
Here’s a programme I wrote to read in a data file. Rather than using the trusty, old-fashioned method I’ve always used (fopen, fgetl etc), I thought I’d use this fancy ‘readtable’ method. Half a day later, I wish I’d not bothered. The online help on this subject is very confusing, with changes in each version of Matlab from ‘Parameter’,’Value’ to ‘Parameter=Value’ to Parameter.value = … ways of doing things and so many parameters and sub-parameters in the readtable function that I got very confused. As you can see, I’ve tried 3 or 4 times to set the date format to read data from 10th March, but it still comes out as 3rd October.
Any help would be greatly appreciated.
%Script to read in data files
clear all
datetime.setDefaultFormats(‘default’,’dd/MM/yyyy’);
fid=fopen(‘Myfile’,’r’);
opts = detectImportOptions(‘Myfile’);
opts.VariableTypes(2)={‘datetime’};
opts.VariableOptions(1).DatetimeFormat=’dd/MM/yy’
opts.VariableOptions(1).InputFormat=’dd/MM/yy’
% setvaropts(opts,VariableOptions(1).InputFormat,’dd/MM/yyyy’);
A=readtable(‘Myfile’,’NumHeaderLines’,1);
A.Date.Format = ‘dd/MM/yyyy’
fclose(fid)
A{:,1}=datetime(A{:,1},’InputFormat’,’dd/MM/yyyy’, ‘Format’,’dd/MM/yyyy’)
d=datevec(A{:,1})+datevec(A{:,2});
d(:,1)=d(:,1)+2000;
t0=datenum(d);
Here’s the data-file I’m trying to read:
Patches found at BAKE00CAN between 10-Mar-2024 and 16-Mar-2024:
Date Time Latitude Longitude sTEC_inc Duratn./s
10/03/24 00:08:00 71.70 -88.73 3.2 1350
10/03/24 00:14:30 69.60 -110.59 4.9 840
10/03/24 00:16:00 62.46 -94.23 3.8 1620
10/03/24 00:18:00 64.35 -83.21 8.2 1470
10/03/24 00:23:30 72.70 -110.84 17.9 5370
10/03/24 00:25:30 63.86 -91.88 2.4 450
10/03/24 00:28:30 67.25 -85.28 4.1 1710
10/03/24 00:29:30 73.89 -90.16 2.7 570
10/03/24 00:31:00 62.88 -93.91 3.7 870
…but it comes out as:
A =
9×6 table
Date Time Latitude Longitude sTEC_inc Duratn__s
__________ ________ ________ _________ ________ _________
03/10/0024 00:08:00 71.7 -88.73 3.2 1350
03/10/0024 00:14:30 69.6 -110.59 4.9 840
03/10/0024 00:16:00 62.46 -94.23 3.8 1620
03/10/0024 00:18:00 64.35 -83.21 8.2 1470
03/10/0024 00:23:30 72.7 -110.84 17.9 5370
03/10/0024 00:25:30 63.86 -91.88 2.4 450
03/10/0024 00:28:30 67.25 -85.28 4.1 1710
03/10/0024 00:29:30 73.89 -90.16 2.7 570
03/10/0024 00:31:00 62.88 -93.91 3.7 870Here’s a programme I wrote to read in a data file. Rather than using the trusty, old-fashioned method I’ve always used (fopen, fgetl etc), I thought I’d use this fancy ‘readtable’ method. Half a day later, I wish I’d not bothered. The online help on this subject is very confusing, with changes in each version of Matlab from ‘Parameter’,’Value’ to ‘Parameter=Value’ to Parameter.value = … ways of doing things and so many parameters and sub-parameters in the readtable function that I got very confused. As you can see, I’ve tried 3 or 4 times to set the date format to read data from 10th March, but it still comes out as 3rd October.
Any help would be greatly appreciated.
%Script to read in data files
clear all
datetime.setDefaultFormats(‘default’,’dd/MM/yyyy’);
fid=fopen(‘Myfile’,’r’);
opts = detectImportOptions(‘Myfile’);
opts.VariableTypes(2)={‘datetime’};
opts.VariableOptions(1).DatetimeFormat=’dd/MM/yy’
opts.VariableOptions(1).InputFormat=’dd/MM/yy’
% setvaropts(opts,VariableOptions(1).InputFormat,’dd/MM/yyyy’);
A=readtable(‘Myfile’,’NumHeaderLines’,1);
A.Date.Format = ‘dd/MM/yyyy’
fclose(fid)
A{:,1}=datetime(A{:,1},’InputFormat’,’dd/MM/yyyy’, ‘Format’,’dd/MM/yyyy’)
d=datevec(A{:,1})+datevec(A{:,2});
d(:,1)=d(:,1)+2000;
t0=datenum(d);
Here’s the data-file I’m trying to read:
Patches found at BAKE00CAN between 10-Mar-2024 and 16-Mar-2024:
Date Time Latitude Longitude sTEC_inc Duratn./s
10/03/24 00:08:00 71.70 -88.73 3.2 1350
10/03/24 00:14:30 69.60 -110.59 4.9 840
10/03/24 00:16:00 62.46 -94.23 3.8 1620
10/03/24 00:18:00 64.35 -83.21 8.2 1470
10/03/24 00:23:30 72.70 -110.84 17.9 5370
10/03/24 00:25:30 63.86 -91.88 2.4 450
10/03/24 00:28:30 67.25 -85.28 4.1 1710
10/03/24 00:29:30 73.89 -90.16 2.7 570
10/03/24 00:31:00 62.88 -93.91 3.7 870
…but it comes out as:
A =
9×6 table
Date Time Latitude Longitude sTEC_inc Duratn__s
__________ ________ ________ _________ ________ _________
03/10/0024 00:08:00 71.7 -88.73 3.2 1350
03/10/0024 00:14:30 69.6 -110.59 4.9 840
03/10/0024 00:16:00 62.46 -94.23 3.8 1620
03/10/0024 00:18:00 64.35 -83.21 8.2 1470
03/10/0024 00:23:30 72.7 -110.84 17.9 5370
03/10/0024 00:25:30 63.86 -91.88 2.4 450
03/10/0024 00:28:30 67.25 -85.28 4.1 1710
03/10/0024 00:29:30 73.89 -90.16 2.7 570
03/10/0024 00:31:00 62.88 -93.91 3.7 870 Here’s a programme I wrote to read in a data file. Rather than using the trusty, old-fashioned method I’ve always used (fopen, fgetl etc), I thought I’d use this fancy ‘readtable’ method. Half a day later, I wish I’d not bothered. The online help on this subject is very confusing, with changes in each version of Matlab from ‘Parameter’,’Value’ to ‘Parameter=Value’ to Parameter.value = … ways of doing things and so many parameters and sub-parameters in the readtable function that I got very confused. As you can see, I’ve tried 3 or 4 times to set the date format to read data from 10th March, but it still comes out as 3rd October.
Any help would be greatly appreciated.
%Script to read in data files
clear all
datetime.setDefaultFormats(‘default’,’dd/MM/yyyy’);
fid=fopen(‘Myfile’,’r’);
opts = detectImportOptions(‘Myfile’);
opts.VariableTypes(2)={‘datetime’};
opts.VariableOptions(1).DatetimeFormat=’dd/MM/yy’
opts.VariableOptions(1).InputFormat=’dd/MM/yy’
% setvaropts(opts,VariableOptions(1).InputFormat,’dd/MM/yyyy’);
A=readtable(‘Myfile’,’NumHeaderLines’,1);
A.Date.Format = ‘dd/MM/yyyy’
fclose(fid)
A{:,1}=datetime(A{:,1},’InputFormat’,’dd/MM/yyyy’, ‘Format’,’dd/MM/yyyy’)
d=datevec(A{:,1})+datevec(A{:,2});
d(:,1)=d(:,1)+2000;
t0=datenum(d);
Here’s the data-file I’m trying to read:
Patches found at BAKE00CAN between 10-Mar-2024 and 16-Mar-2024:
Date Time Latitude Longitude sTEC_inc Duratn./s
10/03/24 00:08:00 71.70 -88.73 3.2 1350
10/03/24 00:14:30 69.60 -110.59 4.9 840
10/03/24 00:16:00 62.46 -94.23 3.8 1620
10/03/24 00:18:00 64.35 -83.21 8.2 1470
10/03/24 00:23:30 72.70 -110.84 17.9 5370
10/03/24 00:25:30 63.86 -91.88 2.4 450
10/03/24 00:28:30 67.25 -85.28 4.1 1710
10/03/24 00:29:30 73.89 -90.16 2.7 570
10/03/24 00:31:00 62.88 -93.91 3.7 870
…but it comes out as:
A =
9×6 table
Date Time Latitude Longitude sTEC_inc Duratn__s
__________ ________ ________ _________ ________ _________
03/10/0024 00:08:00 71.7 -88.73 3.2 1350
03/10/0024 00:14:30 69.6 -110.59 4.9 840
03/10/0024 00:16:00 62.46 -94.23 3.8 1620
03/10/0024 00:18:00 64.35 -83.21 8.2 1470
03/10/0024 00:23:30 72.7 -110.84 17.9 5370
03/10/0024 00:25:30 63.86 -91.88 2.4 450
03/10/0024 00:28:30 67.25 -85.28 4.1 1710
03/10/0024 00:29:30 73.89 -90.16 2.7 570
03/10/0024 00:31:00 62.88 -93.91 3.7 870 readtable, date format MATLAB Answers — New Questions
Azure User Expresses Concern
A customer opened ticket SR#2407190040010082 as their consumption sku APIM service was stuck updating:
Now that the service has exited that “updating” status I am able to resume working with it.
The concern I want to share with you is my concern with how the system responds to a certificate error and gets stuck in that “updating” state.
We know that network and login activities can fail on occasion. When APIM responds by getting stuck in that state it cannot be updated and it cannot be deleted and recreated. This issue lasted for a day before APIM eventually emerged from that state for reasons I am unaware. I was powerless and had to keep going back to check.
Yes, this case is resolved but I hope that this feedback can be shared with the team in the hopes that a fix or enhancement to better handle this situation can be implemented.
A customer opened ticket SR#2407190040010082 as their consumption sku APIM service was stuck updating:
Now that the service has exited that “updating” status I am able to resume working with it.
The concern I want to share with you is my concern with how the system responds to a certificate error and gets stuck in that “updating” state.
We know that network and login activities can fail on occasion. When APIM responds by getting stuck in that state it cannot be updated and it cannot be deleted and recreated. This issue lasted for a day before APIM eventually emerged from that state for reasons I am unaware. I was powerless and had to keep going back to check.
Yes, this case is resolved but I hope that this feedback can be shared with the team in the hopes that a fix or enhancement to better handle this situation can be implemented. Read More
Send-MailMessage : Mailbox unavailable. The server response was: 5.7.60 SMTP
Hi all,
This forum really is my last option, cause I checked in the internet for a solution and was not able to find.
I have a hybrid exchange scenario – Exchange2019 + O365 – all the mailboxes are remote mailboxes (hosted in Office365) and we use Exchange2019 only to manage the features and SMTP Relay.
The point is that I am trying to send email from an specific mailbox using smtp relay and I am facing the issue below:
Send-MailMessage : Mailbox unavailable. The server response was: 5.7.60 SMTP; Client does not have permissions to send as this sender
The .ps1 script that I’m using is below:
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
$sendMailParams = @{
From = “donotreply @ mydomain.com”
To = “myname @ mydomain.com”
Subject = “Test mail from $env:Computername”
Body = “<p> *email sent for tests purposes* </p>”
SMTPServer = “smtp.mydomain.com”
Port = 587
Encoding = “UTF8”
}
Send-MailMessage @sendMailParams -BodyAsHtml -Credential $credential -UseSsl
After running the script, obviously I need to insert the credential then get the mentioned error.
Other details regarding my tests:
User inserted into ‘-Credential $credential’ part is something like “test@ mydomain.com”The receive conector is allowing the IP sourceThe receive connector is configured to listen port 587The receive connector is configured for SSL, Authentication and Exchange Users as wellThe relay must be done using SSL and Authentication (I can not use Anonymous)
The user test@ mydomain.com is already added as SEND AS into donotreply@ mydomain.com:
Any ideia what I should do to allow the test@ mydomain.com to send emails as donotreply@ mydomain.com using smtp relay?
Thanks in advance.
Hi all, This forum really is my last option, cause I checked in the internet for a solution and was not able to find.I have a hybrid exchange scenario – Exchange2019 + O365 – all the mailboxes are remote mailboxes (hosted in Office365) and we use Exchange2019 only to manage the features and SMTP Relay. The point is that I am trying to send email from an specific mailbox using smtp relay and I am facing the issue below: Send-MailMessage : Mailbox unavailable. The server response was: 5.7.60 SMTP; Client does not have permissions to send as this sender The .ps1 script that I’m using is below: [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
$sendMailParams = @{
From = “donotreply @ mydomain.com”
To = “myname @ mydomain.com”
Subject = “Test mail from $env:Computername”
Body = “<p> *email sent for tests purposes* </p>”
SMTPServer = “smtp.mydomain.com”
Port = 587
Encoding = “UTF8”
}
Send-MailMessage @sendMailParams -BodyAsHtml -Credential $credential -UseSsl After running the script, obviously I need to insert the credential then get the mentioned error. Other details regarding my tests:User inserted into ‘-Credential $credential’ part is something like “test@ mydomain.com”The receive conector is allowing the IP sourceThe receive connector is configured to listen port 587The receive connector is configured for SSL, Authentication and Exchange Users as wellThe relay must be done using SSL and Authentication (I can not use Anonymous) The user test@ mydomain.com is already added as SEND AS into donotreply@ mydomain.com: Any ideia what I should do to allow the test@ mydomain.com to send emails as donotreply@ mydomain.com using smtp relay? Thanks in advance. Read More
How to modify title bar in maui
Hi,
I want to change color of the title bar. I do not use shell, so I tried with NavigationPage, but I do not have all the options (see attached picture). I can not access BarBackgroundColor
Best regards,
Bumbar14
Hi, I want to change color of the title bar. I do not use shell, so I tried with NavigationPage, but I do not have all the options (see attached picture). I can not access BarBackgroundColorBest regards,Bumbar14 Read More
CHANGING THE REFERENCE OF THE SHAPES WHEN THE SHAPES ARE DUPICATED
Hi all,
i have a format that i use to copy paste multiple times in my assignment using macros.
i see that copy pasting the shapes always take the reference to the cells declared in the first object. is there a way i use the position of the shape and select the cells accordingly?
for example, copy pasting the cells from a1:e46 creates the shapes again with the same names. and refer to the cells from a1:e33 if i save. infact, after i copy paste, i need it to select the cells from g1:g33
Hi all,i have a format that i use to copy paste multiple times in my assignment using macros.i see that copy pasting the shapes always take the reference to the cells declared in the first object. is there a way i use the position of the shape and select the cells accordingly?for example, copy pasting the cells from a1:e46 creates the shapes again with the same names. and refer to the cells from a1:e33 if i save. infact, after i copy paste, i need it to select the cells from g1:g33 Read More
Billing issue with Indirect Provider
Does anyone know if Microsoft will help with a license/billing issue with a CSP Indirect Provider? I cannot seem find the correct support for this type issue.
Does anyone know if Microsoft will help with a license/billing issue with a CSP Indirect Provider? I cannot seem find the correct support for this type issue. Read More
Customer not showing up in group booking after submission
Over the past week, we have had customers who booked an appointment with us, but we are not receiving notification of a new booking, and their information does not appear on the booking calendar. The customer is getting the confirmation and reminders; they also appear in the customers’ list, but when we select the event on the calendar to view who is attending, they are not listed. It only affects some people who sign up.
We also recently noticed that someone canceled, but we have not received that notification. Again, it does not affect every customer who cancels, as we have received cancellations before and after this incident.
Over the past week, we have had customers who booked an appointment with us, but we are not receiving notification of a new booking, and their information does not appear on the booking calendar. The customer is getting the confirmation and reminders; they also appear in the customers’ list, but when we select the event on the calendar to view who is attending, they are not listed. It only affects some people who sign up. We also recently noticed that someone canceled, but we have not received that notification. Again, it does not affect every customer who cancels, as we have received cancellations before and after this incident. Read More
VBA Automation Internet Explorer popup window button click
Sub CDOpenDuplicate()
Dim ieapp As New InternetExplorerMedium
Dim Doc As New HTMLDocument
‘Set ieapp = New InternetExplorerMedium
With ieapp
.Visible = True
.navigate “http://xxxx.cvxc.local/Apps/sdfg/xxReports/Mat/cbvnnn_Edit.asp?trans_id=39859109&parm=4353“
Do Until ieapp.readyState = READYSTATE_COMPLETE: DoEvents: Loop
Set Doc = ieapp.document
Doc.getElementById(“btnRemove”).Click
‘Do Until IEApp.readyState = READYSTATE_COMPLETE: DoEvents: Loop
Application.SendKeys (“{ENTER}”)
End With
End Sub
This code stuck here Doc.getElementById(“btnRemove”).Click
I am clicking on a Save button on the page after which a confirmation window pops up which has a button “Yes” “No” .
I wanted to click on Yes button and proceed with VBA. I am not able to track this window neither in Power Automate nor in VBA. Right click is also not allowed. It does not even let click anywhere outside the page. refer the snapshot below. What should I do? I guess the window is Modeless.
I tried to set focus on the window also with below code but failed.
Sub Test1()
Dim SWs As New SHDocVw.ShellWindows
Dim IE As SHDocVw.InternetExplorer
Dim Doc
For Each IE In SWs
On Error Resume Next
Set Doc = IE.document
If TypeOf Doc Is HTMLDocument Then
Debug.Print Doc.Title
End If
VBA.AppActivate IE.document.Title, 10000
Application.SendKeys (“{ENTER}”)
On Error GoTo 0
Next
End Sub
Sub CDOpenDuplicate()Dim ieapp As New InternetExplorerMediumDim Doc As New HTMLDocument’Set ieapp = New InternetExplorerMediumWith ieapp.Visible = True.navigate “http://xxxx.cvxc.local/Apps/sdfg/xxReports/Mat/cbvnnn_Edit.asp?trans_id=39859109&parm=4353″Do Until ieapp.readyState = READYSTATE_COMPLETE: DoEvents: LoopSet Doc = ieapp.documentDoc.getElementById(“btnRemove”).Click’Do Until IEApp.readyState = READYSTATE_COMPLETE: DoEvents: LoopApplication.SendKeys (“{ENTER}”)End WithEnd Sub This code stuck here Doc.getElementById(“btnRemove”).Click I am clicking on a Save button on the page after which a confirmation window pops up which has a button “Yes” “No” . I wanted to click on Yes button and proceed with VBA. I am not able to track this window neither in Power Automate nor in VBA. Right click is also not allowed. It does not even let click anywhere outside the page. refer the snapshot below. What should I do? I guess the window is Modeless. I tried to set focus on the window also with below code but failed. Sub Test1()Dim SWs As New SHDocVw.ShellWindowsDim IE As SHDocVw.InternetExplorerDim DocFor Each IE In SWsOn Error Resume NextSet Doc = IE.documentIf TypeOf Doc Is HTMLDocument ThenDebug.Print Doc.TitleEnd IfVBA.AppActivate IE.document.Title, 10000Application.SendKeys (“{ENTER}”)On Error GoTo 0NextEnd Sub Read More
Using GPO to save bookmarks to Appdata
Hello….I request some assistance with the creation of a GPO that would enable bookmarks from Edge to be automatically saved as a backup to the Appdata directory if that is possible?
Hello….I request some assistance with the creation of a GPO that would enable bookmarks from Edge to be automatically saved as a backup to the Appdata directory if that is possible? Read More
AudioCodes Teams Desk phones can’t dial out
All models of Audiocodes teams desk phones cannot dial out. the call times out then shows “Teams isn’t responding”, close app or wait.
The teams desktop client does work.
We have factory reset some phones, downgraded to .705 firmware to no avail.
Calls never make it to our direct routing SBC, it’s like the call is stuck in the cloud phone system.
Firewall is not blocking anything for our testing.
b
All models of Audiocodes teams desk phones cannot dial out. the call times out then shows “Teams isn’t responding”, close app or wait.The teams desktop client does work.We have factory reset some phones, downgraded to .705 firmware to no avail.Calls never make it to our direct routing SBC, it’s like the call is stuck in the cloud phone system.Firewall is not blocking anything for our testing.b Read More
MS account verification loop
Signing in to MS account. It (presumably) sends a code to my landline. It no longer arrives.
My profile has my mobile number but it seems not to be used.
I cannot make any changes to my profile as it ALWAYS sends either text or call to my landline, which never arrives.
Have tried other methods but always with the same end result.
Signing in to MS account. It (presumably) sends a code to my landline. It no longer arrives.My profile has my mobile number but it seems not to be used.I cannot make any changes to my profile as it ALWAYS sends either text or call to my landline, which never arrives.Have tried other methods but always with the same end result. Read More
Active Directory improvements in Windows Server 2025
Windows Server 2025 is the most secure and performant release yet! Download the evaluation now!
Looking to migrate from VMware to Windows Server 2025? Contact your Microsoft account team!
Looking to migrate from VMware to Windows Server 2025? Contact your Microsoft account team!
The 2024 Windows Server Summit was held in March and brought three days of demos, technical sessions, and Q&A, led by Microsoft engineers, guest experts from Intel®, and our MVP community. For more videos from this year’s Windows Server Summit, please find the full session list here.
This article focuses on improvements to Active Directory in Windows Server 2025.
What’s new in Active Directory for Windows Server 2025
The AD product group presents and demonstrate some of the new AD capabilities coming in Windows Server 2025, including new functional levels, security enhancements, and improved scalability.
Protecting Active Directory from management plane attacks
Mind the management plane! Whether your organization is running Active Directory on-premises, hybrid, or fully in the cloud, virtualized domain controllers are almost always present. But when is the last time you checked to ensure your privileged access model, aka Tier 0, extended to encompass the management plane?
Explore the common modern deployment scenarios for virtualized domain controllers and examine the relationship with the management plane. Why? Because attackers can exploit a weakly implemented privileged model and use the management plane as an easy back door into Active Directory.
In this session, we explore scenarios where organizations can unknowingly leave the door open to these attacks, diving deep into commonly observed gaps, and walking through a demonstration of using the management plane as a means of pivoting into Active Directory. Learn how to defend yourself and get actionable recommendations your organization can take today to ensure that the management plane does not become an attacker’s new friend.
The evolution of Windows authentication
As the security landscape evolves, Windows must continue to change to protect users and organizations. Foundational to this is user authentication. In Windows Server 2025 and Windows vNext, we have created completely new Kerberos features to minimize use of NTLM in your environments. This session explains and demonstrates IAKerb, Local KDC, IP SPN, and the roadmap to the end of NTLM.
Microsoft Tech Community – Latest Blogs –Read More
Migrate ADAL apps to MSAL with enhanced insights
We’re pleased to announce significant updates to the Sign-ins workbook in the Microsoft Entra admin center, a crucial tool for organizations transitioning from Azure Active Directory Authentication Libraries (ADAL) to Microsoft Authentication Libraries (MSAL). These updates aim to streamline the ADAL migration process by providing comprehensive insights into your ADAL-application-related data.
Why is this Important?
We announced ADAL end of life in June 2020 and stopped supporting any security updates as of June 2023—which means applications using ADAL can’t utilize the latest security features, leaving them vulnerable to future security threats. We strongly recommend migrating any application using ADAL to MSAL to improve the security posture and resilience of authentication and authorization of your client applications.
MSAL supports the latest security features for Microsoft Entra ID like managed identity, Continuous Access Evaluation (CAE), passkeys, and many more. The updated Sign-ins workbook is an essential tool in this transition, providing the necessary insights and data to make informed decisions to execute migration.
What’s new in the Sign-ins workbook?
The Sign-ins workbook is redesigned for admins needing a centralized and more detailed view of applications using ADAL within their tenant. These additional insights can help them identify, investigate, and validate the ADAL applications to successfully migrate to MSAL.
Here’s what you can expect with the latest enhancements:
Comprehensive sign-in log aggregation: The workbook now consolidates logs from various types of sign-in events, including interactive, non-interactive, and service principal sign-ins.
Enhanced data visualization: We updated the report with new aggregated metrics to enable an all-up view of sign-ins across ADAL applications. To aid in your specific analytical needs, the workbook supports the application of custom filters and queries. This flexibility enables you to focus on the information that matters most to your ADAL migration efforts.
Integration with Microsoft Entra recommendations: You can now directly access this Sign-Ins workbook from the ADAL to MSAL recommendation page to dive deep into the list of ADAL applications listed on the recommendation details page. To use the workbooks for Microsoft Entra ID, you need a Microsoft Entra ID tenant with a P1 license.
Plan to update your application
Get started by accessing the workbook to get a list of all ADAL applications and the details associated with them. Our migration guide walks you through all the steps to transition applications from using ADAL to using MSAL.
Neha Goel
Senior Product Manager, Microsoft
Read more on this topic
Migrate applications to the Microsoft Authentication Library
Manage workbooks
How to use Entra Workbooks
Migrate from ADAL to MSAL Entra Recommendations
Learn more about Microsoft Entra
Prevent identity attacks, ensure least privilege access, unify access controls, and improve the experience for users with comprehensive identity and network access solutions across on-premises and clouds.
Microsoft Entra News and Insights | Microsoft Security Blog
Microsoft Entra blog | Tech Community
Microsoft Entra documentation | Microsoft Learn
Microsoft Entra discussions | Microsoft Community
Microsoft Tech Community – Latest Blogs –Read More
GPU Training RL Toolbox on R2022a
Hello everyone,
I am trying to train my agent with using Reinforcement Learning Toolbox Matlab2022a. Unfortunately, I couldn’t run the training due to some packages were updated. rlRepresentationOptions was contain ‘UseDevice’,’gpu’ option, but the package has been changed to rlOptimizerOptions without any ‘UseDevice’ option. How can I run my training with using gpu? Thank you in advance.Hello everyone,
I am trying to train my agent with using Reinforcement Learning Toolbox Matlab2022a. Unfortunately, I couldn’t run the training due to some packages were updated. rlRepresentationOptions was contain ‘UseDevice’,’gpu’ option, but the package has been changed to rlOptimizerOptions without any ‘UseDevice’ option. How can I run my training with using gpu? Thank you in advance. Hello everyone,
I am trying to train my agent with using Reinforcement Learning Toolbox Matlab2022a. Unfortunately, I couldn’t run the training due to some packages were updated. rlRepresentationOptions was contain ‘UseDevice’,’gpu’ option, but the package has been changed to rlOptimizerOptions without any ‘UseDevice’ option. How can I run my training with using gpu? Thank you in advance. reinforcement learning, training, machine learning MATLAB Answers — New Questions