Month: July 2024
Issues with Indexing and Traffic Data for My Site on Bing
I manage a website focused on Taco Bell menu prices and recently added it to Bing Webmaster Tools. While I initially saw accurate clicks and impressions data, I’m now facing two main issues:
Indexing Problems: New pages about recent menu changes aren’t being indexed despite submission.Traffic Discrepancies: There’s a mismatch between Bing’s traffic data and Google Analytics.
I’ve verified the site and checked the robots.txt file. Any advice on resolving these issues would be greatly appreciated!
I manage a website focused on Taco Bell menu prices and recently added it to Bing Webmaster Tools. While I initially saw accurate clicks and impressions data, I’m now facing two main issues:Indexing Problems: New pages about recent menu changes aren’t being indexed despite submission.Traffic Discrepancies: There’s a mismatch between Bing’s traffic data and Google Analytics.I’ve verified the site and checked the robots.txt file. Any advice on resolving these issues would be greatly appreciated! Read More
Conditional formatting to change the colour of entire row
Hi!
I have a column(C2) which specifies if I have purchased or sold the particular a share. Is it possible for me to add conditional formatting in the spreadsheet such that if the cell has value “buy” it will colour code the entire row GREEN and if the cell has value “sell” it will colour code the entire row RED?
Hi!I have a column(C2) which specifies if I have purchased or sold the particular a share. Is it possible for me to add conditional formatting in the spreadsheet such that if the cell has value “buy” it will colour code the entire row GREEN and if the cell has value “sell” it will colour code the entire row RED? Read More
Error compiling Simscape network for solar panel/PV Pannel
This is the error I get and I use Matlab 2018a .
Error compiling Simscape network for model main1.
Caused by:
[‘main1/solar panel/PV Pannel/Solar Cella’]: Failed to compute value for parameter, x.
No matching signature found for exp. exp takes one dimensionless argument.
Argument 1 = {6324.4554, ‘K*V/J’}
Voc = {21.8000, ‘V’}
vtm1 = {0.0034, ‘J/K’}
In elec.sources.solar_cell ()
In elec.sources.solar_cell ()This is the error I get and I use Matlab 2018a .
Error compiling Simscape network for model main1.
Caused by:
[‘main1/solar panel/PV Pannel/Solar Cella’]: Failed to compute value for parameter, x.
No matching signature found for exp. exp takes one dimensionless argument.
Argument 1 = {6324.4554, ‘K*V/J’}
Voc = {21.8000, ‘V’}
vtm1 = {0.0034, ‘J/K’}
In elec.sources.solar_cell ()
In elec.sources.solar_cell () This is the error I get and I use Matlab 2018a .
Error compiling Simscape network for model main1.
Caused by:
[‘main1/solar panel/PV Pannel/Solar Cella’]: Failed to compute value for parameter, x.
No matching signature found for exp. exp takes one dimensionless argument.
Argument 1 = {6324.4554, ‘K*V/J’}
Voc = {21.8000, ‘V’}
vtm1 = {0.0034, ‘J/K’}
In elec.sources.solar_cell ()
In elec.sources.solar_cell () simscape pv pannel MATLAB Answers — New Questions
Always Error is seen
It always tells me that Z is not matrixIt always tells me that Z is not matrix It always tells me that Z is not matrix matrix, surf MATLAB Answers — New Questions
i cant save my training data
i used matlabs AE for OFDM system but cant save the training datai used matlabs AE for OFDM system but cant save the training data i used matlabs AE for OFDM system but cant save the training data deep learning MATLAB Answers — New Questions
Troubleshooting FSLogix Profile Container Issues: Open File Handles on Azure File Share
FSLogix Profile Containers are widely used to manage user profiles in virtual desktop environments. However, issues can arise when open file handles on Azure file shares cause problems with profile containers. This article explores common issues related to open file handles and provides solutions to resolve them.
Understanding Open File Handles
Open file handles occur when a file is being accessed by a process and is not properly closed. In the context of FSLogix Profile Containers, this can happen if a user session is abruptly disconnected or does not sign out correctly. These open handles can prevent other sessions from accessing the profile container, leading to various issues.
Common Issues Caused by Open File Handles:
Profile Load Failures: Users may experience failures when loading their profiles due to locked files.
Slow Performance: Open file handles can cause slow performance as the system struggles to manage locked resources.
Data Corruption: In some cases, data corruption can occur if files are not properly closed.
Identifying Open File Handles:
To identify open file handles, you can use tools like qwinsta from Windows Terminal or Command Prompt, Task Manager, or Computer Management.
1. Using Qwinsta:
Open Windows Terminal or Command Prompt.
Run the command “qwinsta” to list all active sessions.
Identify sessions that have not signed out correctly.
2. Using Task Manager:
Open Task Manager and go to the Users tab.
Check for any active sessions that should be closed.
3. Using Computer Management:
Open Computer Management (compmgmt.msc).
Navigate to Shared Folders > Open Files.
Look for open files related to the user’s profile container and close them.
Fixing Open File Handle Issues:
Once you have identified open file handles, follow these steps to resolve the issues:
1. Log Out Users:
Ensure that users have successfully signed out from all sessions using their profile container.
2. Close Open Files:
In Computer Management, right-click on the open file and select “Close Open File.”
3. Restart Services:
Restart any relevant services that may be holding onto open file handles.
If everything goes well, the lock should be lifted, if not we can force it with CloudShell:
Open Azure Cloudshell from the portal and select the Sub ID
Select-AzSubscription -subscriptionid <Sub ID>
#Create azure storage account context
$Context = New-AzStorageContext -StorageAccountName <replacewithstorageaccountname> -StorageAccountKey <replace with storage key>
#List handles
Get-AzStorageFileHandle -ShareName “your-share-name” -Recursive -Context $Context
Get-AzStorageFileHandle -Context $Context -ShareName “your-share-name” -Recursive | Sort-Object ClientIP,OpenTime
#Close a specific handle, use the Close-AzStorageFileHandle cmdlet with the handle ID:
Close-AzStorageFileHandle -ShareName “your-share-name” -HandleId “your-handle-id”
#Close all handles
Close-AzStorageFileHandle -ShareName “your-share-name” -CloseAll -Context $Context -Recursive -Verbose
#Additionally, you can close all the file handles of the particular folder in the share:
Close-AzStorageFileHandle -Context $Context -ShareName <replacewithsharename> -Path <‘Sharedfolder/SIDuserfolder’> -Recursive -CloseAll
Preventive Measures:
To minimize the occurrence of open file handles, consider the following best practices:
Proper Session Management:
Ensure users properly sign out of their sessions to avoid leaving open file handles.
Regular Monitoring:
Regularly monitor open file handles and take proactive steps to close them.
Regular Session Host Reboot:
Regularly reboot session Host servers to reduce the possibility of open handles.
Open file handles on Azure file shares can cause significant issues with FSLogix Profile Containers. By understanding the causes, identifying open handles, and implementing effective solutions, you can ensure a smoother and more reliable virtual desktop environment.
Resources:
Issues with SMB file share open handles – FSLogix | Microsoft Learn
Troubleshoot Azure Files SMB connectivity and access issues – Azure | Microsoft Learn
Get-AzStorageFileHandle (Az.Storage) | Microsoft Learn
FSLogix Profile Containers are widely used to manage user profiles in virtual desktop environments. However, issues can arise when open file handles on Azure file shares cause problems with profile containers. This article explores common issues related to open file handles and provides solutions to resolve them.
Understanding Open File Handles
Open file handles occur when a file is being accessed by a process and is not properly closed. In the context of FSLogix Profile Containers, this can happen if a user session is abruptly disconnected or does not sign out correctly. These open handles can prevent other sessions from accessing the profile container, leading to various issues.
Common Issues Caused by Open File Handles:
Profile Load Failures: Users may experience failures when loading their profiles due to locked files.
Slow Performance: Open file handles can cause slow performance as the system struggles to manage locked resources.
Data Corruption: In some cases, data corruption can occur if files are not properly closed.
Identifying Open File Handles:
To identify open file handles, you can use tools like qwinsta from Windows Terminal or Command Prompt, Task Manager, or Computer Management.
1. Using Qwinsta:
Open Windows Terminal or Command Prompt.
Run the command “qwinsta” to list all active sessions.
Identify sessions that have not signed out correctly.
2. Using Task Manager:
Open Task Manager and go to the Users tab.
Check for any active sessions that should be closed.
3. Using Computer Management:
Open Computer Management (compmgmt.msc).
Navigate to Shared Folders > Open Files.
Look for open files related to the user’s profile container and close them.
Fixing Open File Handle Issues:
Once you have identified open file handles, follow these steps to resolve the issues:
1. Log Out Users:
Ensure that users have successfully signed out from all sessions using their profile container.
2. Close Open Files:
In Computer Management, right-click on the open file and select “Close Open File.”
3. Restart Services:
Restart any relevant services that may be holding onto open file handles.
If everything goes well, the lock should be lifted, if not we can force it with CloudShell:
Open Azure Cloudshell from the portal and select the Sub ID
Select-AzSubscription -subscriptionid <Sub ID>
#Create azure storage account context
$Context = New-AzStorageContext -StorageAccountName <replacewithstorageaccountname> -StorageAccountKey <replace with storage key>
#List handles
Get-AzStorageFileHandle -ShareName “your-share-name” -Recursive -Context $Context
Get-AzStorageFileHandle -Context $Context -ShareName “your-share-name” -Recursive | Sort-Object ClientIP,OpenTime
#Close a specific handle, use the Close-AzStorageFileHandle cmdlet with the handle ID:Close-AzStorageFileHandle -ShareName “your-share-name” -HandleId “your-handle-id”
#Close all handles
Close-AzStorageFileHandle -ShareName “your-share-name” -CloseAll -Context $Context -Recursive -Verbose
#Additionally, you can close all the file handles of the particular folder in the share:
Close-AzStorageFileHandle -Context $Context -ShareName <replacewithsharename> -Path <‘Sharedfolder/SIDuserfolder’> -Recursive -CloseAll
Preventive Measures:
To minimize the occurrence of open file handles, consider the following best practices:
Proper Session Management:
Ensure users properly sign out of their sessions to avoid leaving open file handles.
Regular Monitoring:
Regularly monitor open file handles and take proactive steps to close them.
Regular Session Host Reboot:
Regularly reboot session Host servers to reduce the possibility of open handles.
Open file handles on Azure file shares can cause significant issues with FSLogix Profile Containers. By understanding the causes, identifying open handles, and implementing effective solutions, you can ensure a smoother and more reliable virtual desktop environment.
Resources:
Issues with SMB file share open handles – FSLogix | Microsoft Learn
Troubleshoot Azure Files SMB connectivity and access issues – Azure | Microsoft Learn
Get-AzStorageFileHandle (Az.Storage) | Microsoft Learn
Read More
Vertically Concatenate Data in a Cell array
Hello there I have data from 10 trials stored in a cell array shown here in "Predictors" and I was wondering how I could vertically concatonate it into one large matrix? Thank you so much in advance!Hello there I have data from 10 trials stored in a cell array shown here in "Predictors" and I was wondering how I could vertically concatonate it into one large matrix? Thank you so much in advance! Hello there I have data from 10 trials stored in a cell array shown here in "Predictors" and I was wondering how I could vertically concatonate it into one large matrix? Thank you so much in advance! input, data formatting, matrix, cell arrays MATLAB Answers — New Questions
Dual problem and primal problem unbounded linear programming
Hello,
I need some help please to solve this problem I have . I have solved a max. problem , the primal problem , by using linprog.
After this , I have done the dual problem of the primal. After this proccess, I don’t get the result that I should get , because the values of F0 should be the same in both cases(if I am not wrong).
I am sending the illustrated problem and code below. I hope someone can give me a help.
thank you !
Max 300𝑥1 + 400𝑥2
𝑥1 + 𝑥2 ≤ 320
4𝑥1 + 5𝑥2 ≤ 510
2𝑥1 + 3𝑥2 ≤ 430
3𝑥1 + 𝑥2 ≤ 300
𝑥1,𝑥2 ≥ 0
The Dual Problem
Min 320𝑦1 + 510𝑦2 + 430𝑦3 + 300𝑦4
𝑦1 + 4𝑦2 + 2𝑦3 + 3𝑦4 ≥ 300
4𝑦1 + 5𝑦2 + 3𝑦3 + 𝑦4 ≥ 400
𝑦1,𝑦2,𝑦3,𝑦4 ≥ 0
Matlab Code:
%Primary Problem
%Ax<=b
%coefficients of A
A = [1 4; 4 5; 2 3; 3 1];
%coefficients of B
b = [320 510 430 300];
%coefficients of the objective function
f = [300 400];
%The maximation of the linear function using the matlab linear
%programming function
[x0,F0] = linprog(-f,A,b,[],[],[0 0])
% disp(‘x0 = ‘)
% disp(x0);
%——————————————————————
%Dual problem
%coefficients of AT
AT = [1 4 2 3;
4 5 3 1];
%coefficients of u
u = [300 400];
g = [320 510 430 300];
%setting a lower bounder
lb = zeros(1,4);
%setting an upper bounder
ub=[];
[u0,F0] = linprog(g,-AT,-u,[],[],lb,ub)
% disp(‘u0 = ‘);
% disp(u0);
%So,1st and 2nd constrains of the primary problem are active
%because u0 = [9.0909
% 72.7273
% 0
% 0]
%Solutions of Primary problem throug the dual problem
syms x1 x2
eqns = [x1 + x2 == 320, 4*x1 + 5*x2 == 510];
S = solve(eqns,[x1 x2]);
b = [S.x1 S.x2];
disp(‘Values of x ‘)
disp(b);
duality_gap = [x0(1)-u0(1); x0(2)-u0(2)]Hello,
I need some help please to solve this problem I have . I have solved a max. problem , the primal problem , by using linprog.
After this , I have done the dual problem of the primal. After this proccess, I don’t get the result that I should get , because the values of F0 should be the same in both cases(if I am not wrong).
I am sending the illustrated problem and code below. I hope someone can give me a help.
thank you !
Max 300𝑥1 + 400𝑥2
𝑥1 + 𝑥2 ≤ 320
4𝑥1 + 5𝑥2 ≤ 510
2𝑥1 + 3𝑥2 ≤ 430
3𝑥1 + 𝑥2 ≤ 300
𝑥1,𝑥2 ≥ 0
The Dual Problem
Min 320𝑦1 + 510𝑦2 + 430𝑦3 + 300𝑦4
𝑦1 + 4𝑦2 + 2𝑦3 + 3𝑦4 ≥ 300
4𝑦1 + 5𝑦2 + 3𝑦3 + 𝑦4 ≥ 400
𝑦1,𝑦2,𝑦3,𝑦4 ≥ 0
Matlab Code:
%Primary Problem
%Ax<=b
%coefficients of A
A = [1 4; 4 5; 2 3; 3 1];
%coefficients of B
b = [320 510 430 300];
%coefficients of the objective function
f = [300 400];
%The maximation of the linear function using the matlab linear
%programming function
[x0,F0] = linprog(-f,A,b,[],[],[0 0])
% disp(‘x0 = ‘)
% disp(x0);
%——————————————————————
%Dual problem
%coefficients of AT
AT = [1 4 2 3;
4 5 3 1];
%coefficients of u
u = [300 400];
g = [320 510 430 300];
%setting a lower bounder
lb = zeros(1,4);
%setting an upper bounder
ub=[];
[u0,F0] = linprog(g,-AT,-u,[],[],lb,ub)
% disp(‘u0 = ‘);
% disp(u0);
%So,1st and 2nd constrains of the primary problem are active
%because u0 = [9.0909
% 72.7273
% 0
% 0]
%Solutions of Primary problem throug the dual problem
syms x1 x2
eqns = [x1 + x2 == 320, 4*x1 + 5*x2 == 510];
S = solve(eqns,[x1 x2]);
b = [S.x1 S.x2];
disp(‘Values of x ‘)
disp(b);
duality_gap = [x0(1)-u0(1); x0(2)-u0(2)] Hello,
I need some help please to solve this problem I have . I have solved a max. problem , the primal problem , by using linprog.
After this , I have done the dual problem of the primal. After this proccess, I don’t get the result that I should get , because the values of F0 should be the same in both cases(if I am not wrong).
I am sending the illustrated problem and code below. I hope someone can give me a help.
thank you !
Max 300𝑥1 + 400𝑥2
𝑥1 + 𝑥2 ≤ 320
4𝑥1 + 5𝑥2 ≤ 510
2𝑥1 + 3𝑥2 ≤ 430
3𝑥1 + 𝑥2 ≤ 300
𝑥1,𝑥2 ≥ 0
The Dual Problem
Min 320𝑦1 + 510𝑦2 + 430𝑦3 + 300𝑦4
𝑦1 + 4𝑦2 + 2𝑦3 + 3𝑦4 ≥ 300
4𝑦1 + 5𝑦2 + 3𝑦3 + 𝑦4 ≥ 400
𝑦1,𝑦2,𝑦3,𝑦4 ≥ 0
Matlab Code:
%Primary Problem
%Ax<=b
%coefficients of A
A = [1 4; 4 5; 2 3; 3 1];
%coefficients of B
b = [320 510 430 300];
%coefficients of the objective function
f = [300 400];
%The maximation of the linear function using the matlab linear
%programming function
[x0,F0] = linprog(-f,A,b,[],[],[0 0])
% disp(‘x0 = ‘)
% disp(x0);
%——————————————————————
%Dual problem
%coefficients of AT
AT = [1 4 2 3;
4 5 3 1];
%coefficients of u
u = [300 400];
g = [320 510 430 300];
%setting a lower bounder
lb = zeros(1,4);
%setting an upper bounder
ub=[];
[u0,F0] = linprog(g,-AT,-u,[],[],lb,ub)
% disp(‘u0 = ‘);
% disp(u0);
%So,1st and 2nd constrains of the primary problem are active
%because u0 = [9.0909
% 72.7273
% 0
% 0]
%Solutions of Primary problem throug the dual problem
syms x1 x2
eqns = [x1 + x2 == 320, 4*x1 + 5*x2 == 510];
S = solve(eqns,[x1 x2]);
b = [S.x1 S.x2];
disp(‘Values of x ‘)
disp(b);
duality_gap = [x0(1)-u0(1); x0(2)-u0(2)] optimization, linprog MATLAB Answers — New Questions
Convert macro into dynamic code to use with a command button
Hi,
The following recorded macro will only work for specific cells. What I would like is to run dynamic code using a command button placed on the sheet.
The command button becomes ready to be pressed when a cell in colJ is selected
Based on the macro code below for example, next weeks manually selected cell would J35
Then insert one cell by shifting down
Then select the cell two cells up J33
Autofill J33:J36
From row 33 select N:P
Autofill N33:P36
Finish by selecting L37 (previously L36 was selected)
Sub WeeklySales()
‘
‘ WeeklySales Macro
Range(“J34”).Select ‘ Manually selected cell in colJ
Selection.Insert Shift:=xlDown, CopyOrigin:=xlFormatFromLeftOrAbove ‘ Then insert one cell by shifting all cells in colJ down one cell
Range(“J32”).Select ‘ After this select the cell two cells up from J34
Selection.AutoFill Destination:=Range(“J32:J35”), Type:=xlFillDefault ‘ Drag down the formula that is in colJ
Range(“J32:J35”).Select ‘ This is the range to be dragged down, four cells in total, J32 plus three cells
Range(“N32:P32”).Select ‘ Now select the range N:P and match the same row 32 as used earlier
Selection.AutoFill Destination:=Range(“N32:P35”), Type:=xlFillDefault ‘ Drag down the formula that is in each of the cells in N:P
Range(“N32:P35”).Select ‘ The formulas are auto filled
Range(“L36”).Select ‘ Finish by leaving the sheet activate the sheet
End Sub
If you can provide some help with this task I would be very great full.
Hi, The following recorded macro will only work for specific cells. What I would like is to run dynamic code using a command button placed on the sheet. The command button becomes ready to be pressed when a cell in colJ is selected Based on the macro code below for example, next weeks manually selected cell would J35Then insert one cell by shifting downThen select the cell two cells up J33Autofill J33:J36From row 33 select N:PAutofill N33:P36Finish by selecting L37 (previously L36 was selected) Sub WeeklySales()” WeeklySales Macro Range(“J34”).Select ‘ Manually selected cell in colJ Selection.Insert Shift:=xlDown, CopyOrigin:=xlFormatFromLeftOrAbove ‘ Then insert one cell by shifting all cells in colJ down one cell Range(“J32”).Select ‘ After this select the cell two cells up from J34 Selection.AutoFill Destination:=Range(“J32:J35”), Type:=xlFillDefault ‘ Drag down the formula that is in colJ Range(“J32:J35”).Select ‘ This is the range to be dragged down, four cells in total, J32 plus three cells Range(“N32:P32”).Select ‘ Now select the range N:P and match the same row 32 as used earlier Selection.AutoFill Destination:=Range(“N32:P35”), Type:=xlFillDefault ‘ Drag down the formula that is in each of the cells in N:P Range(“N32:P35”).Select ‘ The formulas are auto filled Range(“L36”).Select ‘ Finish by leaving the sheet activate the sheet End Sub If you can provide some help with this task I would be very great full. Read More
Fuzzy Control for Speed Stepper Motor
I’m sorry I’m still a beginner and don’t really understand Matlab. I want to control the speed of the stepper motor in the concrete 3d printing extruder. I plan to use the speed of the stepper motor from x (1 motor), y (2 motor) and z (1 motor) 3d printing for inputs, then I use FLC mamdani in the slow, medium, and fast categories. the output is the speed of the stepper motor in the extruder. the question is is it correct in that way can i get to control the stepper motor? then what should I do first? thank you for your answerI’m sorry I’m still a beginner and don’t really understand Matlab. I want to control the speed of the stepper motor in the concrete 3d printing extruder. I plan to use the speed of the stepper motor from x (1 motor), y (2 motor) and z (1 motor) 3d printing for inputs, then I use FLC mamdani in the slow, medium, and fast categories. the output is the speed of the stepper motor in the extruder. the question is is it correct in that way can i get to control the stepper motor? then what should I do first? thank you for your answer I’m sorry I’m still a beginner and don’t really understand Matlab. I want to control the speed of the stepper motor in the concrete 3d printing extruder. I plan to use the speed of the stepper motor from x (1 motor), y (2 motor) and z (1 motor) 3d printing for inputs, then I use FLC mamdani in the slow, medium, and fast categories. the output is the speed of the stepper motor in the extruder. the question is is it correct in that way can i get to control the stepper motor? then what should I do first? thank you for your answer #fuzzy #steppermotor MATLAB Answers — New Questions
how to define global coastline shapefile (boundary line) for a pcolor plot of data having range from 0 to 360 instead of -180 to 180
Hello all,
I was juts doing some seasurface temperature plots which has the range longitude from 0 to 360, the sample plot and data set(a single year data file is shared since the entire data set is too large to share) is attached below.
I would like highlight the coastline for this plot, which i wasnt able to do.Hello all,
I was juts doing some seasurface temperature plots which has the range longitude from 0 to 360, the sample plot and data set(a single year data file is shared since the entire data set is too large to share) is attached below.
I would like highlight the coastline for this plot, which i wasnt able to do. Hello all,
I was juts doing some seasurface temperature plots which has the range longitude from 0 to 360, the sample plot and data set(a single year data file is shared since the entire data set is too large to share) is attached below.
I would like highlight the coastline for this plot, which i wasnt able to do. shapefile, geoshow, pcolor, coastline, sst MATLAB Answers — New Questions
Windows Explorer Fails to Load Correctly Upon (Re)starting the Computer
I have a high-performance desktop setup dedicated to managing Blue Iris and monitoring IP cameras. Despite its overall efficiency, the system encounters persistent startup issues that have been challenging to pinpoint and resolve.
Upon initiating Windows 11, the system frequently experiences a failure to load the Windows Explorer properly, leading to a non-responsive taskbar and delays in functional menu operations. This creates a frustrating user experience, requiring manual intervention such as forcing the closure and restart of explorer.exe using the ctrl+shift+esc command.
In some instances, although the taskbar loads, the initial start menu functions superficially, displaying pinned apps but failing to navigate beyond that point. Attempts to search for applications stall indefinitely, only resolving after a prolonged delay of approximately 15-20 minutes.
Despite these initial hiccups, once the system is fully operational, it performs reliably and supports the continuous recording of 16 cameras without interruptions. Despite attempts to address the issue through multiple reformatting processes, the problem persists. Task Manager consistently reports CPU utilization around 20% and memory utilization at 45%.
For a more detailed overview of my system specifications, please refer to my profile. Thank you for your assistance.
I have a high-performance desktop setup dedicated to managing Blue Iris and monitoring IP cameras. Despite its overall efficiency, the system encounters persistent startup issues that have been challenging to pinpoint and resolve. Upon initiating Windows 11, the system frequently experiences a failure to load the Windows Explorer properly, leading to a non-responsive taskbar and delays in functional menu operations. This creates a frustrating user experience, requiring manual intervention such as forcing the closure and restart of explorer.exe using the ctrl+shift+esc command. In some instances, although the taskbar loads, the initial start menu functions superficially, displaying pinned apps but failing to navigate beyond that point. Attempts to search for applications stall indefinitely, only resolving after a prolonged delay of approximately 15-20 minutes. Despite these initial hiccups, once the system is fully operational, it performs reliably and supports the continuous recording of 16 cameras without interruptions. Despite attempts to address the issue through multiple reformatting processes, the problem persists. Task Manager consistently reports CPU utilization around 20% and memory utilization at 45%. For a more detailed overview of my system specifications, please refer to my profile. Thank you for your assistance. Read More
How to Use Windows 11 Kiosk Mode to Limit App File and Directory Access
I am attempting to implement kiosk mode in Windows 11 Pro using a “local account” with administrator privileges. When transitioning the computer to kiosk mode, I follow the straightforward process of going to Settings, then Family, and finally Kiosk. Windows automatically generates a “Kiosk” user account with the necessary app configuration. So far, everything seems to be functioning properly.
I initially learned about this method through a tutorial on YouTube (see “Kiosk mode”).
However, a significant issue has arisen – the app within the kiosk mode allows the user to access files (such as photos) from the computer using the “Open File” menu. As the user holds administrator rights, they are able to modify files and folders through the File open dialog. I am concerned that users could potentially navigate through the disk structure and make unauthorized changes to files. Is there a way to restrict the kiosk mode from having administrator privileges or to limit the app’s access solely to a designated folder? I am seeking a straightforward solution to prevent users from freely browsing and altering files.
I am attempting to implement kiosk mode in Windows 11 Pro using a “local account” with administrator privileges. When transitioning the computer to kiosk mode, I follow the straightforward process of going to Settings, then Family, and finally Kiosk. Windows automatically generates a “Kiosk” user account with the necessary app configuration. So far, everything seems to be functioning properly. I initially learned about this method through a tutorial on YouTube (see “Kiosk mode”). However, a significant issue has arisen – the app within the kiosk mode allows the user to access files (such as photos) from the computer using the “Open File” menu. As the user holds administrator rights, they are able to modify files and folders through the File open dialog. I am concerned that users could potentially navigate through the disk structure and make unauthorized changes to files. Is there a way to restrict the kiosk mode from having administrator privileges or to limit the app’s access solely to a designated folder? I am seeking a straightforward solution to prevent users from freely browsing and altering files. Read More
“Encountering Error: Unable to Sign In with Correct PIN. Assistance Required.”
Greetings,
I recently encountered an access issue with my admin account following the Windows 11 update. Despite Windows Hello functioning correctly, I found myself unable to log in as my PIN seemed to be locked. Attached is a screenshot of the screen I encountered.
Regrettably, this account solely relied on a PIN with no alternative password option for access or PIN reset. Consequently, my options are limited as a non-admin user.
I seek guidance on resolving this predicament. Thank you for your support in advance!
Greetings, I recently encountered an access issue with my admin account following the Windows 11 update. Despite Windows Hello functioning correctly, I found myself unable to log in as my PIN seemed to be locked. Attached is a screenshot of the screen I encountered. Regrettably, this account solely relied on a PIN with no alternative password option for access or PIN reset. Consequently, my options are limited as a non-admin user. I seek guidance on resolving this predicament. Thank you for your support in advance! Read More
Mysterious event repeats every 10 minutes
A mysterious event is occurring at precise 10-minute intervals, such as at 7:00, 7:10, 7:20, and so on. This event manifests as a sudden black pop-up appearing in the top left corner of my main screen, resembling the size of a command window. The appearance of the pop-up is extremely fleeting, lasting for just a fraction of a second, making it impossible to discern any content within it. Despite its brevity, this occurrence disrupts the normal sleep function of the computer. This phenomenon has persisted for a few weeks with no clear connection to any changes made to the system, which has been operating on version 11 for only a couple of months after an “upgrade” from version 7.
Upon checking the Application Event Viewer, it reveals that the Restart Manager initiates and concludes a session at these specific intervals, as indicated by Event ID 10001 and 10000.
After running Malwarebytes, it confirms the absence of any malware present on the system, while a CHKDSK scan reports that all files are in a normal state.
A mysterious event is occurring at precise 10-minute intervals, such as at 7:00, 7:10, 7:20, and so on. This event manifests as a sudden black pop-up appearing in the top left corner of my main screen, resembling the size of a command window. The appearance of the pop-up is extremely fleeting, lasting for just a fraction of a second, making it impossible to discern any content within it. Despite its brevity, this occurrence disrupts the normal sleep function of the computer. This phenomenon has persisted for a few weeks with no clear connection to any changes made to the system, which has been operating on version 11 for only a couple of months after an “upgrade” from version 7. Upon checking the Application Event Viewer, it reveals that the Restart Manager initiates and concludes a session at these specific intervals, as indicated by Event ID 10001 and 10000. After running Malwarebytes, it confirms the absence of any malware present on the system, while a CHKDSK scan reports that all files are in a normal state. Read More
Scheduled Tasks in Modern Standby
Windows 11 Pro, version 22H2 build 22621.1992
Dell XPS 9720 – all Dell maintenance applied including Firmware.
After collaborating with the Macrium forum, I discovered that scheduled tasks do not execute in Standby (S0) mode. This results in my backups and virus scans not being initiated. I have verified that Windows maintenance is set for 2:00 am, but I am unable to activate the option to wake the machine if it is asleep.
Is there a Group Policy setting that I can adjust to enable (or disable) the execution of tasks on schedule? I am aware that there is a specific group policy allowing networking in standby mode, as described in an article by Brink.
I am not looking to reinstall the OS.
I find it hard to fathom that Microsoft implemented a standard that essentially renders the Task Scheduler ineffective and schedules maintenance at times when the user is actively using the device.
Windows 11 Pro, version 22H2 build 22621.1992 Dell XPS 9720 – all Dell maintenance applied including Firmware. After collaborating with the Macrium forum, I discovered that scheduled tasks do not execute in Standby (S0) mode. This results in my backups and virus scans not being initiated. I have verified that Windows maintenance is set for 2:00 am, but I am unable to activate the option to wake the machine if it is asleep. Is there a Group Policy setting that I can adjust to enable (or disable) the execution of tasks on schedule? I am aware that there is a specific group policy allowing networking in standby mode, as described in an article by Brink. I am not looking to reinstall the OS. I find it hard to fathom that Microsoft implemented a standard that essentially renders the Task Scheduler ineffective and schedules maintenance at times when the user is actively using the device. Read More
Adjusting Default Sizes of Icons, Images, and More: A Guide
Greetings everyone,
I have been journeying through the evolution of Windows from its early days all the way to Windows 11, although I wouldn’t consider myself an expert. This ASUS laptop, my second device running W11, has presented me with a challenge regarding display sizes. While I have encountered and resolved similar issues on previous machines, tackling them on this particular device is proving to be a bit of a challenge. It seems that the root cause of the various issues I am experiencing lies within a misconfiguration in the Windows settings.
Specifically, I am facing the dilemma of certain text and icons appearing excessively small within some applications, while others maintain an appropriate size. Despite adjusting the “Scale” setting to 150% and the “Display resolution” to the recommended 1920 x 1080, deviating from these configurations only exacerbates the visual inconsistencies.
For instance, when utilizing the open-source image editor GIMP to create images, I notice that the images appear significantly larger when viewed online using the Firefox browser or through an image viewer compared to their depiction within GIMP itself. This discrepancy is reminiscent of a past issue I encountered, although I cannot recall how I resolved it, if at all. Furthermore, within GIMP, the tools on the tool palette appear unusually minuscule, a stark departure from my 15 years of seamless GIMP usage on various machines.
Moreover, an anomaly has arisen with TK8 Sticky Notes, where the header text inexplicably shrinks when the note is minimized. Despite adjusting the text size within the note itself, the title size remains unchanged. It is my belief that all these issues stem from a common misconfiguration within the Windows settings.
How can I rectify these display anomalies? Interestingly, my previous Dell laptop running W11 did not present me with these challenges, further emphasizing the unique nature of this current situation.
Greetings everyone, I have been journeying through the evolution of Windows from its early days all the way to Windows 11, although I wouldn’t consider myself an expert. This ASUS laptop, my second device running W11, has presented me with a challenge regarding display sizes. While I have encountered and resolved similar issues on previous machines, tackling them on this particular device is proving to be a bit of a challenge. It seems that the root cause of the various issues I am experiencing lies within a misconfiguration in the Windows settings. Specifically, I am facing the dilemma of certain text and icons appearing excessively small within some applications, while others maintain an appropriate size. Despite adjusting the “Scale” setting to 150% and the “Display resolution” to the recommended 1920 x 1080, deviating from these configurations only exacerbates the visual inconsistencies. For instance, when utilizing the open-source image editor GIMP to create images, I notice that the images appear significantly larger when viewed online using the Firefox browser or through an image viewer compared to their depiction within GIMP itself. This discrepancy is reminiscent of a past issue I encountered, although I cannot recall how I resolved it, if at all. Furthermore, within GIMP, the tools on the tool palette appear unusually minuscule, a stark departure from my 15 years of seamless GIMP usage on various machines. Moreover, an anomaly has arisen with TK8 Sticky Notes, where the header text inexplicably shrinks when the note is minimized. Despite adjusting the text size within the note itself, the title size remains unchanged. It is my belief that all these issues stem from a common misconfiguration within the Windows settings. How can I rectify these display anomalies? Interestingly, my previous Dell laptop running W11 did not present me with these challenges, further emphasizing the unique nature of this current situation. Read More
Resolving Sleep and Hibernate Issues on Windows 11
I am experiencing a bothersome issue with the hibernation/sleep function on my MSI laptop Katana 15 B12V running Windows 11. Whenever I close the lid and reopen it later, I find that all my applications have been terminated and Windows appears to have freshly restarted.
How can I resolve this issue? Even after uninstalling all NVIDIA drivers, the problem persists. Below are some of the power settings on my computer.
I am experiencing a bothersome issue with the hibernation/sleep function on my MSI laptop Katana 15 B12V running Windows 11. Whenever I close the lid and reopen it later, I find that all my applications have been terminated and Windows appears to have freshly restarted. How can I resolve this issue? Even after uninstalling all NVIDIA drivers, the problem persists. Below are some of the power settings on my computer. Read More
Verify Directory Access and Permissions to Run Application
I am attempting to install a software application that I previously installed on Windows 10 and even on Windows 11 Home. However, I am encountering a new popup warning message when I try to install it now.
Given the issues I am experiencing with other programs, I suspect that the problem lies with Windows rather than the specific software application. How can I confirm whether I have the necessary access rights to the directory and permissions, etc.?
I appreciate any assistance on this matter. Thank you.
I am attempting to install a software application that I previously installed on Windows 10 and even on Windows 11 Home. However, I am encountering a new popup warning message when I try to install it now. Given the issues I am experiencing with other programs, I suspect that the problem lies with Windows rather than the specific software application. How can I confirm whether I have the necessary access rights to the directory and permissions, etc.? I appreciate any assistance on this matter. Thank you. Read More