How to Import Video in DaVinci Resolve 18.6

Problem: I like to import video in DaVinci Resolve 18.6.

Resolution:

Go through the following steps:

  • Open DaVinci Resolve 18.6
  • Go to File > Import >Media

image

  • This will allow you to browse through the videos present on your system.

image

  • Select the video and double click on it.

image

  • The video will be imported.
  • Double click on it to bring it to the timeline.

image

Fixing 10.2.4.1 Security – Software Dependencies ( .net blazor maui 8.0) to Microsoft store

Problem:

I have published my application in store, recently update my maui blazor application 6.0 to 8.0 when I submit my msix package to store I am getting

10.2.4.1 Security – Software Dependencies Products may depend on non-integrated software (such as another product or module) to deliver primary functionality only as long as the additional required software is disclosed within the first two lines of the description in the Store. .NET

to resolve what I need to do?

Resolution:

The error message you’re encountering (10.2.4.1 Security – Software Dependencies) indicates that the Microsoft Store review process flagged your .NET MAUI Blazor application (updated from 6.0 to 8.0) because it likely depends on external software that isn’t directly included in your MSIX package.

To address this issue and ensure compliance with the Microsoft Store requirements, you need to clearly mention any dependencies, including the .NET runtime, within the first two lines of your app’s description.

Here’s an example of how you can modify your app’s description to comply with this requirement:

image

Refer to the Microsoft documentation on MSIX package requirements and dependencies: https://learn.microsoft.com/en-us/windows/msix/

Search online for specific guidance on including external dependencies in .NET MAUI Blazor MSIX packages (considering version compatibility).

Fixing: NET::ERR_Connection_reset in production.

Why you are getting this error:

If there is an unexpected termination of the connection between your client and the server then you will get this error.

Troubleshooting in Client end:

1. Clear cache and cookies.

2. Try disabling browser extensions temporarily.

Troubleshooting in Server end:

1. Examine Server logs to get any clue related to this error.

2. Check Firewall not trying to block.

3.Review your application code for any bugs or errors that might be causing the server to abruptly close connections.

Further references:

javascript – Why I get net::ERR_CONNECTION_RESET message? – Stack Overflow

c# – Edited – How to fix “ERR_CONNECTION_RESET” .Net Core Web API on Linux – Stack Overflow

Can’t Boot 0xc000000f Error

Problem:

I am trying to resolve the error “0xc000000f”, I have tried all the methods I have hired online, but none of the options are viable and I cannot copy the boot files.

Resolution:

The error code 0xc000000f typically indicates a problem with missing or corrupt system files that are essential for Windows to boot.

While a failing hard drive can cause this error, there are tools to verify your drive’s health. You may get those in the support site of the website of the manufacturer.

  1. Boot your computer with a Windows 10 installation media (USB or DVD). You can create one using another computer following instructions from https://support.microsoft.com/en-us/windows/create-installation-media-for-windows-99a58364-8c02-206f-aa6f-40c3b507420d.
  2. During bootup, choose “Repair your computer” on the first screen.
  3. Select “Troubleshoot” > “Advanced options” > “Startup Repair.”
  4. This will attempt to automatically diagnose and fix the issue preventing Windows from booting.

======================

  1. Follow steps 1 and 2 from the Automatic Repair section above.
  2. In the “Advanced options” menu, select “Command Prompt.”
  3. Run the following commands one by one, pressing Enter after each:
    • bootrec /fixmbr
    • bootrec /fixboot
    • bootrec /rebuildbcd
  4. These commands attempt to repair the Master Boot Record (MBR), boot sector, and rebuild the Boot Configuration Data (BCD) which might be corrupted.

===========

  1. Follow steps 1 and 2 from the Automatic Repair section above.
  2. In the Command Prompt, type chkdsk /f c: (replace ‘c’ with your drive letter) and press Enter.

Windows optional features page is empty

Problem:

I am finding Windows Optional feature is empty.

image

Resolution:

  • You may try a System Restore. Select any earlier restore point when there was no such issue.
  • Open Command Prompt as Admin and type the following command followed by hitting the Enter key:

sfc /scannow

Again open Command Prompt as Admin and type the following command followed by hitting the Enter key:

DISM /Online /Cleanup-Image /RestoreHealth

  • Open the Run menu by using Win + R keys.
  • Type services.msc and press Enter.
  • Locate the service named Windows Modules Installer.
  • Right-click on it and select Restart.

If your Windows version has Group Policy:

  • In Run menu type gpedit.msc. Press Enter.
  • Go to User Configuration > Administrative Templates > Control Panel > Programs.
  • Look for a policy named Hide “Windows Features”.
  • If the policy is set to Enabled, double-click it and select Disabled. Click Apply and OK.
  • Restart your computer.

Steps to Deploy Windows 11 language pack through SCCM

Here are step by step instructions:

  • Locate the Windows 11 language pack you need. You can find them through the Microsoft Volume Licensing Service Center (VLSC) or the Multilingual App Toolkit (MAT).
  • Now Copy the downloaded language pack CAB files to a distribution point accessible by SCCM clients.
  • Create a new task sequence or edit an existing one for Windows 11 deployment in SCCM console.
  • Within the script, use PowerShell cmdlets like Add-Package or DISM commands like DISM /Online /Add-Package to install the downloaded CAB files.

Fixing Grey Background when using Snipping Tool

Problem:

My OS is Windows 11. Just recently when I select to save an image, the resulting image is keeping a grey background within the selected target.

User's image

Resolution:

Disabling HDR in the Display Settings is indeed the most common way to avoid the grey background issue in Snipping Tool screenshots on Windows 11.

Steps:

  1. Go to Settings > System > Display.
  2. Select the HDR-capable display (if applicable).
  3. Under “Use HDR,” toggle the switch to “Off.”
  4. Take your screenshot.
  5. Remember to re-enable HDR if desired.

Fixing Windows 10 Update Error(0x80070643)

Problem: The user is getting Windows 10 Update Error(0x80070643).

Resolution:

Windows includes a built-in troubleshooter that can diagnose and fix common update installation issues. Here’s how to run it:

Open Settings.

Go to Update & Security.

Select Troubleshoot from the left pane.

Click on Additional troubleshooters.

Choose Windows Update and click “Run the troubleshooter.”

=========================

Open the Command Prompt as administrator.

Type the following commands one by one, pressing Enter after each:

  • net stop wuauserv
  • net stop cryptSvc
  • net stop bits
  • net stop msiserver
  • net start wuauserv
  • net start cryptSvc
  • net start bits
  • net start msiserver