Month: June 2024
Scheduled task – EXCEL Access is denied. (0x80070005 (E_ACCESSDENIED))
Hi,
Some time ago, I made a ps1 script that leverages excel COM libraries and excel process operations in 2 major ways. (details below)
I configured a scheduled task to execute this script non-interactively as a standard user in a Windows Server 2022 environment.
Long story short, everything was working fine until the domain account this script was running under got deleted, and as you may imagine the provisioning process for a new account can take some time.
In order to circumvent this and also prevent this kind of issue from reappearing in the future i would like to run it as a local standard account with no more privilege than required for obvious security reasons.
It appears this is a tidy bit more complex than what i’ve imagined.
Below is the stacktrace for each operation.
1/ Stopping all excel processes
Stop-Process: C:XXXXXXXXX.ps1:28
Line |
28 | get-process *excel* | stop-process -force
| ~~~~~~~~~~~~~~~~~~~
| Cannot stop process “EXCEL (2632)” because of the following error: Access is denied.
2/ Creating an instance of Excel.Application COM class object
PS>TerminatingError(New-Object): “Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046} failed due to the following error: 80070005 Access is denied. (0x80070005 (E_ACCESSDENIED)).”
New-Object: C:XXXXXXXXX.ps1:29
Line |
29 | $excel_input = New-Object -ComObject Excel.Application
As you can see, both operations are blocked for permission issues, despite having taken all the steps below to address it :
1/ Assigned all DCOM permissions to local account for Excel Application
2/ Added local account to local Distributed COM Users group
3/ Set registry key HKEY_LOCAL_MACHINESOFTWAREClassesAppID{00020812-0000-0000-C000-000000000046} to run as “Interactive User”
4/ Assign full control over root script folder to local account
5/ Assign full control over Excel.exe to local account
When adding this local account to local Administrators group, the errors disappear, but this is obviously not a solution, just a sanity check.
Which leads to my final question : What are the minimally required permissions to run excel operations as a scheduled task ?
Any suggestion would be greatly appreciated,
Thank you,
Hi, Some time ago, I made a ps1 script that leverages excel COM libraries and excel process operations in 2 major ways. (details below)I configured a scheduled task to execute this script non-interactively as a standard user in a Windows Server 2022 environment.Long story short, everything was working fine until the domain account this script was running under got deleted, and as you may imagine the provisioning process for a new account can take some time. In order to circumvent this and also prevent this kind of issue from reappearing in the future i would like to run it as a local standard account with no more privilege than required for obvious security reasons. It appears this is a tidy bit more complex than what i’ve imagined. Below is the stacktrace for each operation. 1/ Stopping all excel processes Stop-Process: C:XXXXXXXXX.ps1:28
Line |
28 | get-process *excel* | stop-process -force
| ~~~~~~~~~~~~~~~~~~~
| Cannot stop process “EXCEL (2632)” because of the following error: Access is denied.2/ Creating an instance of Excel.Application COM class objectPS>TerminatingError(New-Object): “Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046} failed due to the following error: 80070005 Access is denied. (0x80070005 (E_ACCESSDENIED)).”
New-Object: C:XXXXXXXXX.ps1:29
Line |
29 | $excel_input = New-Object -ComObject Excel.Application As you can see, both operations are blocked for permission issues, despite having taken all the steps below to address it : 1/ Assigned all DCOM permissions to local account for Excel Application2/ Added local account to local Distributed COM Users group3/ Set registry key HKEY_LOCAL_MACHINESOFTWAREClassesAppID{00020812-0000-0000-C000-000000000046} to run as “Interactive User”4/ Assign full control over root script folder to local account 5/ Assign full control over Excel.exe to local account When adding this local account to local Administrators group, the errors disappear, but this is obviously not a solution, just a sanity check. Which leads to my final question : What are the minimally required permissions to run excel operations as a scheduled task ? Any suggestion would be greatly appreciated,Thank you, Read More
Top 5 Best OST Repair tool for Outlook Application
Corruption of OST File is a common issue in Outlook Application. There are too many computer application claiming to repair OST File. Here we gather the list of 5 Best OST repair tool in 2024. We created this list according to the the reliability, performance and accuracy of the tool.
5 Best OST Repair tool in 2024 are
Advik OST Repair toolYota OST Repair ToolXtraxtor OST Repair ToolSystools OST Repair ToolBitRecover OST Repair Tool
I Hope these tools helps in solving your error
Corruption of OST File is a common issue in Outlook Application. There are too many computer application claiming to repair OST File. Here we gather the list of 5 Best OST repair tool in 2024. We created this list according to the the reliability, performance and accuracy of the tool.5 Best OST Repair tool in 2024 areAdvik OST Repair toolYota OST Repair ToolXtraxtor OST Repair ToolSystools OST Repair ToolBitRecover OST Repair ToolI Hope these tools helps in solving your error Read More
Weibull does not seem to work gives error”Error using makedist Distribution name ‘Weibull’ is unrecognized.”
c = 8.1; % Scale factor
k = 2.03; % Shape factor
N = 1000; % Number of plot data points
pd = makedist(‘Weibull’,’a’,c,’b’,k) %Selection of Weibull
x = linspace(0,25,N);
y = pdf(pd,x); % Weibull output function
cd = 1 – exp(-(x/c).^k); % Cumulative distribution
yyaxis left
plot(x,100*y, ‘k’,’LineWidth’,2)
title({[‘Weibull and Cumulative Probability Distributions’], …
[‘k = ‘, num2str(k), ‘ and c = ‘, num2str(c)]});
xlabel(‘Wind Velocity (m/s)’);
ylabel(‘Probability (%)’, ‘Color’,’k’);
hold on
yyaxis right
plot(x,100*cd, ‘r’,’LineWidth’,2)
ylabel(‘Probability (%)’);
legend(‘Weibull’, ‘Cumulative’)
axis([0 25 0 120]);
grid on
grid minor
It gives the following error:
Error using makedist
Distribution name ‘Weibull’ is unrecognized.c = 8.1; % Scale factor
k = 2.03; % Shape factor
N = 1000; % Number of plot data points
pd = makedist(‘Weibull’,’a’,c,’b’,k) %Selection of Weibull
x = linspace(0,25,N);
y = pdf(pd,x); % Weibull output function
cd = 1 – exp(-(x/c).^k); % Cumulative distribution
yyaxis left
plot(x,100*y, ‘k’,’LineWidth’,2)
title({[‘Weibull and Cumulative Probability Distributions’], …
[‘k = ‘, num2str(k), ‘ and c = ‘, num2str(c)]});
xlabel(‘Wind Velocity (m/s)’);
ylabel(‘Probability (%)’, ‘Color’,’k’);
hold on
yyaxis right
plot(x,100*cd, ‘r’,’LineWidth’,2)
ylabel(‘Probability (%)’);
legend(‘Weibull’, ‘Cumulative’)
axis([0 25 0 120]);
grid on
grid minor
It gives the following error:
Error using makedist
Distribution name ‘Weibull’ is unrecognized. c = 8.1; % Scale factor
k = 2.03; % Shape factor
N = 1000; % Number of plot data points
pd = makedist(‘Weibull’,’a’,c,’b’,k) %Selection of Weibull
x = linspace(0,25,N);
y = pdf(pd,x); % Weibull output function
cd = 1 – exp(-(x/c).^k); % Cumulative distribution
yyaxis left
plot(x,100*y, ‘k’,’LineWidth’,2)
title({[‘Weibull and Cumulative Probability Distributions’], …
[‘k = ‘, num2str(k), ‘ and c = ‘, num2str(c)]});
xlabel(‘Wind Velocity (m/s)’);
ylabel(‘Probability (%)’, ‘Color’,’k’);
hold on
yyaxis right
plot(x,100*cd, ‘r’,’LineWidth’,2)
ylabel(‘Probability (%)’);
legend(‘Weibull’, ‘Cumulative’)
axis([0 25 0 120]);
grid on
grid minor
It gives the following error:
Error using makedist
Distribution name ‘Weibull’ is unrecognized. matlab MATLAB Answers — New Questions
How to insert dash-line in a matlab figure?
How can i add such horizontal dash-line in a matlab figure?How can i add such horizontal dash-line in a matlab figure? How can i add such horizontal dash-line in a matlab figure? matlab figure, matlab MATLAB Answers — New Questions
Calculate Mean of vector in more decimals
I want to calculate the mean of a vector in more than 4 decimals. The code
A = [0,1,9];
mean(A)
gives
ans = 3.3333
But I want 3.333333I want to calculate the mean of a vector in more than 4 decimals. The code
A = [0,1,9];
mean(A)
gives
ans = 3.3333
But I want 3.333333 I want to calculate the mean of a vector in more than 4 decimals. The code
A = [0,1,9];
mean(A)
gives
ans = 3.3333
But I want 3.333333 mean MATLAB Answers — New Questions
How to plot isosurfaces using 3 vector columns of data?
I have 4 columns. The first three are the x,y, and z coordinates while the last one is the iso level. How can I plot them in Matlab?. thanksI have 4 columns. The first three are the x,y, and z coordinates while the last one is the iso level. How can I plot them in Matlab?. thanks I have 4 columns. The first three are the x,y, and z coordinates while the last one is the iso level. How can I plot them in Matlab?. thanks isosurfaces isolevels MATLAB Answers — New Questions
Zoom Workplace keyboard shortcut overrides custom Word 365 shortcut
I’m not sure whether this question belongs in the Windows 365 or Windows 11 category, so I’ve posted it in both. (Perhaps it doesn’t belong in a Windows forum at all, I don’t know!)
My Zoom app recently updated to the new “Zoom Workplace” version, which comes with a facility to create and share “clips”. There is a keyboard shortcut built in (Ctrl+
Alt+C) that opens that window even when Zoom is closed. Unfortunately it is a keyboard shortcut that I had set up for use in Word and it’s one that I use *all the time* 🙁 I have disabled the clips feature in Zoom, but that keyboard shortcut now seems to have been irrevocably allocated to that function, so when I type it in Word, nothing happens, and I can’t allocate it to the function I had allocated it to any more. I’ve set up a new shortcut in Word, but even so this is driving me nuts because my use of that shortcut is so automatic that I’m forever using it and getting confused about why nothing has happened.
Does anyone know how to wrest control of my shortcut back from Zoom?
I’m not sure whether this question belongs in the Windows 365 or Windows 11 category, so I’ve posted it in both. (Perhaps it doesn’t belong in a Windows forum at all, I don’t know!) My Zoom app recently updated to the new “Zoom Workplace” version, which comes with a facility to create and share “clips”. There is a keyboard shortcut built in (Ctrl+Alt+C) that opens that window even when Zoom is closed. Unfortunately it is a keyboard shortcut that I had set up for use in Word and it’s one that I use *all the time* 🙁 I have disabled the clips feature in Zoom, but that keyboard shortcut now seems to have been irrevocably allocated to that function, so when I type it in Word, nothing happens, and I can’t allocate it to the function I had allocated it to any more. I’ve set up a new shortcut in Word, but even so this is driving me nuts because my use of that shortcut is so automatic that I’m forever using it and getting confused about why nothing has happened. Does anyone know how to wrest control of my shortcut back from Zoom? Read More
Notify When Available Comes to Teams 2.1
Without any fuss or bother, Microsoft announced that the Teams 2.1 client has regained the Notify When Available feature. This functionality allows users to subscribe to the presence status for someone else to receive notifications when that person’s presence status changes to Available. It’s a very useful and worthwhile feature to have that goes back to Skype. It’s good to have it back!
https://office365itpros.com/2024/06/03/notify-when-available-teams21/
Without any fuss or bother, Microsoft announced that the Teams 2.1 client has regained the Notify When Available feature. This functionality allows users to subscribe to the presence status for someone else to receive notifications when that person’s presence status changes to Available. It’s a very useful and worthwhile feature to have that goes back to Skype. It’s good to have it back!
https://office365itpros.com/2024/06/03/notify-when-available-teams21/ Read More
Logging people who download files in SharePoint
Hi,
Does anyone have a suggestion to who I can see who downloaded a file?
I do not mean “Modified” but actually who has downloaded the file.
Any suggestion is appreciated.
BR Anne
Hi, Does anyone have a suggestion to who I can see who downloaded a file?I do not mean “Modified” but actually who has downloaded the file. Any suggestion is appreciated. BR Anne Read More
**CapCut Mod APK: Balancing Creativity and Productivity**
Hey everyone,
I’ve been diving deep into using the CapCut Mod APK to take my video editing skills to the next level. The app is packed with premium features that make creating stunning videos easier and more enjoyable. However, like many of you, I also have to juggle work, school, and other responsibilities. This got me wondering, how do you all manage to balance using CapCut Mod APK for creative projects while staying productive with your daily tasks?
Do you have any strategies for ensuring that video editing doesn’t become a distraction? How do you incorporate it into your day without letting it interfere with your productivity? Maybe some tips on setting boundaries or using specific features to streamline your editing process?. To download Mod Apk click here.
Looking forward to hearing your thoughts and tips on balancing creativity with productivity using CapCut Mod APK!
Cheers!
Hey everyone,I’ve been diving deep into using the CapCut Mod APK to take my video editing skills to the next level. The app is packed with premium features that make creating stunning videos easier and more enjoyable. However, like many of you, I also have to juggle work, school, and other responsibilities. This got me wondering, how do you all manage to balance using CapCut Mod APK for creative projects while staying productive with your daily tasks?Do you have any strategies for ensuring that video editing doesn’t become a distraction? How do you incorporate it into your day without letting it interfere with your productivity? Maybe some tips on setting boundaries or using specific features to streamline your editing process?. To download Mod Apk click here.Looking forward to hearing your thoughts and tips on balancing creativity with productivity using CapCut Mod APK!Cheers! Read More
How to using multi output in Neural network fitting app?
hi,
I want to develop a prediction model using Neural Network Fitting App in Matlab 2024a version.
I want to use two output data (A and B), but this app only produces one output.
Can’t I use more than 2 outputs?hi,
I want to develop a prediction model using Neural Network Fitting App in Matlab 2024a version.
I want to use two output data (A and B), but this app only produces one output.
Can’t I use more than 2 outputs? hi,
I want to develop a prediction model using Neural Network Fitting App in Matlab 2024a version.
I want to use two output data (A and B), but this app only produces one output.
Can’t I use more than 2 outputs? neural network fitting, artificial neural network MATLAB Answers — New Questions
Multivariate goodness-of-fit?
Does MatLab/MathWorks support procedure(s) to assess goodness-of-fit for simulation models producing outputs of multiple types?Does MatLab/MathWorks support procedure(s) to assess goodness-of-fit for simulation models producing outputs of multiple types? Does MatLab/MathWorks support procedure(s) to assess goodness-of-fit for simulation models producing outputs of multiple types? goodness of fit MATLAB Answers — New Questions
Chomp trajectories are in self collision
Hello,
I’ve been using the CHOMP algorithm for a while, but I’m encountering persistent self-collisions in some trajectories. Specifically, when simulating a UR5e robot, links 4 and 6 often collide during the trajectory. I verified these collisions using the checkCollision function.
I’ve tried adjusting these collision options, but the issue persists. For now I have not modified other solver/collision options.
chomp.CollisionOptions.IgnoreSelfCollision = false;
chomp.CollisionOptions.CollisionCostWeight = 10;
Any insights to avoid self collisions ? Because I think it should not be impossible for robot to not to follow that specific path where the link 6 touches the link 4 so I am kinda lost.Hello,
I’ve been using the CHOMP algorithm for a while, but I’m encountering persistent self-collisions in some trajectories. Specifically, when simulating a UR5e robot, links 4 and 6 often collide during the trajectory. I verified these collisions using the checkCollision function.
I’ve tried adjusting these collision options, but the issue persists. For now I have not modified other solver/collision options.
chomp.CollisionOptions.IgnoreSelfCollision = false;
chomp.CollisionOptions.CollisionCostWeight = 10;
Any insights to avoid self collisions ? Because I think it should not be impossible for robot to not to follow that specific path where the link 6 touches the link 4 so I am kinda lost. Hello,
I’ve been using the CHOMP algorithm for a while, but I’m encountering persistent self-collisions in some trajectories. Specifically, when simulating a UR5e robot, links 4 and 6 often collide during the trajectory. I verified these collisions using the checkCollision function.
I’ve tried adjusting these collision options, but the issue persists. For now I have not modified other solver/collision options.
chomp.CollisionOptions.IgnoreSelfCollision = false;
chomp.CollisionOptions.CollisionCostWeight = 10;
Any insights to avoid self collisions ? Because I think it should not be impossible for robot to not to follow that specific path where the link 6 touches the link 4 so I am kinda lost. matlab MATLAB Answers — New Questions
make figure spectrogram as length as signal above it
I would like to put spectogram result below the signal figure. I use specgram (in second row) and spectogram result in last row, but i get difficulties to make the lenght of spectogram, figure as length as signal figure. Can somebody help me?I would like to put spectogram result below the signal figure. I use specgram (in second row) and spectogram result in last row, but i get difficulties to make the lenght of spectogram, figure as length as signal figure. Can somebody help me? I would like to put spectogram result below the signal figure. I use specgram (in second row) and spectogram result in last row, but i get difficulties to make the lenght of spectogram, figure as length as signal figure. Can somebody help me? spectrogram, figure expand MATLAB Answers — New Questions
SQL Server emulation layer; support for prepared statements
ADX supports very basic transformation of T-SQL to KQL, as it is limited to normal SQL statements.
Currently support for prepared statements doesn’t seem to be in-place. This would greatly improve security of the emulation layer by enabling prepared statements to be used.
This would also allow semantic layers and customer facing analytics tools such as Vizzly to integrate in a secured manner.
ADX supports very basic transformation of T-SQL to KQL, as it is limited to normal SQL statements.Currently support for prepared statements doesn’t seem to be in-place. This would greatly improve security of the emulation layer by enabling prepared statements to be used. This would also allow semantic layers and customer facing analytics tools such as Vizzly to integrate in a secured manner. Read More
Create Standardised Microsoft Lists In Under 5 Seconds
Developing Lobby, our visitor management Microsoft solution, got us thinking about how to make setup as effortless as possible for businesses and educational institutions. This drive led us to create a smart, automated process for configuring the necessary visitor database using Microsoft Lists.
To bypass the extensive manual setup of Microsoft Lists, which involves creating a list, providing a description, creating columns, and formatting them, we developed a Microsoft Power Automate solution to do the job for us. This tool automatically creates the required Microsoft List with the correct description, columns, and column format we required users of Lobby to have—saving time and ensuring accuracy. Typically, before setting up the List for Lobby took 20+ minutes. With our method, it now takes just 5 seconds!
How It Works
Our solution operates on a manual trigger within Microsoft Power Automate, perfect for this one-time setup process. Here’s a quick overview:
Trigger the Process: Initiate the solution manually to avoid duplicating lists.Send HTTP Request: This SharePoint feature allows you to communicate with the desired SharePoint site. Simply specify the site where you want the list stored.Initialize Variables: Automatically gather address details to streamline the process.Create the List: Generate the list with the appropriate title and description, again using a SEND HTTP Request.Parse JSON: Extract necessary details from the HTTP response.Create Columns: Use multiple HTTP requests to add each column with unique names and correct field types.
Once ran, you’ll have a fully formatted, accurately labeled Microsoft List ready to use.
Why This is Useful for You
Our solution eliminates the need for lengthy Microsoft List setups, offering numerous benefits for both businesses and educational institutions. Here are a few examples of how it could be adapted and used:
Employee Onboarding: Quickly create personalised onboarding lists for new hires, ensuring consistency and saving time.Project Management: Standardise task lists across multiple teams, ensuring everyone follows the same structure.Event Planning: Easily set up and manage guest lists, agendas, and resources for events.Course Tracking: Create uniform course tracking lists for multiple classes, ensuring accurate record-keeping.
Our method reduces the time needed from 20+ minutes setting up a Microsoft List to just 5 seconds! Whether you need uniform lists for individual users or a consistent structure for various projects, our solution enhances efficiency and accuracy.
Get in Touch
Inspired by our solution? Reach out to the No More Bad Mondays team to see how we can support your business, school, college, or university with it. We can customise your Lists to fit your specific needs, including formatting of choices within your columns.
Comment below, message me, or sign up to our mailing list HERE.
Developing Lobby, our visitor management Microsoft solution, got us thinking about how to make setup as effortless as possible for businesses and educational institutions. This drive led us to create a smart, automated process for configuring the necessary visitor database using Microsoft Lists.To bypass the extensive manual setup of Microsoft Lists, which involves creating a list, providing a description, creating columns, and formatting them, we developed a Microsoft Power Automate solution to do the job for us. This tool automatically creates the required Microsoft List with the correct description, columns, and column format we required users of Lobby to have—saving time and ensuring accuracy. Typically, before setting up the List for Lobby took 20+ minutes. With our method, it now takes just 5 seconds! How It WorksOur solution operates on a manual trigger within Microsoft Power Automate, perfect for this one-time setup process. Here’s a quick overview: Trigger the Process: Initiate the solution manually to avoid duplicating lists.Send HTTP Request: This SharePoint feature allows you to communicate with the desired SharePoint site. Simply specify the site where you want the list stored.Initialize Variables: Automatically gather address details to streamline the process.Create the List: Generate the list with the appropriate title and description, again using a SEND HTTP Request.Parse JSON: Extract necessary details from the HTTP response.Create Columns: Use multiple HTTP requests to add each column with unique names and correct field types. Once ran, you’ll have a fully formatted, accurately labeled Microsoft List ready to use. Why This is Useful for YouOur solution eliminates the need for lengthy Microsoft List setups, offering numerous benefits for both businesses and educational institutions. Here are a few examples of how it could be adapted and used: Employee Onboarding: Quickly create personalised onboarding lists for new hires, ensuring consistency and saving time.Project Management: Standardise task lists across multiple teams, ensuring everyone follows the same structure.Event Planning: Easily set up and manage guest lists, agendas, and resources for events.Course Tracking: Create uniform course tracking lists for multiple classes, ensuring accurate record-keeping. Our method reduces the time needed from 20+ minutes setting up a Microsoft List to just 5 seconds! Whether you need uniform lists for individual users or a consistent structure for various projects, our solution enhances efficiency and accuracy. Get in TouchInspired by our solution? Reach out to the No More Bad Mondays team to see how we can support your business, school, college, or university with it. We can customise your Lists to fit your specific needs, including formatting of choices within your columns.Comment below, message me, or sign up to our mailing list HERE. Read More
Copilot in Power BI
Hi Community.
hope you’re well.
I have just a quick question. I’m handling an Edu tenant and we just added Copilot in our Power BI.
What I would like to know is if Copilot, which has been activated in Power BI (with paid licenses), includes/has the protection offered by the Commercial Data Protection or if, on the contrary, it is not included and Microsoft will be able to use our data to train the AI .
Thanks in advanced.
Best,
M.
Hi Community. hope you’re well. I have just a quick question. I’m handling an Edu tenant and we just added Copilot in our Power BI. What I would like to know is if Copilot, which has been activated in Power BI (with paid licenses), includes/has the protection offered by the Commercial Data Protection or if, on the contrary, it is not included and Microsoft will be able to use our data to train the AI . Thanks in advanced. Best,M. Read More
How can I fill the table using formulates
Hi,
I need to update a weekly and daily report based on given data. Can you kindly support?
Condition is, when the percentage first reach 70% i need to put the Item code in my weekly table. How can I do this automatically instead of entering manually.
I have attached my file for your kind reference.
Thanks
Hi, I need to update a weekly and daily report based on given data. Can you kindly support? Condition is, when the percentage first reach 70% i need to put the Item code in my weekly table. How can I do this automatically instead of entering manually. I have attached my file for your kind reference. https://www.dropbox.com/scl/fi/yncvyaw6rghsn7s1w4pgm/Automate-the-fomulas.xlsx?rlkey=txk09lv041bgtdksiksog1lx9&st=vgm0tyt0&dl=0 Thanks Read More
Zoom Workplace keyboard shortcut overrides my Word 365 custom shortcuts
I’m not sure whether this question belongs in the Windows 365 or Windows 11 category, so I’ve posted it in both. (Perhaps it doesn’t belong in a Windows forum at all, I don’t know!)
My Zoom app recently updated to the new “Zoom Workplace” version, which comes with a facility to create and share “clips”. There is a keyboard shortcut built in (Ctrl+
Alt+C) that opens that window even when Zoom is closed. Unfortunately it is a keyboard shortcut that I had set up for use in Word and it’s one that I use *all the time* 🙁 I have disabled the clips feature in Zoom, but that keyboard shortcut now seems to have been irrevocably allocated to that function, so when I type it in Word, nothing happens, and I can’t allocate it to the function I had allocated it to any more. I’ve set up a new shortcut in Word, but even so this is driving me nuts because my use of that shortcut is so automatic that I’m forever using it and getting confused about why nothing has happened.
Does anyone know how to wrest control of my shortcut back from Zoom?
I’m not sure whether this question belongs in the Windows 365 or Windows 11 category, so I’ve posted it in both. (Perhaps it doesn’t belong in a Windows forum at all, I don’t know!) My Zoom app recently updated to the new “Zoom Workplace” version, which comes with a facility to create and share “clips”. There is a keyboard shortcut built in (Ctrl+Alt+C) that opens that window even when Zoom is closed. Unfortunately it is a keyboard shortcut that I had set up for use in Word and it’s one that I use *all the time* 🙁 I have disabled the clips feature in Zoom, but that keyboard shortcut now seems to have been irrevocably allocated to that function, so when I type it in Word, nothing happens, and I can’t allocate it to the function I had allocated it to any more. I’ve set up a new shortcut in Word, but even so this is driving me nuts because my use of that shortcut is so automatic that I’m forever using it and getting confused about why nothing has happened. Does anyone know how to wrest control of my shortcut back from Zoom? Read More
Integrate external content with Copilot for Microsoft 365 using Microsoft Graph connectors built wit
I am using ECM service.
I have followed several tutorials on building Microsoft Graph connectors to work with copilot for ms365, but no external connections are created.
Both of the following tutorials failed to create an external connection. What could be the cause?
Error message : Precondition Not Met: One or more request precondition not met.
1. https://learn.microsoft.com/en-us/training/modules/copilot-graph-connectors/?source=recommendations
2. https://learn.microsoft.com/en-us/graph/connecting-external-content-build-quickstart
I am using ECM service.I have followed several tutorials on building Microsoft Graph connectors to work with copilot for ms365, but no external connections are created. Both of the following tutorials failed to create an external connection. What could be the cause?Error message : Precondition Not Met: One or more request precondition not met. 1. https://learn.microsoft.com/en-us/training/modules/copilot-graph-connectors/?source=recommendations2. https://learn.microsoft.com/en-us/graph/connecting-external-content-build-quickstart Read More