Month: June 2024
AD CS Server use RPC port 40008
Hello,
i wanna allow the computers to request certificats from our AD CS 2016 Server on the firewall.
Many docs mention that RPC use the dynamic port range 49152-65535, but the test computer tried to join the AD CS server on a lower port 40008/TCP
Hello, i wanna allow the computers to request certificats from our AD CS 2016 Server on the firewall. Many docs mention that RPC use the dynamic port range 49152-65535, but the test computer tried to join the AD CS server on a lower port 40008/TCP Read More
Unable to receive emails
Hello
Please i need your help on this issue.
One of my customers is experiencing an issue where they are unable to receive emails, although they can send emails to external recipients.
They are not receiving any email, but they are able to send email to outsiders.
Hello Please i need your help on this issue. One of my customers is experiencing an issue where they are unable to receive emails, although they can send emails to external recipients.They are not receiving any email, but they are able to send email to outsiders. Read More
If 3 staff are available at one time how does Bookings choose
We have selected ‘assign any of your staff to an appointment.’ If all staff are available how does Bookings choose which one? Asking as we’d like it to default to one user who can then reassign the booking as needed to other users. The workaround I’ve found is to not include the staff in the service until all the bookings have been registered.
We have selected ‘assign any of your staff to an appointment.’ If all staff are available how does Bookings choose which one? Asking as we’d like it to default to one user who can then reassign the booking as needed to other users. The workaround I’ve found is to not include the staff in the service until all the bookings have been registered. Read More
Live Script Controls in (For) Loop
Hello,
Is there a way to create a dynamic input field using live script controls? I want to populate the livescript with N controls (ex. "Edit Field") inputs prior to the user providing input values. The user specifies N, and the live script then generates N controls.
I assume have to embed the control in a (for) loop. I am not hard coding any controls, at the moment. I prefer to have the controls embedded in the live script and not have to use a inputdlg box.
Thank You.
N = 2;
for i = 1:N
fprintf("Livescript Input %d n",i)
%LIVESCRIPT CONTROL HERE ("EDIT FIELD")
end
% N POPULATED CONTROLS HERE
% USER ENTERS N INPUTS HEREHello,
Is there a way to create a dynamic input field using live script controls? I want to populate the livescript with N controls (ex. "Edit Field") inputs prior to the user providing input values. The user specifies N, and the live script then generates N controls.
I assume have to embed the control in a (for) loop. I am not hard coding any controls, at the moment. I prefer to have the controls embedded in the live script and not have to use a inputdlg box.
Thank You.
N = 2;
for i = 1:N
fprintf("Livescript Input %d n",i)
%LIVESCRIPT CONTROL HERE ("EDIT FIELD")
end
% N POPULATED CONTROLS HERE
% USER ENTERS N INPUTS HERE Hello,
Is there a way to create a dynamic input field using live script controls? I want to populate the livescript with N controls (ex. "Edit Field") inputs prior to the user providing input values. The user specifies N, and the live script then generates N controls.
I assume have to embed the control in a (for) loop. I am not hard coding any controls, at the moment. I prefer to have the controls embedded in the live script and not have to use a inputdlg box.
Thank You.
N = 2;
for i = 1:N
fprintf("Livescript Input %d n",i)
%LIVESCRIPT CONTROL HERE ("EDIT FIELD")
end
% N POPULATED CONTROLS HERE
% USER ENTERS N INPUTS HERE live script, control, loop, user MATLAB Answers — New Questions
Blocking pixel label data for semantic segmentation DL training
I’m trying to block images and their pixel labels for training a unet. I can use a blockedImageDatastore for the input images, but I don’t know how to get this blocking behavior from the pixelLabelDatastore that holds the expected labels. I can get the behavior myself by splitting all the images beforehand and saving them to disk, but I’d rather not have to deal with the file cleanup or lose the dynamic changing of blocking. Does anyone know a way to achieve this?I’m trying to block images and their pixel labels for training a unet. I can use a blockedImageDatastore for the input images, but I don’t know how to get this blocking behavior from the pixelLabelDatastore that holds the expected labels. I can get the behavior myself by splitting all the images beforehand and saving them to disk, but I’d rather not have to deal with the file cleanup or lose the dynamic changing of blocking. Does anyone know a way to achieve this? I’m trying to block images and their pixel labels for training a unet. I can use a blockedImageDatastore for the input images, but I don’t know how to get this blocking behavior from the pixelLabelDatastore that holds the expected labels. I can get the behavior myself by splitting all the images beforehand and saving them to disk, but I’d rather not have to deal with the file cleanup or lose the dynamic changing of blocking. Does anyone know a way to achieve this? blockedimagedatastore, pixellabeldatastore, semantic segmentation MATLAB Answers — New Questions
Define a Linear Mixed-Effects Model with fitlme for a random effects model with a one fixed effect and one random intercept
I am trying to determine how to define the formula for the "fitlme" function, which will then be passed into the "randomEffects" function. I have read through the documentation for the "fitlme" function and the documentation on the webpage "Prepare Data for Linear Mixed-Effects Models." However, I am still unsure how to proceed.
Background:
Our laboratory performed volumetric optical imaging on 15 brain tissue samples (five samples were from disease A, five were from disease B, and five were from healthy controls). For each tissue sample, we virtually divided the volumetric optical images into uniform cubic sub samples. For each sub-sample, we calculated a single value for a particular vascular metric. This resulted in a vector of continuous values for each tissue sample.
Goal:
Now, I want to compare the vascular metrics between each disease group and the control group (i.e. disease A vs. control and disease B vs. control). My goal is to determine whether the vascular metric changes signficantly between the disease groups and the control group. I contacted a statistician, who recommended using a random effects model. They recommended defining the following:
response = array of values for the vascular metric
fixed effect = group (disease A, disease B, or control)
random effect = subject identifier
I am now trying to determine how to implement this in Matlab via the "fitlme" function.
Using the "fitlme" function:
Defining the table:
I created two separate tables, one for comparing disease A vs. the control group and a second for comparing disease B vs. the control group. The first column of the tables represents the group identifier (disease_A, disease_B, or control). The second column is the subject identifier (1-15). The third column is a concatenated vector of all of the subsamples across all of the subjects in the respective groups.
Defining the formula:
I am unsure how to define the formula that defines the linear mixed effects model. I would like to set the vector of subsamples as the response variable (y), the vector of groups as the fixed effect, and the subject identifier as the random effect. From reading the documentatoin, I believe this would correspond to the following:
fml = ‘subsamples ~ subID + (subID|groups)’;
I implemented this and then ran the following code to obtain the estimates of random effects and related statistics:
lme = fitlme(tbl,fml);
[B, Bnames, stats] = randomEffects(lme);
The code ran successfully, and now I am trying to determine whether I correctly initialized the formula. The contents of the "stats" struct for comparing one of the disease groups to control are shown below. The group labels are "AD" and "HC". The value ‘subID’ refers to the subject ID.
Questions:
Am I correctly defining the formula (fml) for fitting the LME model? I am also open to using the "fitlmematrix" if that is more straightforward. I also attempted to use "fitlmematrix," but I got even more confused on how to define the respective matrices, so I figured I would not include details in this post.
If the p-value (from the "stats" object) is less than my alpha, does this signify that the random effect (subject) does not significantly affect the response (vascular metrics)?
How do I test whether the fixed effect (group) has a significant affect on the response? Would this require defining a different formula for the fitlme function?I am trying to determine how to define the formula for the "fitlme" function, which will then be passed into the "randomEffects" function. I have read through the documentation for the "fitlme" function and the documentation on the webpage "Prepare Data for Linear Mixed-Effects Models." However, I am still unsure how to proceed.
Background:
Our laboratory performed volumetric optical imaging on 15 brain tissue samples (five samples were from disease A, five were from disease B, and five were from healthy controls). For each tissue sample, we virtually divided the volumetric optical images into uniform cubic sub samples. For each sub-sample, we calculated a single value for a particular vascular metric. This resulted in a vector of continuous values for each tissue sample.
Goal:
Now, I want to compare the vascular metrics between each disease group and the control group (i.e. disease A vs. control and disease B vs. control). My goal is to determine whether the vascular metric changes signficantly between the disease groups and the control group. I contacted a statistician, who recommended using a random effects model. They recommended defining the following:
response = array of values for the vascular metric
fixed effect = group (disease A, disease B, or control)
random effect = subject identifier
I am now trying to determine how to implement this in Matlab via the "fitlme" function.
Using the "fitlme" function:
Defining the table:
I created two separate tables, one for comparing disease A vs. the control group and a second for comparing disease B vs. the control group. The first column of the tables represents the group identifier (disease_A, disease_B, or control). The second column is the subject identifier (1-15). The third column is a concatenated vector of all of the subsamples across all of the subjects in the respective groups.
Defining the formula:
I am unsure how to define the formula that defines the linear mixed effects model. I would like to set the vector of subsamples as the response variable (y), the vector of groups as the fixed effect, and the subject identifier as the random effect. From reading the documentatoin, I believe this would correspond to the following:
fml = ‘subsamples ~ subID + (subID|groups)’;
I implemented this and then ran the following code to obtain the estimates of random effects and related statistics:
lme = fitlme(tbl,fml);
[B, Bnames, stats] = randomEffects(lme);
The code ran successfully, and now I am trying to determine whether I correctly initialized the formula. The contents of the "stats" struct for comparing one of the disease groups to control are shown below. The group labels are "AD" and "HC". The value ‘subID’ refers to the subject ID.
Questions:
Am I correctly defining the formula (fml) for fitting the LME model? I am also open to using the "fitlmematrix" if that is more straightforward. I also attempted to use "fitlmematrix," but I got even more confused on how to define the respective matrices, so I figured I would not include details in this post.
If the p-value (from the "stats" object) is less than my alpha, does this signify that the random effect (subject) does not significantly affect the response (vascular metrics)?
How do I test whether the fixed effect (group) has a significant affect on the response? Would this require defining a different formula for the fitlme function? I am trying to determine how to define the formula for the "fitlme" function, which will then be passed into the "randomEffects" function. I have read through the documentation for the "fitlme" function and the documentation on the webpage "Prepare Data for Linear Mixed-Effects Models." However, I am still unsure how to proceed.
Background:
Our laboratory performed volumetric optical imaging on 15 brain tissue samples (five samples were from disease A, five were from disease B, and five were from healthy controls). For each tissue sample, we virtually divided the volumetric optical images into uniform cubic sub samples. For each sub-sample, we calculated a single value for a particular vascular metric. This resulted in a vector of continuous values for each tissue sample.
Goal:
Now, I want to compare the vascular metrics between each disease group and the control group (i.e. disease A vs. control and disease B vs. control). My goal is to determine whether the vascular metric changes signficantly between the disease groups and the control group. I contacted a statistician, who recommended using a random effects model. They recommended defining the following:
response = array of values for the vascular metric
fixed effect = group (disease A, disease B, or control)
random effect = subject identifier
I am now trying to determine how to implement this in Matlab via the "fitlme" function.
Using the "fitlme" function:
Defining the table:
I created two separate tables, one for comparing disease A vs. the control group and a second for comparing disease B vs. the control group. The first column of the tables represents the group identifier (disease_A, disease_B, or control). The second column is the subject identifier (1-15). The third column is a concatenated vector of all of the subsamples across all of the subjects in the respective groups.
Defining the formula:
I am unsure how to define the formula that defines the linear mixed effects model. I would like to set the vector of subsamples as the response variable (y), the vector of groups as the fixed effect, and the subject identifier as the random effect. From reading the documentatoin, I believe this would correspond to the following:
fml = ‘subsamples ~ subID + (subID|groups)’;
I implemented this and then ran the following code to obtain the estimates of random effects and related statistics:
lme = fitlme(tbl,fml);
[B, Bnames, stats] = randomEffects(lme);
The code ran successfully, and now I am trying to determine whether I correctly initialized the formula. The contents of the "stats" struct for comparing one of the disease groups to control are shown below. The group labels are "AD" and "HC". The value ‘subID’ refers to the subject ID.
Questions:
Am I correctly defining the formula (fml) for fitting the LME model? I am also open to using the "fitlmematrix" if that is more straightforward. I also attempted to use "fitlmematrix," but I got even more confused on how to define the respective matrices, so I figured I would not include details in this post.
If the p-value (from the "stats" object) is less than my alpha, does this signify that the random effect (subject) does not significantly affect the response (vascular metrics)?
How do I test whether the fixed effect (group) has a significant affect on the response? Would this require defining a different formula for the fitlme function? fitlme, fitlmematrix, randomeffects MATLAB Answers — New Questions
Action required to prepare your app for cloud.microsoft
Hey there,
Perhaps this is the wrong forum to ask, but since we’re discussing Teams apps here, I thought I’d ask.
Did anyone get emails from Microsoft regarding the changes to the cloud.microsoft?
The changes involve:
Upgrade to version 2.19 or above of the Teams JS libraryRetain the domains that your app’s CSP headers/ x-frame-options currently refer toUpdate your x-frame-options/CSP headers to allow for add:*.cloud.microsoft
The corresponding blog is here: Action required: ensure your Microsoft Teams apps are ready for upcoming domain changes
We’re reviewing some options currently and its looking like there could be wide-spread affect on existing customers of our Teams apps.
Anyone gone through this?
Do we know the actual timeline were this will be mandated?
Hey there, Perhaps this is the wrong forum to ask, but since we’re discussing Teams apps here, I thought I’d ask. Did anyone get emails from Microsoft regarding the changes to the cloud.microsoft? The changes involve:Upgrade to version 2.19 or above of the Teams JS libraryRetain the domains that your app’s CSP headers/ x-frame-options currently refer toUpdate your x-frame-options/CSP headers to allow for add:*.cloud.microsoftThe corresponding blog is here: Action required: ensure your Microsoft Teams apps are ready for upcoming domain changesWe’re reviewing some options currently and its looking like there could be wide-spread affect on existing customers of our Teams apps. Anyone gone through this? Do we know the actual timeline were this will be mandated? Read More
Company Portal for Mac – Keeps giving the error : There was an issue registering your device.
I enrolled my Mac into Intune by downloading profiles and am using a MacBook Air M3. However, I keep receiving the error: “This Device is not Registered” – “There was an issue registering your device. Try registering it again.” There is a register button; when pressed, it registers and syncs with Intune, displaying an “In Compliance” message on the company portal.
But when I return to the company portal app later, it presents the same error again. I would appreciate any potential solutions to this issue.
I enrolled my Mac into Intune by downloading profiles and am using a MacBook Air M3. However, I keep receiving the error: “This Device is not Registered” – “There was an issue registering your device. Try registering it again.” There is a register button; when pressed, it registers and syncs with Intune, displaying an “In Compliance” message on the company portal. But when I return to the company portal app later, it presents the same error again. I would appreciate any potential solutions to this issue. Read More
Can you forward all OOTO/Vacation from users to one email across on another domain?
HR from the company wants to receive a notification when any user sets auto OOTO/Vacation replies in their outlook settings. Another issue is, these users are on another domain. I administrate both domains and was wondering if it was possible to set push notification for when users set vacation replies to be sent to an email on another domain.
HR from the company wants to receive a notification when any user sets auto OOTO/Vacation replies in their outlook settings. Another issue is, these users are on another domain. I administrate both domains and was wondering if it was possible to set push notification for when users set vacation replies to be sent to an email on another domain. Read More
Language in Azure AI prompt flow
Prompt flow in Azure AI Studio is a development tool designed to streamline the entire development cycle of AI applications powered by Large Language Models (LLMs). Last Ignite, we announced Azure AI Language prompt flow available on GitHub. Today, we are excited to announce that Azure AI Language tooling is now available in prompt flow natively. With that, you can explore, quickly start to use and fine-tune various natural language processing capabilities from Azure AI Language, reducing your time to valueand deploying solutions with reliable evaluation.
The Azure AI Language sample flows in Azure AI prompt flow gallery are good starting point for you. You can simply start by cloning one of the two sample flows:
Analyze Documents: This flow is designed to analyze and extract insights from textual document input, such as identifying named entities, redacting Personal Identifiable Information (PII), analyzing sentiments, summarizing main points and translating to other languages.
Analyze Conversations: This flow is designed for conversational input and particularly useful for contact center analytics or meeting review, such as summarizing customer issues and resolution, analyzing customer sentiment trend during calls, redacting PII, chaptering long meeting into segments making it easy to navigate and find topics of interest.
Then you will see a wizard that guides you to configure tools in your flow, and run, evaluate, and deploy your flow:
Graph view of your flow
Files in your flow
Azure AI Language tools in the “More tools” dropdown menu, which you can add capabilities that you need for your flow. There are more tools that you can add from LLM, Prompt, and Python menu.
Configure output
Configure steps (or tools) in the flow
Run, evaluate, and deploy your flow
What’s Next
We will continue enhancing the underlying capabilities by leveraging state-of-the-art SLMs and LLMs, and enriching prompt flow offerings to further ease your effort in utilizing the best service Azure AI offers.
Learn more about Azure AI Language in the following resources:
Azure AI Language homepage: https://aka.ms/azure-language
Azure AI Language product documentation: https://aka.ms/language-docs
Azure AI Language product demo videos: https://aka.ms/language-videos
Explore Azure AI Language in Azure AI Studio: https://aka.ms/AzureAiLanguage
Prompt flow in Azure AI Studio: https://learn.microsoft.com/en-us/azure/ai-studio/how-to/prompt-flow
PyPl package (includes general documentation): promptflow-azure-ai-language · PyPI
Azure AI Language prompt flow github examples (includes READMEs): promptflow/examples/flows/integrations/azure-ai-language at main · microsoft/promptflow · GitHub
Microsoft Tech Community – Latest Blogs –Read More
Trouble using Loadlibrary with the qhy camera SDK for Windows
I am trying to connect MatLab to control my QHY550P camera. I have installed the SDK for windows, which includes several header files, as well as the SDK library, which I am trying to load.
if ~libisloaded("C:UsersElinaDocumentsMATLABpkg_winx64qhyccd.dll")
loadlibrary(‘C:UsersElinaDocumentsMATLABpkg_winx64qhyccd.dll’, …
"C:UsersElinaDocumentsMATLABpkg_winincludeqhyccd.h",’addheader’, …
"C:UsersElinaDocumentsMATLABpkg_winincludeqhyccderr.h", ‘addheader’, …
"C:UsersElinaDocumentsMATLABpkg_winincludeqhyccdcamdef.h", ‘addheader’, …
"C:UsersElinaDocumentsMATLABpkg_winincludeqhyccdstruct.h", ‘addheader’, …
"C:UsersElinaDocumentsMATLABpkg_winincludeconfig.h", ‘addheader’, …
"C:UsersElinaDownloadsmingw81x86_64-w64-mingw32includestdint.h", ‘addheader’, …
"C:UsersElinaDocumentsMATLABpkg_winincludeCyAPI.h")
end
(pkg_win is the sdk folder which I downloaded)
When I try using loadlibrary with the specified h files, I receive an error message:
Error using loadlibrary
Failed to preprocess the input file.
Output from preprocessor is:C:UsersElinaDocumentsMATLABpkg_winincludeqhyccd.h:7:22: fatal error: functional: No such
file or directory
#include <functional>
^
compilation terminated.
I know that this preprocessing error may have to do with the MinGW compiler, which I have downloaded and configured multiple times, but I still receive this same error message. It also may have to do with not including all the required h files(?).
Any help to resolve this would be appreciated,
Thanks in advanceI am trying to connect MatLab to control my QHY550P camera. I have installed the SDK for windows, which includes several header files, as well as the SDK library, which I am trying to load.
if ~libisloaded("C:UsersElinaDocumentsMATLABpkg_winx64qhyccd.dll")
loadlibrary(‘C:UsersElinaDocumentsMATLABpkg_winx64qhyccd.dll’, …
"C:UsersElinaDocumentsMATLABpkg_winincludeqhyccd.h",’addheader’, …
"C:UsersElinaDocumentsMATLABpkg_winincludeqhyccderr.h", ‘addheader’, …
"C:UsersElinaDocumentsMATLABpkg_winincludeqhyccdcamdef.h", ‘addheader’, …
"C:UsersElinaDocumentsMATLABpkg_winincludeqhyccdstruct.h", ‘addheader’, …
"C:UsersElinaDocumentsMATLABpkg_winincludeconfig.h", ‘addheader’, …
"C:UsersElinaDownloadsmingw81x86_64-w64-mingw32includestdint.h", ‘addheader’, …
"C:UsersElinaDocumentsMATLABpkg_winincludeCyAPI.h")
end
(pkg_win is the sdk folder which I downloaded)
When I try using loadlibrary with the specified h files, I receive an error message:
Error using loadlibrary
Failed to preprocess the input file.
Output from preprocessor is:C:UsersElinaDocumentsMATLABpkg_winincludeqhyccd.h:7:22: fatal error: functional: No such
file or directory
#include <functional>
^
compilation terminated.
I know that this preprocessing error may have to do with the MinGW compiler, which I have downloaded and configured multiple times, but I still receive this same error message. It also may have to do with not including all the required h files(?).
Any help to resolve this would be appreciated,
Thanks in advance I am trying to connect MatLab to control my QHY550P camera. I have installed the SDK for windows, which includes several header files, as well as the SDK library, which I am trying to load.
if ~libisloaded("C:UsersElinaDocumentsMATLABpkg_winx64qhyccd.dll")
loadlibrary(‘C:UsersElinaDocumentsMATLABpkg_winx64qhyccd.dll’, …
"C:UsersElinaDocumentsMATLABpkg_winincludeqhyccd.h",’addheader’, …
"C:UsersElinaDocumentsMATLABpkg_winincludeqhyccderr.h", ‘addheader’, …
"C:UsersElinaDocumentsMATLABpkg_winincludeqhyccdcamdef.h", ‘addheader’, …
"C:UsersElinaDocumentsMATLABpkg_winincludeqhyccdstruct.h", ‘addheader’, …
"C:UsersElinaDocumentsMATLABpkg_winincludeconfig.h", ‘addheader’, …
"C:UsersElinaDownloadsmingw81x86_64-w64-mingw32includestdint.h", ‘addheader’, …
"C:UsersElinaDocumentsMATLABpkg_winincludeCyAPI.h")
end
(pkg_win is the sdk folder which I downloaded)
When I try using loadlibrary with the specified h files, I receive an error message:
Error using loadlibrary
Failed to preprocess the input file.
Output from preprocessor is:C:UsersElinaDocumentsMATLABpkg_winincludeqhyccd.h:7:22: fatal error: functional: No such
file or directory
#include <functional>
^
compilation terminated.
I know that this preprocessing error may have to do with the MinGW compiler, which I have downloaded and configured multiple times, but I still receive this same error message. It also may have to do with not including all the required h files(?).
Any help to resolve this would be appreciated,
Thanks in advance loadlibrary, qhy sdk, h files, mingw compiler, preprocessing error MATLAB Answers — New Questions
Rust Support for generated Matlab Models
Is it already possible or planned and on the roadmap to have Rust as native output of code generated model from Matlab Simulink?
https://www.nsa.gov/Press-Room/News-Highlights/Article/Article/3215760/nsa-releases-guidance-on-how-to-protect-against-software-memory-safety-issues/Is it already possible or planned and on the roadmap to have Rust as native output of code generated model from Matlab Simulink?
https://www.nsa.gov/Press-Room/News-Highlights/Article/Article/3215760/nsa-releases-guidance-on-how-to-protect-against-software-memory-safety-issues/ Is it already possible or planned and on the roadmap to have Rust as native output of code generated model from Matlab Simulink?
https://www.nsa.gov/Press-Room/News-Highlights/Article/Article/3215760/nsa-releases-guidance-on-how-to-protect-against-software-memory-safety-issues/ simulink, rust, memory safety MATLAB Answers — New Questions
Designing an Induction motor from AC-DC-AC, I am not sure what code to enter for the function block. I want to check the speed and torque response with the change of frequency
Designing an AC-DC-AC induction motor so far I have:
AC source – rectifier – Inverter with the function block – Induction motor and – constant block (load). I want to check the speed and torque responce with the change of frequency.
I am not sure what code do I need to enter in the function block so that I can check the speed and toque responce with the change of frequency.
Can anyone assist please?
RegardsDesigning an AC-DC-AC induction motor so far I have:
AC source – rectifier – Inverter with the function block – Induction motor and – constant block (load). I want to check the speed and torque responce with the change of frequency.
I am not sure what code do I need to enter in the function block so that I can check the speed and toque responce with the change of frequency.
Can anyone assist please?
Regards Designing an AC-DC-AC induction motor so far I have:
AC source – rectifier – Inverter with the function block – Induction motor and – constant block (load). I want to check the speed and torque responce with the change of frequency.
I am not sure what code do I need to enter in the function block so that I can check the speed and toque responce with the change of frequency.
Can anyone assist please?
Regards induction motor, matlab, function block, function, inverter, asynchronous motor, dc-ac circuit, pwm controller, pwm generator, ac-dc-ac MATLAB Answers — New Questions
Outlook Live will not open this ENTIRE day
I can access my email account on the app, but cannot access this on safari or chrome – this has been PARALYZING for my work life and has greatly affected my ability to communicate – also there is NO live person to speak to and I have been in literal tears all day, can anyone help me?
I can access my email account on the app, but cannot access this on safari or chrome – this has been PARALYZING for my work life and has greatly affected my ability to communicate – also there is NO live person to speak to and I have been in literal tears all day, can anyone help me? Read More
Profile pictures from sender not showing
Hello,
I have noticed a change in the desktop client for Outlook. Previously, the senders’ initials or profile pictures were displayed next to their email addresses in my inbox, but this is no longer the case. This feature is still present in Outlook Web App (OWA) and the new version of Outlook, but it seems to be missing from the classic version.
I am currently using Windows 11 and have been unable to find any settings to restore the display of senders’ contact pictures. Could you please advise on how to address this issue?
Thank you.
Hello, I have noticed a change in the desktop client for Outlook. Previously, the senders’ initials or profile pictures were displayed next to their email addresses in my inbox, but this is no longer the case. This feature is still present in Outlook Web App (OWA) and the new version of Outlook, but it seems to be missing from the classic version. I am currently using Windows 11 and have been unable to find any settings to restore the display of senders’ contact pictures. Could you please advise on how to address this issue? Thank you. Read More
Performance Issue, Different times of the day
Hi,
We have an azure synapse analytics dedicated sql pool, and something strange is happening with it.
Basically I run a simple SQL Select Statement like the following between business hours (08:00 AM to 18:00 PM) and results return instantly.
SELECT *
FROM Prs.SalesOrderLine
,
When I try running the same query in the evening (22:00 PM) it just hangs and I have to force it to cancel and I get the below error message:
Msg 111202, Level 16, State 1, Line 2
111202;Query QID3399532 has been cancelled.
Query was canceled by user.
Any ideas what could be happening? I am bit disappointed with Azure Synapse Analytics to be honest.
Thanks
Hi,We have an azure synapse analytics dedicated sql pool, and something strange is happening with it.Basically I run a simple SQL Select Statement like the following between business hours (08:00 AM to 18:00 PM) and results return instantly. SELECT *
FROM Prs.SalesOrderLine , When I try running the same query in the evening (22:00 PM) it just hangs and I have to force it to cancel and I get the below error message:Msg 111202, Level 16, State 1, Line 2111202;Query QID3399532 has been cancelled.Query was canceled by user.Any ideas what could be happening? I am bit disappointed with Azure Synapse Analytics to be honest.Thanks Read More
Android Outlook Error
In Intune, I have 3 Compliance Policies for this type of device. Everything works as it should and the device and policies show compliant.
On the device when a user opens Outlook, they Add Account, their email address is displayed and the select Add, then get they following error:
Any idea how to fix this?
In Intune, I have 3 Compliance Policies for this type of device. Everything works as it should and the device and policies show compliant.On the device when a user opens Outlook, they Add Account, their email address is displayed and the select Add, then get they following error:Any idea how to fix this? Read More
Forms within Sharepoint Lists
Hello!
I have started using the Forms button within my Sharepoint lists:
I’m finding this to be very handy but a little buggy.
I have a list and I want to use this Form feature to allow for an attachment, but cannot find the option. Anyone know if this is possible? I also have a list with 35+ columns and not all options are showing up within the form, not sure if there is some limitation i am unaware of?
Currently, I am using the “new item” form button which allows attachments; but I’d like to create multiple forms using List.
(I know I can use MS Forms w PowerAutomate to create a new list item, but the List Form button is easier.)
Thanks in advance!
Hello! I have started using the Forms button within my Sharepoint lists: I’m finding this to be very handy but a little buggy. I have a list and I want to use this Form feature to allow for an attachment, but cannot find the option. Anyone know if this is possible? I also have a list with 35+ columns and not all options are showing up within the form, not sure if there is some limitation i am unaware of? Currently, I am using the “new item” form button which allows attachments; but I’d like to create multiple forms using List. (I know I can use MS Forms w PowerAutomate to create a new list item, but the List Form button is easier.) Thanks in advance! Read More
Different footer when continuous section break is mid-page
I have a document and I want to change the footer at an arbitrary point. However when adding a continuous section break, the footer only changes from the next page onwards. For example:
What I’d like is for the footer in red to be as per “Footer 2”. Is this possible and if so, how?
Thanks.
I have a document and I want to change the footer at an arbitrary point. However when adding a continuous section break, the footer only changes from the next page onwards. For example:What I’d like is for the footer in red to be as per “Footer 2”. Is this possible and if so, how?Thanks. Read More
Congratulations to our Nonprofit 2024 Partner of the Year Award Winner and Finalists
Drumroll, please! We’re thrilled to announce the winner and finalists for the Nonprofit 2024 Microsoft Partner of the Year Awards.
Congratulations to our outstanding partners, their exceptional work is transforming industries and making a lasting impact!
WINNER
We are proud to announce that Valorem Reply has won the Nonprofit 2024 Microsoft Partner of the Year!
FINALISTS
We are excited to share that Exigo Tech, KPMG and Wipfli were recognized as finalists for Nonprofit 2024 Microsoft Partner of the Year!
Read the announcement blog: https://aka.ms/POTYA2024_announcement
Drumroll, please! We’re thrilled to announce the winner and finalists for the Nonprofit 2024 Microsoft Partner of the Year Awards.
Congratulations to our outstanding partners, their exceptional work is transforming industries and making a lasting impact!
WINNER
We are proud to announce that Valorem Reply has won the Nonprofit 2024 Microsoft Partner of the Year!
FINALISTS
We are excited to share that Exigo Tech, KPMG and Wipfli were recognized as finalists for Nonprofit 2024 Microsoft Partner of the Year!
Read the announcement blog: https://aka.ms/POTYA2024_announcement
Read More