Month: July 2024
Error Using Rainflow fonction
Hello everyone,
I’m not really good at Matlab, but I need to use it to process some load cycles result using the rainflow function (please see attachment)
I have written the code as below
clear all,
clc,
[filename,pathname] = uigetfile({‘*.xlsx;*.xlsm’,’Excel Worksheets (*.xlsx,*.xlsm)’},’Select File’);
[file,sheets] = xlsfinfo([pathname,filename]);
num_1 = xlsread(filename);
[num_3, txt]= xlsread(filename);
%read only row and column with number
Data_1 = num_3(4:end,:); % 4:end, –> choose all the row start from 4 % : –> choose all the column % start at row 4 and read all column
X = num_3(4:end,7); % 4,–> Choose only row 4 seread oly row 4 and all column.
Y = num_3(4:end,6);
Z = num_3(4:end,8);
figure(1)
plot3(X,Y,Z);
t = linspace(min(Y),max(Y),length(Z)/10);
d = linspace(min(Y),max(Y),length(Z)/5);
figure(2)
Z = [X Y]
rainflow(Z,t);
and unfortunately have the errors below after the code:
Error using rainflow
Expected X to be a vector.
Error in rainflow>parseInputs (line 184)
validateattributes(x,{‘single’,’double’},…
Error in rainflow (line 81)
[x,t,ext,td] = parseInputs(x,varargin{:});
Error in KW31_BMW_Load_Cycle_Ju (line 39)
rainflow(Z,t)
Can someone please tell me were I´making the mytake by using the Rainflow function?
Thank in advanceHello everyone,
I’m not really good at Matlab, but I need to use it to process some load cycles result using the rainflow function (please see attachment)
I have written the code as below
clear all,
clc,
[filename,pathname] = uigetfile({‘*.xlsx;*.xlsm’,’Excel Worksheets (*.xlsx,*.xlsm)’},’Select File’);
[file,sheets] = xlsfinfo([pathname,filename]);
num_1 = xlsread(filename);
[num_3, txt]= xlsread(filename);
%read only row and column with number
Data_1 = num_3(4:end,:); % 4:end, –> choose all the row start from 4 % : –> choose all the column % start at row 4 and read all column
X = num_3(4:end,7); % 4,–> Choose only row 4 seread oly row 4 and all column.
Y = num_3(4:end,6);
Z = num_3(4:end,8);
figure(1)
plot3(X,Y,Z);
t = linspace(min(Y),max(Y),length(Z)/10);
d = linspace(min(Y),max(Y),length(Z)/5);
figure(2)
Z = [X Y]
rainflow(Z,t);
and unfortunately have the errors below after the code:
Error using rainflow
Expected X to be a vector.
Error in rainflow>parseInputs (line 184)
validateattributes(x,{‘single’,’double’},…
Error in rainflow (line 81)
[x,t,ext,td] = parseInputs(x,varargin{:});
Error in KW31_BMW_Load_Cycle_Ju (line 39)
rainflow(Z,t)
Can someone please tell me were I´making the mytake by using the Rainflow function?
Thank in advance Hello everyone,
I’m not really good at Matlab, but I need to use it to process some load cycles result using the rainflow function (please see attachment)
I have written the code as below
clear all,
clc,
[filename,pathname] = uigetfile({‘*.xlsx;*.xlsm’,’Excel Worksheets (*.xlsx,*.xlsm)’},’Select File’);
[file,sheets] = xlsfinfo([pathname,filename]);
num_1 = xlsread(filename);
[num_3, txt]= xlsread(filename);
%read only row and column with number
Data_1 = num_3(4:end,:); % 4:end, –> choose all the row start from 4 % : –> choose all the column % start at row 4 and read all column
X = num_3(4:end,7); % 4,–> Choose only row 4 seread oly row 4 and all column.
Y = num_3(4:end,6);
Z = num_3(4:end,8);
figure(1)
plot3(X,Y,Z);
t = linspace(min(Y),max(Y),length(Z)/10);
d = linspace(min(Y),max(Y),length(Z)/5);
figure(2)
Z = [X Y]
rainflow(Z,t);
and unfortunately have the errors below after the code:
Error using rainflow
Expected X to be a vector.
Error in rainflow>parseInputs (line 184)
validateattributes(x,{‘single’,’double’},…
Error in rainflow (line 81)
[x,t,ext,td] = parseInputs(x,varargin{:});
Error in KW31_BMW_Load_Cycle_Ju (line 39)
rainflow(Z,t)
Can someone please tell me were I´making the mytake by using the Rainflow function?
Thank in advance hello togheter i´m trying to plot a rainflow MATLAB Answers — New Questions
Resolution of a plotted function
Hello Everyone,
I need to put this function (f) in a matrix to print it as a figure, but how can I put it in the same matrix (4001, 3001) with two resolutions (1um, 2um) and the same wavelength 100um?
May someone please help me in solving this query.
Thanks
f = @(x) 3*sin(x*2*pi/wavelength) + 1003;
% The function for the sine wave with the
% amplitude 3 µm and wave length of about 100 µm.
%Mean level is 1003 µm.Hello Everyone,
I need to put this function (f) in a matrix to print it as a figure, but how can I put it in the same matrix (4001, 3001) with two resolutions (1um, 2um) and the same wavelength 100um?
May someone please help me in solving this query.
Thanks
f = @(x) 3*sin(x*2*pi/wavelength) + 1003;
% The function for the sine wave with the
% amplitude 3 µm and wave length of about 100 µm.
%Mean level is 1003 µm. Hello Everyone,
I need to put this function (f) in a matrix to print it as a figure, but how can I put it in the same matrix (4001, 3001) with two resolutions (1um, 2um) and the same wavelength 100um?
May someone please help me in solving this query.
Thanks
f = @(x) 3*sin(x*2*pi/wavelength) + 1003;
% The function for the sine wave with the
% amplitude 3 µm and wave length of about 100 µm.
%Mean level is 1003 µm. resolution MATLAB Answers — New Questions
How to Get Search Results in ASCII Format on Windows
Typically, the output is shown on the screen when using any version of Windows, such as Windows XP, 7, 10, or 11.
To perform a detailed analysis, I require the data to be in an ASCII format that can be opened in Notepad++.
I can execute the MS-DOS command “dir *.* /s” on a designated partition. However, I have been unable to locate a method to run this command across all disks on the entire PC.
Thank you.
Typically, the output is shown on the screen when using any version of Windows, such as Windows XP, 7, 10, or 11. To perform a detailed analysis, I require the data to be in an ASCII format that can be opened in Notepad++. I can execute the MS-DOS command “dir *.* /s” on a designated partition. However, I have been unable to locate a method to run this command across all disks on the entire PC. Thank you. Read More
Change Username
When accessing user accounts, I go by the name Trevor, but in the C:Users directory, my username appears as trevo. I want to update the latter. This issue has persisted since my last computer. By the way, I never log in.
When accessing user accounts, I go by the name Trevor, but in the C:Users directory, my username appears as trevo. I want to update the latter. This issue has persisted since my last computer. By the way, I never log in. Read More
I had higher expectations for Windows 11.
After upgrading to a new laptop running Windows 11, I was excited about the latest features, but now I’m facing unexpected challenges.
In Windows 10, I easily edited Gcode files for my 3D printer in WordPad, saved them, and transferred them directly to my printer. However, in Windows 11, every time I try to save an edited file, it automatically changes the file type to a text file, causing my 3D printer to fail in recognizing it.
Unlike Windows 10, where I could set Gcode files to open in WordPad, Windows 11 seems unable to find WordPad when using the ‘Open With’ option. Despite manually locating and opening WordPad, the system still struggles to detect the app for file associations.
Even after locating WordPad, pinning it to the start menu, taskbar, and creating a desktop shortcut, Windows 11 seems incapable of displaying it in the start menu or recognizing it when using the ‘Open With’ function, resulting in Gcode files being saved in an undesirable format.
If Windows 11 is intended to be an improvement, I would appreciate expert assistance in resolving these issues and restoring my confidence in the operating system.
After upgrading to a new laptop running Windows 11, I was excited about the latest features, but now I’m facing unexpected challenges. In Windows 10, I easily edited Gcode files for my 3D printer in WordPad, saved them, and transferred them directly to my printer. However, in Windows 11, every time I try to save an edited file, it automatically changes the file type to a text file, causing my 3D printer to fail in recognizing it. Unlike Windows 10, where I could set Gcode files to open in WordPad, Windows 11 seems unable to find WordPad when using the ‘Open With’ option. Despite manually locating and opening WordPad, the system still struggles to detect the app for file associations. Even after locating WordPad, pinning it to the start menu, taskbar, and creating a desktop shortcut, Windows 11 seems incapable of displaying it in the start menu or recognizing it when using the ‘Open With’ function, resulting in Gcode files being saved in an undesirable format. If Windows 11 is intended to be an improvement, I would appreciate expert assistance in resolving these issues and restoring my confidence in the operating system. Read More
Microsoft Intune – Password Expiry/Reset
Folks – We’ve unique scenario where end users are skipping the password reset after the default expiry for example 90 days. How can we enforce users to change within 90 days or change on the expiry day itself without skipping?
Is there any way to ensure that no user shall use the system without resetting the password with the maximum age of 90 or 91 days at the most?
Best
CBS
Folks – We’ve unique scenario where end users are skipping the password reset after the default expiry for example 90 days. How can we enforce users to change within 90 days or change on the expiry day itself without skipping?Is there any way to ensure that no user shall use the system without resetting the password with the maximum age of 90 or 91 days at the most? Best CBS Read More
Recommend me a best real time AI voice changer for PC Windows 11/10?
Hello, all. I’m looking for a real-time AI voice changer for PC Windows recently, hoping to use it in teaching videos to bring some freshness and fun to students. I need this software to be able to convert voices in real time, support a variety of different sound effects, be easy to operate, and have good stability. If you have any good recommendations, or have used it before and think it’s good, please recommend it. Thank you everyone!
Hello, all. I’m looking for a real-time AI voice changer for PC Windows recently, hoping to use it in teaching videos to bring some freshness and fun to students. I need this software to be able to convert voices in real time, support a variety of different sound effects, be easy to operate, and have good stability. If you have any good recommendations, or have used it before and think it’s good, please recommend it. Thank you everyone! Read More
Desktop Has Stopped Working Issue: What steps can I take to fix it?
I keep encountering a Desktop has stopped working error on my computer. This issue disrupts my workflow, and I’m unsure how to resolve it. Can you provide troubleshooting solutions to fix this problem?
I keep encountering a Desktop has stopped working error on my computer. This issue disrupts my workflow, and I’m unsure how to resolve it. Can you provide troubleshooting solutions to fix this problem? Read More
Calcul d’un délai entre deux dates sur LITS, comment enlever une valeur négative qui apparait ?
Bonjour,
Lorsque je calcule le délai entre deux dates sur LISTS et qu’il manque une donnée, cela me donne une valeur négative dans les -45490.
Je pense qu’il faut développer une formule sur JSON
J’aimerai mettre rien du tout quand il manque une donnée
Merci de votre aide
Bonjour, Lorsque je calcule le délai entre deux dates sur LISTS et qu’il manque une donnée, cela me donne une valeur négative dans les -45490. Je pense qu’il faut développer une formule sur JSON J’aimerai mettre rien du tout quand il manque une donnée Merci de votre aide Read More
Enable Copilot in Word, Excel and Power Point
I have a Microsoft account for work with an Office E3 license. I want to activate copilot in Word, Excel and Power Point but I can’t. I have followed the following link How to find and enable missing Copilot button in Microsoft 365 apps – Microsoft Support but it still doesn’t work. Does anyone know how to solve this problem?
I have a Microsoft account for work with an Office E3 license. I want to activate copilot in Word, Excel and Power Point but I can’t. I have followed the following link How to find and enable missing Copilot button in Microsoft 365 apps – Microsoft Support but it still doesn’t work. Does anyone know how to solve this problem? Read More
How to Plot a Fourier Series?
Hi,
I was given a half range expansion function f(x) = 0, 0<x<2 and f(x) = 1, <2<x<4.
I was asked to solve for the Fourier cosine series and Fourier sine series and then plot each.
I solved by hand:
Fourier Cosine Series:
a0 = 1/2
an = -2/(n*pi)*sin((n*pi)/2)
f(x) = 1/2 + sum(an*cos((n*pi*x)/4)) from n =1 to infinity
Fourier Sine Series:
bn = [2/(n*pi)]*[(-1)^(n+1) + cos((n*pi)/2)]
f(x) = sum(bn*sin((n*pi*x)/4))
I’m fairly new to Matlab and very unexperienced, where I’m having dificulty is plotting these functions against x, say x = [-24 24] and n=1:1:50 or until square waves appear. I gained some experience plotting their partial sums using fplot, but that approach does not appear to work here. It isn’t feasible to plot the 50th partial sum. I’ve seen more arrayfun usage online, but I do not understand it whatsoever.
Any help and explanation would be greatly appreciated. Thanks in advance.Hi,
I was given a half range expansion function f(x) = 0, 0<x<2 and f(x) = 1, <2<x<4.
I was asked to solve for the Fourier cosine series and Fourier sine series and then plot each.
I solved by hand:
Fourier Cosine Series:
a0 = 1/2
an = -2/(n*pi)*sin((n*pi)/2)
f(x) = 1/2 + sum(an*cos((n*pi*x)/4)) from n =1 to infinity
Fourier Sine Series:
bn = [2/(n*pi)]*[(-1)^(n+1) + cos((n*pi)/2)]
f(x) = sum(bn*sin((n*pi*x)/4))
I’m fairly new to Matlab and very unexperienced, where I’m having dificulty is plotting these functions against x, say x = [-24 24] and n=1:1:50 or until square waves appear. I gained some experience plotting their partial sums using fplot, but that approach does not appear to work here. It isn’t feasible to plot the 50th partial sum. I’ve seen more arrayfun usage online, but I do not understand it whatsoever.
Any help and explanation would be greatly appreciated. Thanks in advance. Hi,
I was given a half range expansion function f(x) = 0, 0<x<2 and f(x) = 1, <2<x<4.
I was asked to solve for the Fourier cosine series and Fourier sine series and then plot each.
I solved by hand:
Fourier Cosine Series:
a0 = 1/2
an = -2/(n*pi)*sin((n*pi)/2)
f(x) = 1/2 + sum(an*cos((n*pi*x)/4)) from n =1 to infinity
Fourier Sine Series:
bn = [2/(n*pi)]*[(-1)^(n+1) + cos((n*pi)/2)]
f(x) = sum(bn*sin((n*pi*x)/4))
I’m fairly new to Matlab and very unexperienced, where I’m having dificulty is plotting these functions against x, say x = [-24 24] and n=1:1:50 or until square waves appear. I gained some experience plotting their partial sums using fplot, but that approach does not appear to work here. It isn’t feasible to plot the 50th partial sum. I’ve seen more arrayfun usage online, but I do not understand it whatsoever.
Any help and explanation would be greatly appreciated. Thanks in advance. arrays, function, time series MATLAB Answers — New Questions
Error accessing camera connected to NVIDIA Jetson AGX ORIN 64 Gb development kit
I am trying to access camera connected to Nvidia Jeston AGX orin. The camera model is: See3CAM_CU135M_H03R1 (econsystem usb 3). The camera is working properly in Nvidia Jeston. But when i am trying to use it on matlab i am having the following output and error:
Checking for CUDA availability on the Target…
Checking for ‘nvcc’ in the target system path…
Checking for cuDNN library availability on the Target…
Checking for TensorRT library availability on the Target…
Checking for prerequisite libraries is complete.
Gathering hardware details…
Checking for third-party library availability on the Target…
Gathering hardware details is complete.
Board name : NVIDIA Jetson AGX Orin Developer Kit
CUDA Version : 12.2
cuDNN Version : 8.9
TensorRT Version : 8.6
GStreamer Version : 1.20.3
V4L2 Version : 1.22.1-2build1
SDL Version : 1.2
OpenCV Version : 4.8.0
Available Webcams : See3CAM_CU135M_H03R1
Available GPUs : Orin
Available Digital Pins : 7 11 12 13 15 16 18 19 21 22 23 24 26 29 31 32 33 35 36 37 38 40
Available Webcams:
1: See3CAM_CU135M_H03R1
Details of Webcam 1: See3CAM_CU135M_H03R1
Error initializing camera See3CAM_CU135M_H03R1: Gstreamer pipeline error. Make sure that the camera is not opened.
The code which i used is given below:
clear all
close all
clc
% Connect to the Jetson
hwJetson = jetson(‘10.134.169.67’, ‘JetsonCam’, ‘ws132’);
% List the available webcams
webcams = hwJetson.WebcamList;
% Display the list of webcams
disp(‘Available Webcams:’);
for i = 1:length(webcams)
fprintf(‘%d: %sn’, i, webcams{i});
end
% Get detailed information about each webcam
for i = 1:length(webcams)
camName = webcams{i};
fprintf(‘nDetails of Webcam %d: %sn’, i, camName);
% Try to initialize the camera with a specific resolution and frame rate
try
% Initialize the camera with the default resolution and frame rate
cam = camera(hwJetson, camName, [1280 720]); % Example resolution and frame rate
% Display video modes supported by the camera
videoModes = cam.AvailableResolutions;
% Print available resolutions
fprintf(‘Available Resolutions:n’);
for j = 1:length(videoModes)
fprintf(‘Resolution %d: %sn’, j, videoModes{j});
end
% Clean up
clear cam;
catch ME
% Display an error message if the camera initialization fails
fprintf(‘Error initializing camera %s: %sn’, camName, ME.message);
end
endI am trying to access camera connected to Nvidia Jeston AGX orin. The camera model is: See3CAM_CU135M_H03R1 (econsystem usb 3). The camera is working properly in Nvidia Jeston. But when i am trying to use it on matlab i am having the following output and error:
Checking for CUDA availability on the Target…
Checking for ‘nvcc’ in the target system path…
Checking for cuDNN library availability on the Target…
Checking for TensorRT library availability on the Target…
Checking for prerequisite libraries is complete.
Gathering hardware details…
Checking for third-party library availability on the Target…
Gathering hardware details is complete.
Board name : NVIDIA Jetson AGX Orin Developer Kit
CUDA Version : 12.2
cuDNN Version : 8.9
TensorRT Version : 8.6
GStreamer Version : 1.20.3
V4L2 Version : 1.22.1-2build1
SDL Version : 1.2
OpenCV Version : 4.8.0
Available Webcams : See3CAM_CU135M_H03R1
Available GPUs : Orin
Available Digital Pins : 7 11 12 13 15 16 18 19 21 22 23 24 26 29 31 32 33 35 36 37 38 40
Available Webcams:
1: See3CAM_CU135M_H03R1
Details of Webcam 1: See3CAM_CU135M_H03R1
Error initializing camera See3CAM_CU135M_H03R1: Gstreamer pipeline error. Make sure that the camera is not opened.
The code which i used is given below:
clear all
close all
clc
% Connect to the Jetson
hwJetson = jetson(‘10.134.169.67’, ‘JetsonCam’, ‘ws132’);
% List the available webcams
webcams = hwJetson.WebcamList;
% Display the list of webcams
disp(‘Available Webcams:’);
for i = 1:length(webcams)
fprintf(‘%d: %sn’, i, webcams{i});
end
% Get detailed information about each webcam
for i = 1:length(webcams)
camName = webcams{i};
fprintf(‘nDetails of Webcam %d: %sn’, i, camName);
% Try to initialize the camera with a specific resolution and frame rate
try
% Initialize the camera with the default resolution and frame rate
cam = camera(hwJetson, camName, [1280 720]); % Example resolution and frame rate
% Display video modes supported by the camera
videoModes = cam.AvailableResolutions;
% Print available resolutions
fprintf(‘Available Resolutions:n’);
for j = 1:length(videoModes)
fprintf(‘Resolution %d: %sn’, j, videoModes{j});
end
% Clean up
clear cam;
catch ME
% Display an error message if the camera initialization fails
fprintf(‘Error initializing camera %s: %sn’, camName, ME.message);
end
end I am trying to access camera connected to Nvidia Jeston AGX orin. The camera model is: See3CAM_CU135M_H03R1 (econsystem usb 3). The camera is working properly in Nvidia Jeston. But when i am trying to use it on matlab i am having the following output and error:
Checking for CUDA availability on the Target…
Checking for ‘nvcc’ in the target system path…
Checking for cuDNN library availability on the Target…
Checking for TensorRT library availability on the Target…
Checking for prerequisite libraries is complete.
Gathering hardware details…
Checking for third-party library availability on the Target…
Gathering hardware details is complete.
Board name : NVIDIA Jetson AGX Orin Developer Kit
CUDA Version : 12.2
cuDNN Version : 8.9
TensorRT Version : 8.6
GStreamer Version : 1.20.3
V4L2 Version : 1.22.1-2build1
SDL Version : 1.2
OpenCV Version : 4.8.0
Available Webcams : See3CAM_CU135M_H03R1
Available GPUs : Orin
Available Digital Pins : 7 11 12 13 15 16 18 19 21 22 23 24 26 29 31 32 33 35 36 37 38 40
Available Webcams:
1: See3CAM_CU135M_H03R1
Details of Webcam 1: See3CAM_CU135M_H03R1
Error initializing camera See3CAM_CU135M_H03R1: Gstreamer pipeline error. Make sure that the camera is not opened.
The code which i used is given below:
clear all
close all
clc
% Connect to the Jetson
hwJetson = jetson(‘10.134.169.67’, ‘JetsonCam’, ‘ws132’);
% List the available webcams
webcams = hwJetson.WebcamList;
% Display the list of webcams
disp(‘Available Webcams:’);
for i = 1:length(webcams)
fprintf(‘%d: %sn’, i, webcams{i});
end
% Get detailed information about each webcam
for i = 1:length(webcams)
camName = webcams{i};
fprintf(‘nDetails of Webcam %d: %sn’, i, camName);
% Try to initialize the camera with a specific resolution and frame rate
try
% Initialize the camera with the default resolution and frame rate
cam = camera(hwJetson, camName, [1280 720]); % Example resolution and frame rate
% Display video modes supported by the camera
videoModes = cam.AvailableResolutions;
% Print available resolutions
fprintf(‘Available Resolutions:n’);
for j = 1:length(videoModes)
fprintf(‘Resolution %d: %sn’, j, videoModes{j});
end
% Clean up
clear cam;
catch ME
% Display an error message if the camera initialization fails
fprintf(‘Error initializing camera %s: %sn’, camName, ME.message);
end
end nvidia jetson, camera, image aquisition MATLAB Answers — New Questions
Unrecognized function or variable ‘mexUnwrap’.
I get this error: “Unrecognized function or variable ‘mexUnwrap’” when I run my code. However, the folder containing this C++ file (mexUnwrap.c) is in my path. It also contains mexUnwrap.mexa64, mexUnwrap.mexmaci64, mexUnwrap.mexw64. Do you have any suggestions for solving this problem?I get this error: “Unrecognized function or variable ‘mexUnwrap’” when I run my code. However, the folder containing this C++ file (mexUnwrap.c) is in my path. It also contains mexUnwrap.mexa64, mexUnwrap.mexmaci64, mexUnwrap.mexw64. Do you have any suggestions for solving this problem? I get this error: “Unrecognized function or variable ‘mexUnwrap’” when I run my code. However, the folder containing this C++ file (mexUnwrap.c) is in my path. It also contains mexUnwrap.mexa64, mexUnwrap.mexmaci64, mexUnwrap.mexw64. Do you have any suggestions for solving this problem? error, unrecognized c++ function MATLAB Answers — New Questions
Incorrect Detected as Malware
Dear team,
Our apps have been detected incorrectly as malware and we’ve submitted for screening somehow still flagged as malware.
We tried to appeal and looking for someone to help us how can we remove this flag from defender.
Dear team, Our apps have been detected incorrectly as malware and we’ve submitted for screening somehow still flagged as malware. We tried to appeal and looking for someone to help us how can we remove this flag from defender. Read More
How Do I Fix Cannot Open Company File In Desktop? [Urgent Help Required]
I’m unable to open our company file. I’ve checked the file path, permissions, and restarted the system, but the issue persists. Could you please help me fix this error or guide me on restoring the file from backup?
I’m unable to open our company file. I’ve checked the file path, permissions, and restarted the system, but the issue persists. Could you please help me fix this error or guide me on restoring the file from backup? Read More
What Causes the Unrecoverable Error in Desktop Enterprise Software?
I’m encountering an unrecoverable error while using my desktop enterprise software. What are the common causes of this error, and how can I fix it? Any tips or troubleshooting steps would be greatly appreciated!
I’m encountering an unrecoverable error while using my desktop enterprise software. What are the common causes of this error, and how can I fix it? Any tips or troubleshooting steps would be greatly appreciated! Read More
What to Do If Enterprise Pay-roll Update Not Working?
I’m facing an issue where the enterprise pay-roll update is not working. Can anyone provide guidance on how to troubleshoot and resolve this problem? Any tips or solutions would be greatly appreciated!
I’m facing an issue where the enterprise pay-roll update is not working. Can anyone provide guidance on how to troubleshoot and resolve this problem? Any tips or solutions would be greatly appreciated! Read More
The best way to convert heic to pdf on Windows 11 for free?
All of photos taken on my iPhone are saved in .heic image format. When I copied them to my Windows 11 PC, they are not available for open with the Photos app. I need to convert many of them to PDF format so I can share with others.
I’ve noticed that HEIC isn’t as widely supported as other image formats, so I’m hoping to find a reliable for converting HEIC to PDF on Windows PC that can handle these conversions smoothly without compromising on image quality.
If you know of any software or online services that work well for converting HEIC to PDF on Windows 11, I’d love to hear your recommendations. It would be great if the tool offers options to customize the layout of the images within the PDF, such as arranging multiple images per page or adjusting the margins and orientation.
Thanks
All of photos taken on my iPhone are saved in .heic image format. When I copied them to my Windows 11 PC, they are not available for open with the Photos app. I need to convert many of them to PDF format so I can share with others. I’ve noticed that HEIC isn’t as widely supported as other image formats, so I’m hoping to find a reliable for converting HEIC to PDF on Windows PC that can handle these conversions smoothly without compromising on image quality. If you know of any software or online services that work well for converting HEIC to PDF on Windows 11, I’d love to hear your recommendations. It would be great if the tool offers options to customize the layout of the images within the PDF, such as arranging multiple images per page or adjusting the margins and orientation. Thanks Read More
Not working DFCI
Hello, Guys
I am using the DFCI function in the Intune.
In some devices, the log is printed as below and DFCI works properly.
However, in other devices, the log is printed as below and DFCI does not work at all.
When it says “License check result: URI: ./Vendor/MSFT/Uefi/DeviceIdentifier, IsAllowed: false”, what should be checked?
Please give me some advice on this issue.
0. Log file Name
DiagnosticLogCSP_Collector_DeviceEnrollment_2024_7_29_14_48_2.etl
1. Log of successful devices
Microsoft-WindowsPhone-ConfigManager2 5056 6812 2024/06/19-11:03:21.059 0 License check result: URI: ./Vendor/MSFT/Uefi/DeviceIdentifier, IsAllowed: true, returns: (0)
Microsoft-WindowsPhone-ConfigManager2 5056 6812 2024/06/19-11:03:21.059 0 CSP access: URI: (./Vendor/MSFT/Uefi/DeviceIdentifier), IsAllowed: true, Result: (0)
2. Failed device Logs
Microsoft-WindowsPhone-ConfigManager2 2452 3288 2024/07/26-14:07:55.377 0 License check result: URI: ./Vendor/MSFT/Uefi/DeviceIdentifier, IsAllowed: false, returns: (0)
Microsoft-WindowsPhone-ConfigManager2 2452 3288 2024/07/26-14:07:55.377 0 CSP access: URI: (./Vendor/MSFT/Uefi/DeviceIdentifier), IsAllowed: false, Result: (86000025)
Thanks a lot.
Hello, Guys I am using the DFCI function in the Intune. In some devices, the log is printed as below and DFCI works properly.However, in other devices, the log is printed as below and DFCI does not work at all. When it says “License check result: URI: ./Vendor/MSFT/Uefi/DeviceIdentifier, IsAllowed: false”, what should be checked?Please give me some advice on this issue.0. Log file NameDiagnosticLogCSP_Collector_DeviceEnrollment_2024_7_29_14_48_2.etl 1. Log of successful devicesMicrosoft-WindowsPhone-ConfigManager2 5056 6812 2024/06/19-11:03:21.059 0 License check result: URI: ./Vendor/MSFT/Uefi/DeviceIdentifier, IsAllowed: true, returns: (0)Microsoft-WindowsPhone-ConfigManager2 5056 6812 2024/06/19-11:03:21.059 0 CSP access: URI: (./Vendor/MSFT/Uefi/DeviceIdentifier), IsAllowed: true, Result: (0) 2. Failed device LogsMicrosoft-WindowsPhone-ConfigManager2 2452 3288 2024/07/26-14:07:55.377 0 License check result: URI: ./Vendor/MSFT/Uefi/DeviceIdentifier, IsAllowed: false, returns: (0)Microsoft-WindowsPhone-ConfigManager2 2452 3288 2024/07/26-14:07:55.377 0 CSP access: URI: (./Vendor/MSFT/Uefi/DeviceIdentifier), IsAllowed: false, Result: (86000025) Thanks a lot. Read More
Problems synching Sharepoint Libraries
Hello,
We are currently experiencing issues with synchronizing our SharePoint libraries. The synchronization continues to work without problems on all PCs that have been connected for a longer time. However, when we try to synchronize SharePoint libraries on new devices, problems occur. The library syncs, and OneDrive works until the system is restarted. After every restart, OneDrive starts to resynchronize the entire library. Since there are many files, this takes a while and significantly hinders our work. Does anyone have any idea what could be causing this? The OneDrive versions on both the already synchronized devices and the new devices are the same.
Best regards
Hello,We are currently experiencing issues with synchronizing our SharePoint libraries. The synchronization continues to work without problems on all PCs that have been connected for a longer time. However, when we try to synchronize SharePoint libraries on new devices, problems occur. The library syncs, and OneDrive works until the system is restarted. After every restart, OneDrive starts to resynchronize the entire library. Since there are many files, this takes a while and significantly hinders our work. Does anyone have any idea what could be causing this? The OneDrive versions on both the already synchronized devices and the new devices are the same.Best regards Read More