Month: August 2024
SharePoint Document Library Web Part
Hi All
We have a SharePoint Document Library web part on a landing web page that look like this :
It is very simple looking and links to a SharePoint document library on the same SharePoint site as the web part.
The issue we are having is we need to view another SharePoint Document library on another SharePoint site. The Only way to do this is using the Embed SharePoint web part. The problem with the Embed web part is it adds the Document Library menu bar.
We want to make it look simple like the first web part above.
My question is can we add a web part that links to a document library on another SharePoint site and has a simple look and feel with no menu bar like the first screenshot above?
I hope you can help
Colin
Hi All We have a SharePoint Document Library web part on a landing web page that look like this : It is very simple looking and links to a SharePoint document library on the same SharePoint site as the web part. The issue we are having is we need to view another SharePoint Document library on another SharePoint site. The Only way to do this is using the Embed SharePoint web part. The problem with the Embed web part is it adds the Document Library menu bar. We want to make it look simple like the first web part above. My question is can we add a web part that links to a document library on another SharePoint site and has a simple look and feel with no menu bar like the first screenshot above?I hope you can helpColin Read More
How can I complain to Agoda in India?
customer you can also call on Agoda helpline number :0785-8072362/(Language: Hindi and English). customer you can also call on Agoda toll free number Contact us. (+91)78580-72362(Language: Hindi and English).Head office…
customer you can also call on Agoda helpline number :0785-8072362/(Language: Hindi and English). customer you can also call on Agoda toll free number Contact us. (+91)78580-72362(Language: Hindi and English).Head office… Read More
Inconsistency of window’s new Date() function returns invalid date in Microsoft Edge
We are facing some browser problem while using React as frontend for initialize new Date() object such that new Date().toLocaleString() gives empty string. As this is not the case with Chrome so raising it here.
Looking forward to get a permanent solution as of now we have added retries for initialize new Date() object for work around.
We are facing some browser problem while using React as frontend for initialize new Date() object such that new Date().toLocaleString() gives empty string. As this is not the case with Chrome so raising it here.Looking forward to get a permanent solution as of now we have added retries for initialize new Date() object for work around. Read More
Defender for Identity PowerShell module update
Hi everyone! I’m excited to announce an update to the PowerShell module we released for Microsoft Defender for Identity earlier this year. These enhancements are designed to add some new functionality and address some of the feedback you provided in the comments. As always, we really appreciate your feedback and engagement with this module!
Now let’s dive into the what and why with this new release:
New MDI Service Account cmdlet:
The service account will be used for remote Security Account Manager (SAM) access and is provisioned in the portal for Defender for Identity Active Directory operations. This account will also used to access the Deleted Objects container in Active Directory, used to query remote forests if configured, and needed for some of the Active Directory Federation Services and Certificate Services configurations.
To create a new GMSA use the following syntax, where you define the name of the service account and the password retrieval group.
This new group, and the Domain Controllers group are added to the PrincipalsAllowedToRetrieveManagedPassword attribute of the GMSA.
New-MDIDSA -Identity my-mdisvc -GmsaGroupName my-mdiGMSAgroup
To create a standard account use the ForceStandardAccount switch
New-MDIDSA -Identity my-mdisvc -ForceStandardAccount
New automatic PDCe detection and usage:
To help further streamline any necessary updates and make the creation of group policy objects (GPO) even easier we have added a new Primary Domain Controller Emulator (PDCe) role detection feature. This feature requires no intervention and means that most Active Directory operations will automatically target the PDCe, which will increase the reliability of Group Policy Object creation, as well as account creation. This is mostly for reliability purposes to ensure that detection of changes won’t fail due to Active Directory replication delays.
Manual Domain Controller Targeting:
If PDC detection fails, or you’re like me and want over everything, we’ve also added a Server parameter to the Get/Set/Test MDIConfiguration cmdlets that will allow you to specify a domain controller to be used for any Active Directory cmdlet.
Get-MDIConfiguration -Mode Domain -Configuration All -Server test-cdc1
Note that this is optional, and things work best when you use the automatic PDCe detection.
User experience enhancements:
The GPOPrefix parameter is now dynamic for the Get/Set/Test MDIConfiguration cmdlets and will only appear if you specify the Domain option for the Mode parameter. This changes nothing in terms of how it works, it just makes the parameter auto complete a little cleaner. The strings files have been updated for accuracy and we added support for Danish language. Please do report any inaccuracies to us! I am a huge believer that words matter and, because of that, I strive to be precise. The portal communication check now uses basic parsing. This should change nothing from a functionality perspective but should make things run a little smoother.
There are also some changes and updates to GPO content setting. This change goes hand in hand with the Server parameter to target the distinct Domain Controller for writes and it should work around some of the issues we were seeing with blank GPO’s.
For more information on this module check out the PowerShell Gallery and reference documentation. That’s it for this release! Thank you all for your continued usage and feedback and please do let us know with any priority changes you want. We’re working on the next version now and can’t wait to get that out.
Microsoft Tech Community – Latest Blogs –Read More
Learn about Automate io’s transactable partner solution in Azure Marketplace
Microsoft partners like Automate io deliver transact-capable offers, which allow you to purchase directly from Azure Marketplace. Learn about this offer below:
QuickBooks Enterprise 2024 Server with Microsoft 365 Applications: This pre-built Microsoft Windows 2022 server from Automate io comes with QuickBooks Enterprise 2024 and Microsoft 365 applications pre-installed. Having a virtual machine makes it simple to manage backups and control your data in a shared environment.
Microsoft Tech Community – Latest Blogs –Read More
PPO training Stopped Learning.
I am trying to train the rotatry inverted pendulum enviroment using a PPO agent. It’s working… but It’s reaching a limit and not learnign past this limit. I am not too sure why. Newbie to RL here so go easy on me :). I think it’s something to do with the yellow line, Q0. Also it could be reaching a local optima, but I don’t think this is the problem. I think the problem is with Q0 not getting past 100 and the agent not being able to extract more useful info. Hopefully, someone whith a little more experinace has something to say!
mdl = "rlQubeServoModel";
open_system(mdl)
theta_limit = 5*pi/8;
dtheta_limit = 30;
volt_limit = 12;
Ts = 0.005;
rng(22)
obsInfo = rlNumericSpec([7 1]);
actInfo = rlNumericSpec([1 1],UpperLimit=1,LowerLimit=-1);
agentBlk = mdl + "/RL Agent";
simEnv = rlSimulinkEnv(mdl,agentBlk,obsInfo,actInfo);
numObs = prod(obsInfo.Dimension);
criticLayerSizes = [400 300];
actorLayerSizes = [400 300];
% critic:
criticNetwork = [
featureInputLayer(numObs)
fullyConnectedLayer(criticLayerSizes(1), …
Weights=sqrt(2/numObs)*…
(rand(criticLayerSizes(1),numObs)-0.5), …
Bias=1e-3*ones(criticLayerSizes(1),1))
reluLayer
fullyConnectedLayer(criticLayerSizes(2), …
Weights=sqrt(2/criticLayerSizes(1))*…
(rand(criticLayerSizes(2),criticLayerSizes(1))-0.5), …
Bias=1e-3*ones(criticLayerSizes(2),1))
reluLayer
fullyConnectedLayer(1, …
Weights=sqrt(2/criticLayerSizes(2))* …
(rand(1,criticLayerSizes(2))-0.5), …
Bias=1e-3)
];
criticNetwork = dlnetwork(criticNetwork);
summary(criticNetwork)
critic = rlValueFunction(criticNetwork,obsInfo);
% actor:
% Input path layers
inPath = [
featureInputLayer( …
prod(obsInfo.Dimension), …
Name="netOin")
fullyConnectedLayer( …
prod(actInfo.Dimension), …
Name="infc")
];
% Path layers for mean value
meanPath = [
tanhLayer(Name="tanhMean");
fullyConnectedLayer(prod(actInfo.Dimension));
scalingLayer(Name="scale", …
Scale=actInfo.UpperLimit)
];
% Path layers for standard deviations
% Using softplus layer to make them non negative
sdevPath = [
tanhLayer(Name="tanhStdv");
fullyConnectedLayer(prod(actInfo.Dimension));
softplusLayer(Name="splus")
];
net = dlnetwork();
net = addLayers(net,inPath);
net = addLayers(net,meanPath);
net = addLayers(net,sdevPath);
net = connectLayers(net,"infc","tanhMean/in");
net = connectLayers(net,"infc","tanhStdv/in");
plot(net)
net = initialize(net);
summary(net)
actor = rlContinuousGaussianActor(net, obsInfo, actInfo, …
ActionMeanOutputNames="scale",…
ActionStandardDeviationOutputNames="splus",…
ObservationInputNames="netOin");
actorOpts = rlOptimizerOptions(LearnRate=1e-4);
criticOpts = rlOptimizerOptions(LearnRate=1e-4);
agentOpts = rlPPOAgentOptions(…
ExperienceHorizon=600,…
ClipFactor=0.02,…
EntropyLossWeight=0.01,…
ActorOptimizerOptions=actorOpts,…
CriticOptimizerOptions=criticOpts,…
NumEpoch=3,…
AdvantageEstimateMethod="gae",…
GAEFactor=0.95,…
SampleTime=0.1,…
DiscountFactor=0.997);
agent = rlPPOAgent(actor,critic,agentOpts);
trainOpts = rlTrainingOptions(…
MaxEpisodes=20000,…
MaxStepsPerEpisode=600,…
Plots="training-progress",…
StopTrainingCriteria="AverageReward",…
StopTrainingValue=430,…
ScoreAveragingWindowLength=100);
trainingStats = train(agent, simEnv, trainOpts);
thanks in advanced!I am trying to train the rotatry inverted pendulum enviroment using a PPO agent. It’s working… but It’s reaching a limit and not learnign past this limit. I am not too sure why. Newbie to RL here so go easy on me :). I think it’s something to do with the yellow line, Q0. Also it could be reaching a local optima, but I don’t think this is the problem. I think the problem is with Q0 not getting past 100 and the agent not being able to extract more useful info. Hopefully, someone whith a little more experinace has something to say!
mdl = "rlQubeServoModel";
open_system(mdl)
theta_limit = 5*pi/8;
dtheta_limit = 30;
volt_limit = 12;
Ts = 0.005;
rng(22)
obsInfo = rlNumericSpec([7 1]);
actInfo = rlNumericSpec([1 1],UpperLimit=1,LowerLimit=-1);
agentBlk = mdl + "/RL Agent";
simEnv = rlSimulinkEnv(mdl,agentBlk,obsInfo,actInfo);
numObs = prod(obsInfo.Dimension);
criticLayerSizes = [400 300];
actorLayerSizes = [400 300];
% critic:
criticNetwork = [
featureInputLayer(numObs)
fullyConnectedLayer(criticLayerSizes(1), …
Weights=sqrt(2/numObs)*…
(rand(criticLayerSizes(1),numObs)-0.5), …
Bias=1e-3*ones(criticLayerSizes(1),1))
reluLayer
fullyConnectedLayer(criticLayerSizes(2), …
Weights=sqrt(2/criticLayerSizes(1))*…
(rand(criticLayerSizes(2),criticLayerSizes(1))-0.5), …
Bias=1e-3*ones(criticLayerSizes(2),1))
reluLayer
fullyConnectedLayer(1, …
Weights=sqrt(2/criticLayerSizes(2))* …
(rand(1,criticLayerSizes(2))-0.5), …
Bias=1e-3)
];
criticNetwork = dlnetwork(criticNetwork);
summary(criticNetwork)
critic = rlValueFunction(criticNetwork,obsInfo);
% actor:
% Input path layers
inPath = [
featureInputLayer( …
prod(obsInfo.Dimension), …
Name="netOin")
fullyConnectedLayer( …
prod(actInfo.Dimension), …
Name="infc")
];
% Path layers for mean value
meanPath = [
tanhLayer(Name="tanhMean");
fullyConnectedLayer(prod(actInfo.Dimension));
scalingLayer(Name="scale", …
Scale=actInfo.UpperLimit)
];
% Path layers for standard deviations
% Using softplus layer to make them non negative
sdevPath = [
tanhLayer(Name="tanhStdv");
fullyConnectedLayer(prod(actInfo.Dimension));
softplusLayer(Name="splus")
];
net = dlnetwork();
net = addLayers(net,inPath);
net = addLayers(net,meanPath);
net = addLayers(net,sdevPath);
net = connectLayers(net,"infc","tanhMean/in");
net = connectLayers(net,"infc","tanhStdv/in");
plot(net)
net = initialize(net);
summary(net)
actor = rlContinuousGaussianActor(net, obsInfo, actInfo, …
ActionMeanOutputNames="scale",…
ActionStandardDeviationOutputNames="splus",…
ObservationInputNames="netOin");
actorOpts = rlOptimizerOptions(LearnRate=1e-4);
criticOpts = rlOptimizerOptions(LearnRate=1e-4);
agentOpts = rlPPOAgentOptions(…
ExperienceHorizon=600,…
ClipFactor=0.02,…
EntropyLossWeight=0.01,…
ActorOptimizerOptions=actorOpts,…
CriticOptimizerOptions=criticOpts,…
NumEpoch=3,…
AdvantageEstimateMethod="gae",…
GAEFactor=0.95,…
SampleTime=0.1,…
DiscountFactor=0.997);
agent = rlPPOAgent(actor,critic,agentOpts);
trainOpts = rlTrainingOptions(…
MaxEpisodes=20000,…
MaxStepsPerEpisode=600,…
Plots="training-progress",…
StopTrainingCriteria="AverageReward",…
StopTrainingValue=430,…
ScoreAveragingWindowLength=100);
trainingStats = train(agent, simEnv, trainOpts);
thanks in advanced! I am trying to train the rotatry inverted pendulum enviroment using a PPO agent. It’s working… but It’s reaching a limit and not learnign past this limit. I am not too sure why. Newbie to RL here so go easy on me :). I think it’s something to do with the yellow line, Q0. Also it could be reaching a local optima, but I don’t think this is the problem. I think the problem is with Q0 not getting past 100 and the agent not being able to extract more useful info. Hopefully, someone whith a little more experinace has something to say!
mdl = "rlQubeServoModel";
open_system(mdl)
theta_limit = 5*pi/8;
dtheta_limit = 30;
volt_limit = 12;
Ts = 0.005;
rng(22)
obsInfo = rlNumericSpec([7 1]);
actInfo = rlNumericSpec([1 1],UpperLimit=1,LowerLimit=-1);
agentBlk = mdl + "/RL Agent";
simEnv = rlSimulinkEnv(mdl,agentBlk,obsInfo,actInfo);
numObs = prod(obsInfo.Dimension);
criticLayerSizes = [400 300];
actorLayerSizes = [400 300];
% critic:
criticNetwork = [
featureInputLayer(numObs)
fullyConnectedLayer(criticLayerSizes(1), …
Weights=sqrt(2/numObs)*…
(rand(criticLayerSizes(1),numObs)-0.5), …
Bias=1e-3*ones(criticLayerSizes(1),1))
reluLayer
fullyConnectedLayer(criticLayerSizes(2), …
Weights=sqrt(2/criticLayerSizes(1))*…
(rand(criticLayerSizes(2),criticLayerSizes(1))-0.5), …
Bias=1e-3*ones(criticLayerSizes(2),1))
reluLayer
fullyConnectedLayer(1, …
Weights=sqrt(2/criticLayerSizes(2))* …
(rand(1,criticLayerSizes(2))-0.5), …
Bias=1e-3)
];
criticNetwork = dlnetwork(criticNetwork);
summary(criticNetwork)
critic = rlValueFunction(criticNetwork,obsInfo);
% actor:
% Input path layers
inPath = [
featureInputLayer( …
prod(obsInfo.Dimension), …
Name="netOin")
fullyConnectedLayer( …
prod(actInfo.Dimension), …
Name="infc")
];
% Path layers for mean value
meanPath = [
tanhLayer(Name="tanhMean");
fullyConnectedLayer(prod(actInfo.Dimension));
scalingLayer(Name="scale", …
Scale=actInfo.UpperLimit)
];
% Path layers for standard deviations
% Using softplus layer to make them non negative
sdevPath = [
tanhLayer(Name="tanhStdv");
fullyConnectedLayer(prod(actInfo.Dimension));
softplusLayer(Name="splus")
];
net = dlnetwork();
net = addLayers(net,inPath);
net = addLayers(net,meanPath);
net = addLayers(net,sdevPath);
net = connectLayers(net,"infc","tanhMean/in");
net = connectLayers(net,"infc","tanhStdv/in");
plot(net)
net = initialize(net);
summary(net)
actor = rlContinuousGaussianActor(net, obsInfo, actInfo, …
ActionMeanOutputNames="scale",…
ActionStandardDeviationOutputNames="splus",…
ObservationInputNames="netOin");
actorOpts = rlOptimizerOptions(LearnRate=1e-4);
criticOpts = rlOptimizerOptions(LearnRate=1e-4);
agentOpts = rlPPOAgentOptions(…
ExperienceHorizon=600,…
ClipFactor=0.02,…
EntropyLossWeight=0.01,…
ActorOptimizerOptions=actorOpts,…
CriticOptimizerOptions=criticOpts,…
NumEpoch=3,…
AdvantageEstimateMethod="gae",…
GAEFactor=0.95,…
SampleTime=0.1,…
DiscountFactor=0.997);
agent = rlPPOAgent(actor,critic,agentOpts);
trainOpts = rlTrainingOptions(…
MaxEpisodes=20000,…
MaxStepsPerEpisode=600,…
Plots="training-progress",…
StopTrainingCriteria="AverageReward",…
StopTrainingValue=430,…
ScoreAveragingWindowLength=100);
trainingStats = train(agent, simEnv, trainOpts);
thanks in advanced! ppo, rl, machine learning, ml, help, code, deep learning MATLAB Answers — New Questions
Generate a PWM in FPGA using a customised carrier.
Hi Kiran
Hope you doing well. I have seen your helpful answers for everyone. However , i have an issue and wish if you can help. I am trying to generate a PWM pulses using Speedgoat model IO334 FPGA. I have to customise an up-down counter ( as a carrier) to compare with a reference signal in order to obtain our PWM signals to drive a convertor. This counter must be HDL supported.
Keywords : Clock cycle of the speed goat is 10 nanos . Resulation can be 2^32-1.
I will appreciate if you can helpHi Kiran
Hope you doing well. I have seen your helpful answers for everyone. However , i have an issue and wish if you can help. I am trying to generate a PWM pulses using Speedgoat model IO334 FPGA. I have to customise an up-down counter ( as a carrier) to compare with a reference signal in order to obtain our PWM signals to drive a convertor. This counter must be HDL supported.
Keywords : Clock cycle of the speed goat is 10 nanos . Resulation can be 2^32-1.
I will appreciate if you can help Hi Kiran
Hope you doing well. I have seen your helpful answers for everyone. However , i have an issue and wish if you can help. I am trying to generate a PWM pulses using Speedgoat model IO334 FPGA. I have to customise an up-down counter ( as a carrier) to compare with a reference signal in order to obtain our PWM signals to drive a convertor. This counter must be HDL supported.
Keywords : Clock cycle of the speed goat is 10 nanos . Resulation can be 2^32-1.
I will appreciate if you can help pwm, fpga MATLAB Answers — New Questions
Generate the motion (Trajectory) of a sphere (or point) with given velocity value
Hi. I have this file ‘DATA’. The first 3 columns are the nodes in space (X,Y,Z in [m]). The 4th column is not of interest. The fifth column is the velocity in [m/s].
Is it possible to visualize the motion (green direction) of a sphere (e.g., the red one in the figure) moving following the velocity values in the fifth column of DATA?
load("DATA.mat");
figure
plot3(DATA(:,1),DATA(:,2),DATA(:,3),’-k’,’LineWidth’,0.1);
hold on
plot3(DATA(1,1),DATA(1,2),DATA(1,3),’r.’,’MarkerSize’,30);
hold off
axis equal
xlabel(‘x’)
ylabel(‘y’)
zlabel(‘z’)
grid offHi. I have this file ‘DATA’. The first 3 columns are the nodes in space (X,Y,Z in [m]). The 4th column is not of interest. The fifth column is the velocity in [m/s].
Is it possible to visualize the motion (green direction) of a sphere (e.g., the red one in the figure) moving following the velocity values in the fifth column of DATA?
load("DATA.mat");
figure
plot3(DATA(:,1),DATA(:,2),DATA(:,3),’-k’,’LineWidth’,0.1);
hold on
plot3(DATA(1,1),DATA(1,2),DATA(1,3),’r.’,’MarkerSize’,30);
hold off
axis equal
xlabel(‘x’)
ylabel(‘y’)
zlabel(‘z’)
grid off Hi. I have this file ‘DATA’. The first 3 columns are the nodes in space (X,Y,Z in [m]). The 4th column is not of interest. The fifth column is the velocity in [m/s].
Is it possible to visualize the motion (green direction) of a sphere (e.g., the red one in the figure) moving following the velocity values in the fifth column of DATA?
load("DATA.mat");
figure
plot3(DATA(:,1),DATA(:,2),DATA(:,3),’-k’,’LineWidth’,0.1);
hold on
plot3(DATA(1,1),DATA(1,2),DATA(1,3),’r.’,’MarkerSize’,30);
hold off
axis equal
xlabel(‘x’)
ylabel(‘y’)
zlabel(‘z’)
grid off motion, trajectory MATLAB Answers — New Questions
I needed to do the Simulation of Concentrated Solar Power (CSP) in Simulink, would like to if any have done this before and also if existing model is there it would be help!
I would like to know about the simulation of CSP in simulink.
Thanks!!I would like to know about the simulation of CSP in simulink.
Thanks!! I would like to know about the simulation of CSP in simulink.
Thanks!! concentrated solar power, csp, simulink, simulation MATLAB Answers — New Questions
How to name or rename the General channel in Teams
You can encourage your users to provide a meaningful name to General channels in their teams.
The General channel can be renamed by the team owners to show up in the teams’ and channels’ list of all members in alphabetical order.
#MicrosoftTeams #Teams #Microsoft365 #Productivity #NewFeatures #MVPbuzz Read More
Need to make users to edit proprieties of the file before saving the document in document library
Need to make users to edit proprieties of the file before saving the document in document library
How do you limit file upload unless the properties are added?
Need to make users to edit proprieties of the file before saving the document in document library How do you limit file upload unless the properties are added? Read More
Filter function to return in columns not rows
I want to return the results from a filter function formula into ongoing columns rather than down rows – this is because I have a large list of over a 2000 rows of data that I want to look them up in another table and return all the possible values for one code. i.e. I have hierachical data that is coded and I want to see the unique codes for a level of code up. My formula is currently:
=FILTER(‘ACNY 2024′!L2:L15979,’ACNY 2024′!I2:I15979=’Parish make up’!AX2)
Or can I do an xlookup that returns multiple answers but the number of answers will vary between 1 and 13? Many thanks
I want to return the results from a filter function formula into ongoing columns rather than down rows – this is because I have a large list of over a 2000 rows of data that I want to look them up in another table and return all the possible values for one code. i.e. I have hierachical data that is coded and I want to see the unique codes for a level of code up. My formula is currently: =FILTER(‘ACNY 2024′!L2:L15979,’ACNY 2024′!I2:I15979=’Parish make up’!AX2) Or can I do an xlookup that returns multiple answers but the number of answers will vary between 1 and 13? Many thanks Read More
Dates format as wrong locale – need to change how it is recognised
Hi,
I have dates that were added to my spreadsheet but it’s in the wrong format (US format rather than UK)
But it thinks they are UK dates so if I use More Number Formats, and change it between US and UK the date just changes to the other format which is still incorrect.
How can I tell Excel that the dates are not the format it thinks it is.
Example:
Date is 5th January 2024 – it displays in UK format as 01-05-24 and US format as 05-01-24
How do I correct the date in the cells?
I’ve tried copying the data to notepad and then copying to excel but it still reads it as the wrong format.
Many thanks,
Emma
Hi,I have dates that were added to my spreadsheet but it’s in the wrong format (US format rather than UK)But it thinks they are UK dates so if I use More Number Formats, and change it between US and UK the date just changes to the other format which is still incorrect.How can I tell Excel that the dates are not the format it thinks it is. Example:Date is 5th January 2024 – it displays in UK format as 01-05-24 and US format as 05-01-24How do I correct the date in the cells? I’ve tried copying the data to notepad and then copying to excel but it still reads it as the wrong format. Many thanks,Emma Read More
team dial by VC device
Hi,
Would it be possible to dial team meeting by VC device, such as cisco sx20 ? How to dial the number? Thanks.
Hi, Would it be possible to dial team meeting by VC device, such as cisco sx20 ? How to dial the number? Thanks. Read More
Stop site ownes and / or Site members form creating document libraries
Hi, had a request from a client who want to restrict site owners and members or maybe just site members from having the ability to create new document libraries on their SharePoint team site. Does anyone know how you would do this?
Hi, had a request from a client who want to restrict site owners and members or maybe just site members from having the ability to create new document libraries on their SharePoint team site. Does anyone know how you would do this? Read More
Active Directory attributes reconnaissance using LDAP alert
Hi Team,
I need to enable alert”Active Directory attributes reconnaissance (LDAP) (external ID 2210)” in MDI. How I can enable it. Please help me where i can find out all alert list.
Hi Team, I need to enable alert”Active Directory attributes reconnaissance (LDAP) (external ID 2210)” in MDI. How I can enable it. Please help me where i can find out all alert list. Read More
Unable to onboard devices in Defender anymore
We have number of AVD’s which are onboarded automatically in Defender, suddenly this process started to fail.
We can see interesting error message:
VERBOSE: [2024-08-21 09:26:11Z][Information] Preparing onboarding package
VERBOSE: [2024-08-21 09:26:11Z][Information] Decoding onboarding script from base64 string
VERBOSE: [2024-08-21 09:26:11Z][Information] Decode onboarding script successfully
VERBOSE: [2024-08-21 09:26:11Z][Information] Verifying JSON signature
VERBOSE: [2024-08-21 09:26:11Z][Information] Signature verification result: True
VERBOSE: [2024-08-21 09:26:11Z][Error] base chain cetificate is not valid because: PartialChain
VERBOSE: [2024-08-21 09:26:11Z][Information] Certificate C=US, S=Washington, L=Redmond, O=Microsoft Corporation, CN=Microsoft Secure Server CA 2011 is valid: True
VERBOSE: [2024-08-21 09:26:11Z][Information] Certificate C=US, S=Washington, L=Redmond, O=Microsoft Corporation, CN=Microsoft Root Certificate Authority 2011 is valid: True
VERBOSE: [2024-08-21 09:26:11Z][Information] Chain valid: False
VERBOSE: [2024-08-21 09:26:11Z][Information] Certificate chain verification result: False
VERBOSE: [2024-08-21 09:26:11Z][Error] Onboarding blob signature is not valid
It looked a little different in the past – seems like the certificate was not verified:
VERBOSE: [2024-04-10 07:14:35Z][Information] Preparing onboarding package
VERBOSE: [2024-04-10 07:14:35Z][Information] Decoding onboarding script from base64 string
VERBOSE: [2024-04-10 07:14:35Z][Information] Decoding onboarding script from base64 string completed successfully
VERBOSE: [2024-04-10 07:14:35Z][Information] Onboarding package prepared successfully
VERBOSE: [2024-04-10 07:14:35Z][Information] Running onboarding package
VERBOSE: [2024-04-10 07:14:35Z][Information] Successfully started process, waiting to finish with timeout
VERBOSE: [2024-04-10 07:14:54Z][Information] Onboarding package script completed successfully
VERBOSE: [2024-04-10 07:14:54Z][Information] Setting Azure Defender for Server identifiers in registry
VERBOSE: [2024-04-10 07:14:54Z][Information] Path HKLM:SoftwarePoliciesMicrosoftWindows Advanced Threat Protection already exists
VERBOSE: [2024-04-10 07:14:54Z][Information] Registry path HKLM:SoftwarePoliciesMicrosoftWindows Advanced Threat ProtectionDeviceTagging doesn’t exist, creating it
We can see that version of Windows.MDE(?) has change currently it is 1.0.10.3 previously (for onboarded devices) it was 1.0.9.5 – I cant find version history anywhere – this is just the name of the folder where the logs are located.
We’ve checked all the policies we have implemented for these devices but we were unable to find anything which could break this.
Does anyone experience the same? Do you have any ideas what went wrong here?
We have number of AVD’s which are onboarded automatically in Defender, suddenly this process started to fail. We can see interesting error message:VERBOSE: [2024-08-21 09:26:11Z][Information] Preparing onboarding package
VERBOSE: [2024-08-21 09:26:11Z][Information] Decoding onboarding script from base64 string
VERBOSE: [2024-08-21 09:26:11Z][Information] Decode onboarding script successfully
VERBOSE: [2024-08-21 09:26:11Z][Information] Verifying JSON signature
VERBOSE: [2024-08-21 09:26:11Z][Information] Signature verification result: True
VERBOSE: [2024-08-21 09:26:11Z][Error] base chain cetificate is not valid because: PartialChain
VERBOSE: [2024-08-21 09:26:11Z][Information] Certificate C=US, S=Washington, L=Redmond, O=Microsoft Corporation, CN=Microsoft Secure Server CA 2011 is valid: True
VERBOSE: [2024-08-21 09:26:11Z][Information] Certificate C=US, S=Washington, L=Redmond, O=Microsoft Corporation, CN=Microsoft Root Certificate Authority 2011 is valid: True
VERBOSE: [2024-08-21 09:26:11Z][Information] Chain valid: False
VERBOSE: [2024-08-21 09:26:11Z][Information] Certificate chain verification result: False
VERBOSE: [2024-08-21 09:26:11Z][Error] Onboarding blob signature is not valid It looked a little different in the past – seems like the certificate was not verified:VERBOSE: [2024-04-10 07:14:35Z][Information] Preparing onboarding package
VERBOSE: [2024-04-10 07:14:35Z][Information] Decoding onboarding script from base64 string
VERBOSE: [2024-04-10 07:14:35Z][Information] Decoding onboarding script from base64 string completed successfully
VERBOSE: [2024-04-10 07:14:35Z][Information] Onboarding package prepared successfully
VERBOSE: [2024-04-10 07:14:35Z][Information] Running onboarding package
VERBOSE: [2024-04-10 07:14:35Z][Information] Successfully started process, waiting to finish with timeout
VERBOSE: [2024-04-10 07:14:54Z][Information] Onboarding package script completed successfully
VERBOSE: [2024-04-10 07:14:54Z][Information] Setting Azure Defender for Server identifiers in registry
VERBOSE: [2024-04-10 07:14:54Z][Information] Path HKLM:SoftwarePoliciesMicrosoftWindows Advanced Threat Protection already exists
VERBOSE: [2024-04-10 07:14:54Z][Information] Registry path HKLM:SoftwarePoliciesMicrosoftWindows Advanced Threat ProtectionDeviceTagging doesn’t exist, creating it We can see that version of Windows.MDE(?) has change currently it is 1.0.10.3 previously (for onboarded devices) it was 1.0.9.5 – I cant find version history anywhere – this is just the name of the folder where the logs are located. We’ve checked all the policies we have implemented for these devices but we were unable to find anything which could break this. Does anyone experience the same? Do you have any ideas what went wrong here? Read More
Any rule/query for detecting Dynamic DNS in sentinel
Hi Team,
Sentinel having any table or rule from where we can fetch dynamic DNS details as alert?
Hi Team, Sentinel having any table or rule from where we can fetch dynamic DNS details as alert? Read More
Supress tcpipclient readline warning for a empty answer
I want to supres the warning: "Warning: The specified amount of data was not returned within the Timeout period for ‘readline’.
‘tcpclient’ unable to read any data. For more information on possible reasons, see tcpclient Read Warnings.". I am using tcpipclient and the readline function.I want to supres the warning: "Warning: The specified amount of data was not returned within the Timeout period for ‘readline’.
‘tcpclient’ unable to read any data. For more information on possible reasons, see tcpclient Read Warnings.". I am using tcpipclient and the readline function. I want to supres the warning: "Warning: The specified amount of data was not returned within the Timeout period for ‘readline’.
‘tcpclient’ unable to read any data. For more information on possible reasons, see tcpclient Read Warnings.". I am using tcpipclient and the readline function. tcpipclient, warning MATLAB Answers — New Questions
How to encounter a 1e-7 decimal place error when using single for calculations in Simulink?
I created a model in Simulink for testing the Simulink test tool. The division module was used in the model, and I found that the Divide module introduced calculation accuracy, which caused to fail the Simulink test. How can discard data with 1e-7 or other specified precision?
I already know that in Simulink test cases, error precision can be set to ignore calculation errors of specified precision. But if multiplication continues after the division module, the calculation error will accumulate and exceed the set error accuracy.
Looking forward to everyone’s replyI created a model in Simulink for testing the Simulink test tool. The division module was used in the model, and I found that the Divide module introduced calculation accuracy, which caused to fail the Simulink test. How can discard data with 1e-7 or other specified precision?
I already know that in Simulink test cases, error precision can be set to ignore calculation errors of specified precision. But if multiplication continues after the division module, the calculation error will accumulate and exceed the set error accuracy.
Looking forward to everyone’s reply I created a model in Simulink for testing the Simulink test tool. The division module was used in the model, and I found that the Divide module introduced calculation accuracy, which caused to fail the Simulink test. How can discard data with 1e-7 or other specified precision?
I already know that in Simulink test cases, error precision can be set to ignore calculation errors of specified precision. But if multiplication continues after the division module, the calculation error will accumulate and exceed the set error accuracy.
Looking forward to everyone’s reply simulink, simulink test, diviation MATLAB Answers — New Questions