Month: June 2024
Pull All Threat Intelligence Indicators
I have a runbook that queries all the threat intelligence indicators within Sentinel. It queries the default 100. However, when i pull the “nextLink” within the response the new response is blank so no data is being pulled from the 2nd pull when i know there are over 100 indicators within the platform.
Is there a way i can pull all of the indicators within the runbook/powershell script?
I have a runbook that queries all the threat intelligence indicators within Sentinel. It queries the default 100. However, when i pull the “nextLink” within the response the new response is blank so no data is being pulled from the 2nd pull when i know there are over 100 indicators within the platform. Is there a way i can pull all of the indicators within the runbook/powershell script? Read More
Cannot find publisher ID and identifier information in my partner portal
As I’m trying to create a partner portal I’m unable find my publisher details in my portal. please assist.
As I’m trying to create a partner portal I’m unable find my publisher details in my portal. please assist. Read More
Tent Place Cards Templates
I’m having a lot of trouble finding a good template for making place cards. I’ve searched extensively online but haven’t found one that works well. I’ve tried Avery templates and various free templates imported into Word. I need a folding tent style place card with text on both sides, but most templates don’t allow me to type upside down (which is necessary if you plan to cut and fold them into a tent). Does anyone have any good suggestions?
I’m having a lot of trouble finding a good template for making place cards. I’ve searched extensively online but haven’t found one that works well. I’ve tried Avery templates and various free templates imported into Word. I need a folding tent style place card with text on both sides, but most templates don’t allow me to type upside down (which is necessary if you plan to cut and fold them into a tent). Does anyone have any good suggestions? Read More
Moving Fabric (Power BI) Workspaces from Premium or Free Trial to new F SKUs
Do you have a Microsoft Fabric Free Trial that expires soon, or are you planning to move your Power BI Workspaces using Premium capacity (P SKUs) to Fabric capacity (F SKUs)? Numerous Power BI and Fabric customers are currently faced with these scenarios. As long as the Fabric F SKU is either 1) in the same Azure Region as your Power BI Premium P SKU, or 2) in the same Azure Region as your Power BI (Fabric) tenant for the Fabric Free Trial, the process should be a point-and-click exercise for a Workspace.
I’ve created the following two videos that are intended to provide some guidance on this topic for customers:
Create a Microsoft Fabric Node in Azure and Attach to a Workspace – The first video walks through the process of creating a Pay as You Go (PAYGO) Fabric F SKU node in Azure. The Fabric node is then surfaced in the Fabric (Power BI) Admin portal, additional administrators are added, and an example of assigning a new Workspace to it is provided. The video is embedded below and also linked here: https://youtu.be/Cbb-jA7Hqe0
Moving Fabric (Power BI) Workspace from Free Trial or P SKU to F SKU – The second video demonstrates how to move a Workspace from either the Fabric Free Trial or Power BI Premium capacity to the new Fabric capacity created in the first video. As long as the Workspace is currently in the same Azure Region as the new Fabric capacity, you’ll see that the process is rather straightforward. The Video is embedded below and also linked here: https://youtu.be/q2zAf2f7wmA
Video 1 – Create a Microsoft Fabric Node in Azure and Attach to a Workspace
https://www.youtube.com/watch?v=Cbb-jA7Hqe0
Video 2 – Moving Fabric (Power BI) Workspace from Free Trial or P SKU to F SKU
Microsoft Tech Community – Latest Blogs –Read More
Phantom Secrets: Undetected Secrets Expose Major Corporations
For years, we’ve been educating developers not to hard-code secrets into their code. Now it turns out that even doing this once might permanently expose that secret, even after its apparent removal – and worse, most secrets scanning methods will miss it. Our research found that almost 18% of secrets might be overlooked.
For years, we’ve been educating developers not to hard-code secrets into their code. Now it turns out that even doing this once might permanently expose that secret, even after its apparent removal – and worse, most secrets scanning methods will miss it. Our research found that almost 18% of secrets might be overlooked.Read More
How to Interface with Test Browser through Command Window
I am wondering if it is possible to use commands to interface with the Test Browser. I have a collection of tests that I would like to run, and I am looking to see if it is possible to add tests to the test browser with a command. From the current documentation, it appears that tests can only be added to the test browser by manually selecting them.
On the same note, I am also wondering if there is a command that can be used to have the same effect as pressing the "Run Current Suite".
I got a hint that something like this may be possible through some error messages, something along the lines of:
"matlab.unittest.internal.testbrowser.TestBrowserActionsService.importFolder"
However, I am wondering if this is a feature that is not accessible to users. Thanks!I am wondering if it is possible to use commands to interface with the Test Browser. I have a collection of tests that I would like to run, and I am looking to see if it is possible to add tests to the test browser with a command. From the current documentation, it appears that tests can only be added to the test browser by manually selecting them.
On the same note, I am also wondering if there is a command that can be used to have the same effect as pressing the "Run Current Suite".
I got a hint that something like this may be possible through some error messages, something along the lines of:
"matlab.unittest.internal.testbrowser.TestBrowserActionsService.importFolder"
However, I am wondering if this is a feature that is not accessible to users. Thanks! I am wondering if it is possible to use commands to interface with the Test Browser. I have a collection of tests that I would like to run, and I am looking to see if it is possible to add tests to the test browser with a command. From the current documentation, it appears that tests can only be added to the test browser by manually selecting them.
On the same note, I am also wondering if there is a command that can be used to have the same effect as pressing the "Run Current Suite".
I got a hint that something like this may be possible through some error messages, something along the lines of:
"matlab.unittest.internal.testbrowser.TestBrowserActionsService.importFolder"
However, I am wondering if this is a feature that is not accessible to users. Thanks! test browser, unit test MATLAB Answers — New Questions
Maintain colors when ploting during a loop using hold on.
Hey, so imtrying to plot 5 lines where each line new value (5 new ‘y’ axes values) are being calculated iterativly using a loop.
I want to add every iteration the new 5 values while to the same exsiting 5 lines with their colors maintaind.
Thus keeping a constant color for 5 lines.
I have written something like this:
%%
figure(1);
hold on;
while (max(abs(dif)) > 1*10^-6)
if (mod(iteration_num,100) == 0)
plot(repmat(iteration_num,1,size),Xr(1:size));
end
iteration_num = iteration_num + 1;
Xr(r) = Xr(r) + k*((1/Xr(r)^alpha) – help);
end
%%
but every time I get inside the loop the plot uses 5 new colors for the new values while I want it to be consistent
Can anyone help me please?
ThanksHey, so imtrying to plot 5 lines where each line new value (5 new ‘y’ axes values) are being calculated iterativly using a loop.
I want to add every iteration the new 5 values while to the same exsiting 5 lines with their colors maintaind.
Thus keeping a constant color for 5 lines.
I have written something like this:
%%
figure(1);
hold on;
while (max(abs(dif)) > 1*10^-6)
if (mod(iteration_num,100) == 0)
plot(repmat(iteration_num,1,size),Xr(1:size));
end
iteration_num = iteration_num + 1;
Xr(r) = Xr(r) + k*((1/Xr(r)^alpha) – help);
end
%%
but every time I get inside the loop the plot uses 5 new colors for the new values while I want it to be consistent
Can anyone help me please?
Thanks Hey, so imtrying to plot 5 lines where each line new value (5 new ‘y’ axes values) are being calculated iterativly using a loop.
I want to add every iteration the new 5 values while to the same exsiting 5 lines with their colors maintaind.
Thus keeping a constant color for 5 lines.
I have written something like this:
%%
figure(1);
hold on;
while (max(abs(dif)) > 1*10^-6)
if (mod(iteration_num,100) == 0)
plot(repmat(iteration_num,1,size),Xr(1:size));
end
iteration_num = iteration_num + 1;
Xr(r) = Xr(r) + k*((1/Xr(r)^alpha) – help);
end
%%
but every time I get inside the loop the plot uses 5 new colors for the new values while I want it to be consistent
Can anyone help me please?
Thanks plot, iteration, color MATLAB Answers — New Questions
Project Online functionality
All,
I started a new role with a company, and I have been a few years out of the saddle with MS Project. It seems that the newest version Project Online is set to replace the local version.
My question is how well does Project Online integrate with MS Planner? The goal would be to publish a project and have the tasks populate in Planner, with completed tasks feeding back to Project Online. I heard this was true but seeking confirmation.
Thanks for any input or suggestions on how best to accomplish this process.
All, I started a new role with a company, and I have been a few years out of the saddle with MS Project. It seems that the newest version Project Online is set to replace the local version. My question is how well does Project Online integrate with MS Planner? The goal would be to publish a project and have the tasks populate in Planner, with completed tasks feeding back to Project Online. I heard this was true but seeking confirmation. Thanks for any input or suggestions on how best to accomplish this process. Read More
I Need help FROM YOU ALL, do we give away our AWS and Azure alert and monitor tool away for free
I Need help FROM YOU ALL, do we give away our AWS and Azure alert and monitor tool away for free FOREVER? 6 months and 5 developers of investment. PLEASE COMMENT AND SAY YES IF INTERESTED ??
Free Alerts and Monitoring for AWS and Azure FOREVER – Our CloudOps DIY plug it in 5 mins :free_button:platform
WHAT YOU GET – Cost, outage, availability, high CPU, Low memory, low storage, excessive queue requests for server, and more for mixed resources i.e. RDS, Azure SQL, virtual machines, app services, EC2 etc. :chart_decreasing:
Get alerts in portal, email, push notifications, mobile. Soon to be Slack and Team and more via web hook :vibration_mode:
WE ARE THINKING ON GIVING AWAY FREE FOREVER. THOUGHTS. IF YOU COMMENT AND LIKE WE WILL ADD YOU TO THE FREE FIRST ADOPTERS LIST or DM me. :admission_tickets:
I Need help FROM YOU ALL, do we give away our AWS and Azure alert and monitor tool away for free FOREVER? 6 months and 5 developers of investment. PLEASE COMMENT AND SAY YES IF INTERESTED ??Free Alerts and Monitoring for AWS and Azure FOREVER – Our CloudOps DIY plug it in 5 mins :free_button:platformWHAT YOU GET – Cost, outage, availability, high CPU, Low memory, low storage, excessive queue requests for server, and more for mixed resources i.e. RDS, Azure SQL, virtual machines, app services, EC2 etc. :chart_decreasing:Get alerts in portal, email, push notifications, mobile. Soon to be Slack and Team and more via web hook :vibration_mode:WE ARE THINKING ON GIVING AWAY FREE FOREVER. THOUGHTS. IF YOU COMMENT AND LIKE WE WILL ADD YOU TO THE FREE FIRST ADOPTERS LIST or DM me. :admission_tickets: Read More
Imported DOTX template creates error when opening document in app
Hi all,
Just created a new library for testing a few things with documents. I imported a fully working sample template (it works on a local disk and network share) to my SharePoint library:
When clicking it, it successfully creates a Word document that opens in the Word desktop app, but it’s then showing this:
Translation: “Word was unable to read this document. It may be corrupted. Try one the following operations:
– Open and repair the file
– Open the file with the Text Recovery Converter”
If I then close it and right click -> Open in browser, it get this popup (first time opening the DOCX):
I can then edit my template. Furthermore, if I click on “Edit” (“Modification” here) -> Open in app, it get the same error message as above.
This problem is occuring with every template I upload (they are all created with Word M365 version if you’re wondering). I want my users to be able to edit a template-generated document from the app, like any other doc.
What is going on here?
Thanks in advance for your help!
Hi all,Just created a new library for testing a few things with documents. I imported a fully working sample template (it works on a local disk and network share) to my SharePoint library: When clicking it, it successfully creates a Word document that opens in the Word desktop app, but it’s then showing this:Translation: “Word was unable to read this document. It may be corrupted. Try one the following operations:- Open and repair the file- Open the file with the Text Recovery Converter” If I then close it and right click -> Open in browser, it get this popup (first time opening the DOCX): I can then edit my template. Furthermore, if I click on “Edit” (“Modification” here) -> Open in app, it get the same error message as above. This problem is occuring with every template I upload (they are all created with Word M365 version if you’re wondering). I want my users to be able to edit a template-generated document from the app, like any other doc. What is going on here? Thanks in advance for your help! Read More
login ..365 Admin Center without App
how i can login ..365 Admin Center without App?
how i can login ..365 Admin Center without App? Read More
Change or specify value of a header Using Exchange Online
Using Exchange Online exclusively, is it possible to change or specify a value for a header? For example:
X-MS-Exchange-Organization-Original-Sender
or
X-MS-Exchange-Organization-AuthAs
In fact, the objective is to see who actually sent a message through a shared box or a distribution list.
Using Exchange Online exclusively, is it possible to change or specify a value for a header? For example: X-MS-Exchange-Organization-Original-SenderorX-MS-Exchange-Organization-AuthAs In fact, the objective is to see who actually sent a message through a shared box or a distribution list. Read More
How to create a sum formula which auto changes after a week
I am looking to create a excel sheet for a order vs sales for my business.
Part of this sheet, I am attempting to create a formula which will auto populate the last 4 weeks of ordering and sales differentials so I can get a monthly summary for the last 4 weeks of how we are performing.
However, I am struggling to do this. I can attach my screenshots of my workbook to help understand.
I am continuing the base template further down and just aiming to create a simple formula for the bottom right table which will choose the 4 latest weeks worth of summary and will auto populate with all the data
I am looking to create a excel sheet for a order vs sales for my business. Part of this sheet, I am attempting to create a formula which will auto populate the last 4 weeks of ordering and sales differentials so I can get a monthly summary for the last 4 weeks of how we are performing. However, I am struggling to do this. I can attach my screenshots of my workbook to help understand.I am continuing the base template further down and just aiming to create a simple formula for the bottom right table which will choose the 4 latest weeks worth of summary and will auto populate with all the data Read More
Revoking elevated privileges in Endpoint Privilege Management
I found a thread from last year asking this question. When I revoke someone’s elevated access in Intune Endpoint Privilege Management (removing them from the AD group linked to an Intune EPM policy) the “run with elevated access” option remains in the right click context menu. The post from last year said it can take hours for access to be removed but that the app was still in preview mode. This was over a year ago so I’m wondering if anyone from Microsoft or anyone can advise if this is now quicker or if there is a way to speed it up?
We want to start a secondary proof of concept with multiple policies with different levels of access, but testing this would take so long if we’re waiting 8+ hours each time we remove access.
Thanks all
I found a thread from last year asking this question. When I revoke someone’s elevated access in Intune Endpoint Privilege Management (removing them from the AD group linked to an Intune EPM policy) the “run with elevated access” option remains in the right click context menu. The post from last year said it can take hours for access to be removed but that the app was still in preview mode. This was over a year ago so I’m wondering if anyone from Microsoft or anyone can advise if this is now quicker or if there is a way to speed it up? We want to start a secondary proof of concept with multiple policies with different levels of access, but testing this would take so long if we’re waiting 8+ hours each time we remove access.Thanks all Read More
Microsoft Graph Activity Logs – Suspicious TI-IP Address Detection
I’m trying to correlate TI – IP with activities in Graph. Could that be a good detection ? or what is it a better way to protect activites in Microsoft Graph ?
I’m trying to correlate TI – IP with activities in Graph. Could that be a good detection ? or what is it a better way to protect activites in Microsoft Graph ? Read More
Numerical Input in Pop-up box
Hi, I have a code that asks for inputs of numbers from the user. Currently it asks for inputs in the command window, but I would like it to ask in a pop-up box. When I use the inputdlg command it won’t accept the values as numbers for later use, so I was wondering if there is a different way to ask the user for numbers in a menu so that it will know they are numbers.
This is the code that currently works for the command window:
askstartinch="What inch did you start from?n";
start_inch=input(askstartinch);
askendinch="What inch did you end at?n";
end_inch=input(askendinch);
asktrial="What trial number is this?n";
trial=input(asktrial);
This is the code that I tried with the popup boxes, but it won’t accept the values as numbers for later use in the code:
start_inch=inputdlg("What inch did you start from?");
end_inch=inputdlg("What inch did you end at?");
trial=inputdlg("What trial number is this?");
I would perfer the menu to have all 3 questions in popup box, but either way works I just can’t seem to get it work. Thanks!Hi, I have a code that asks for inputs of numbers from the user. Currently it asks for inputs in the command window, but I would like it to ask in a pop-up box. When I use the inputdlg command it won’t accept the values as numbers for later use, so I was wondering if there is a different way to ask the user for numbers in a menu so that it will know they are numbers.
This is the code that currently works for the command window:
askstartinch="What inch did you start from?n";
start_inch=input(askstartinch);
askendinch="What inch did you end at?n";
end_inch=input(askendinch);
asktrial="What trial number is this?n";
trial=input(asktrial);
This is the code that I tried with the popup boxes, but it won’t accept the values as numbers for later use in the code:
start_inch=inputdlg("What inch did you start from?");
end_inch=inputdlg("What inch did you end at?");
trial=inputdlg("What trial number is this?");
I would perfer the menu to have all 3 questions in popup box, but either way works I just can’t seem to get it work. Thanks! Hi, I have a code that asks for inputs of numbers from the user. Currently it asks for inputs in the command window, but I would like it to ask in a pop-up box. When I use the inputdlg command it won’t accept the values as numbers for later use, so I was wondering if there is a different way to ask the user for numbers in a menu so that it will know they are numbers.
This is the code that currently works for the command window:
askstartinch="What inch did you start from?n";
start_inch=input(askstartinch);
askendinch="What inch did you end at?n";
end_inch=input(askendinch);
asktrial="What trial number is this?n";
trial=input(asktrial);
This is the code that I tried with the popup boxes, but it won’t accept the values as numbers for later use in the code:
start_inch=inputdlg("What inch did you start from?");
end_inch=inputdlg("What inch did you end at?");
trial=inputdlg("What trial number is this?");
I would perfer the menu to have all 3 questions in popup box, but either way works I just can’t seem to get it work. Thanks! menu, pop-up, input, output MATLAB Answers — New Questions
Why do these methods to obtain the simulink model transfer functions return different results?
I am trying to learn to use the simulink model linearizer to obtain a transfer function from the following simplified model in MATLAB 2020b:
If I understand the manual correctly, in order to obtain the closed-loop transfer function of the full loop PI/(1+PI*Feedback), the complementary sensitivity analysis point should be applied here:
When applying this at the model output and running the linearizer, the following tf is obtained:
However, the result differs from my own calculations.
When I apply the open-loop input and output however to the loop as follows:
This seems to give me the correct result:
Using these is not always possible in my other complex model however, without ripping it apart. The way I understand the manual, both approaches should be identical. Where am I wrong, what does the complementary sensitivity yield here and what would be the correct way of obtaining the closed loop tf?
My sincere thanks for helping me out with this one…I am trying to learn to use the simulink model linearizer to obtain a transfer function from the following simplified model in MATLAB 2020b:
If I understand the manual correctly, in order to obtain the closed-loop transfer function of the full loop PI/(1+PI*Feedback), the complementary sensitivity analysis point should be applied here:
When applying this at the model output and running the linearizer, the following tf is obtained:
However, the result differs from my own calculations.
When I apply the open-loop input and output however to the loop as follows:
This seems to give me the correct result:
Using these is not always possible in my other complex model however, without ripping it apart. The way I understand the manual, both approaches should be identical. Where am I wrong, what does the complementary sensitivity yield here and what would be the correct way of obtaining the closed loop tf?
My sincere thanks for helping me out with this one… I am trying to learn to use the simulink model linearizer to obtain a transfer function from the following simplified model in MATLAB 2020b:
If I understand the manual correctly, in order to obtain the closed-loop transfer function of the full loop PI/(1+PI*Feedback), the complementary sensitivity analysis point should be applied here:
When applying this at the model output and running the linearizer, the following tf is obtained:
However, the result differs from my own calculations.
When I apply the open-loop input and output however to the loop as follows:
This seems to give me the correct result:
Using these is not always possible in my other complex model however, without ripping it apart. The way I understand the manual, both approaches should be identical. Where am I wrong, what does the complementary sensitivity yield here and what would be the correct way of obtaining the closed loop tf?
My sincere thanks for helping me out with this one… model linearizer, transfer function, simulink MATLAB Answers — New Questions
Simulink 3D matrix interpolation using pre-lookups
I have a 3D (6x5x2) matrix. I’d like to interpolate between ‘surfaces’ along the 3d dimension. To better visualize the problem, one can think of it as a plate with 2 stacked pankaces (each a 6×5 matrix (surface)). I’d like to make a new 5×6 pancake by interpolating between the two stacekd pancakes (along the 3rd dimesion). This needs to be done in Simulink.
I started off by using Matrix Interpolation (MI) block but I realized it would perhaps be more efficient if I directly use pre-lookups + interpolation-using-pre-lookups. See the example below including the .slx file.
In the pre-lookups, for the first 2 dimensions (5×6 –> k1,f1 and k2,f2), I’m enforcing all breakpoints to grab the entire ‘surface’ and simply use the 3rd dimension (x2) to interpolate between the ‘surfaces’. I’m getting port 2 dimension error which I’d appreciate some help to debug.
I’ve also tried using ‘Number of sub-table selection dimensions’ as shows in the second picture below and no success.
I wonder, there should be easier ways of acheiving this given that this is a rather simple operation (interpolation between surfaces)I have a 3D (6x5x2) matrix. I’d like to interpolate between ‘surfaces’ along the 3d dimension. To better visualize the problem, one can think of it as a plate with 2 stacked pankaces (each a 6×5 matrix (surface)). I’d like to make a new 5×6 pancake by interpolating between the two stacekd pancakes (along the 3rd dimesion). This needs to be done in Simulink.
I started off by using Matrix Interpolation (MI) block but I realized it would perhaps be more efficient if I directly use pre-lookups + interpolation-using-pre-lookups. See the example below including the .slx file.
In the pre-lookups, for the first 2 dimensions (5×6 –> k1,f1 and k2,f2), I’m enforcing all breakpoints to grab the entire ‘surface’ and simply use the 3rd dimension (x2) to interpolate between the ‘surfaces’. I’m getting port 2 dimension error which I’d appreciate some help to debug.
I’ve also tried using ‘Number of sub-table selection dimensions’ as shows in the second picture below and no success.
I wonder, there should be easier ways of acheiving this given that this is a rather simple operation (interpolation between surfaces) I have a 3D (6x5x2) matrix. I’d like to interpolate between ‘surfaces’ along the 3d dimension. To better visualize the problem, one can think of it as a plate with 2 stacked pankaces (each a 6×5 matrix (surface)). I’d like to make a new 5×6 pancake by interpolating between the two stacekd pancakes (along the 3rd dimesion). This needs to be done in Simulink.
I started off by using Matrix Interpolation (MI) block but I realized it would perhaps be more efficient if I directly use pre-lookups + interpolation-using-pre-lookups. See the example below including the .slx file.
In the pre-lookups, for the first 2 dimensions (5×6 –> k1,f1 and k2,f2), I’m enforcing all breakpoints to grab the entire ‘surface’ and simply use the 3rd dimension (x2) to interpolate between the ‘surfaces’. I’m getting port 2 dimension error which I’d appreciate some help to debug.
I’ve also tried using ‘Number of sub-table selection dimensions’ as shows in the second picture below and no success.
I wonder, there should be easier ways of acheiving this given that this is a rather simple operation (interpolation between surfaces) simulink, interpolation, pre-lookup, lookup MATLAB Answers — New Questions
Third Party NVA in Azure VMware Solution
Hi all,
I am following below link to get more information on how to deploy 3rd party NVA however, would like to know if you have any other detailed documentations and considerations that I can follow during my initial discussion with the customers.
Appreciate your support!
Hi all,I am following below link to get more information on how to deploy 3rd party NVA however, would like to know if you have any other detailed documentations and considerations that I can follow during my initial discussion with the customers.https://vuptime.io/post/2023-07-24-third-party-nva-in-avs-nsxt/#:~:text=In%20order%20to%20deploy%20a,and%20to%20the%20NVA%20uplink.Appreciate your support! Read More
How do I change the SharePoint Start Page?
I’m setting up a SharePoint tenant; we have multiple sites, and essentially each one relates to a department of the company. We’re using modern SharePoint online.
When we go to the SharePoint Start Page, we see the standard lists of “News from Sites” and then “Favourite Sites”. However, we’d really like to change this so that it’s more in tune with the individual sites. How do we do this?
I’m happy to write Web Parts, but we can’t see any way to add them. At the moment it seems as though our options are:
1. Create a landing page and then tell SharePoint to use it as the Home Page – we tried this but couldn’t figure out how to tell SharePoint to use it.
2. Viva Connections – we were able to set up a connection experience, but then couldn’t get any further. We set up a communications site, and then tried to post its URL into the URL box that popped up, but again, SharePoint didn’t seem to pick up on it to use it.
Apart from this we’ve been able to customize SharePoint really well, but the start page looks terrible, and we really need to change it otherwise people won’t use it and we might as well go back to the old system we had.
Can anyone tell me what the options are here, and how to implement them?
I’m setting up a SharePoint tenant; we have multiple sites, and essentially each one relates to a department of the company. We’re using modern SharePoint online. When we go to the SharePoint Start Page, we see the standard lists of “News from Sites” and then “Favourite Sites”. However, we’d really like to change this so that it’s more in tune with the individual sites. How do we do this? I’m happy to write Web Parts, but we can’t see any way to add them. At the moment it seems as though our options are: 1. Create a landing page and then tell SharePoint to use it as the Home Page – we tried this but couldn’t figure out how to tell SharePoint to use it. 2. Viva Connections – we were able to set up a connection experience, but then couldn’t get any further. We set up a communications site, and then tried to post its URL into the URL box that popped up, but again, SharePoint didn’t seem to pick up on it to use it. Apart from this we’ve been able to customize SharePoint really well, but the start page looks terrible, and we really need to change it otherwise people won’t use it and we might as well go back to the old system we had. Can anyone tell me what the options are here, and how to implement them? Read More