What is the feeling of using intel core i7-9750H engine sample CPU?

I have use the intel core i7-9750H Engine Sample CPU since 2020.The following is my expirence.
Bad case 1, No hyper-v got:
1.enable intel vt-d in uefi settings;
2.install Hyper-V all toolkit, that is 4 components. They are:
In the Hyper-V Management Tools:
Hyper-V GUI management Tools;
Hyper-V module for Windows PowerShell;
In the Hyper-V Platform:
Hyper-V Hypervisor;
Hyper-V Services;

Hyper-V_installation_win11
Hyper-V_installation_win11

Once all the operation of installation and settings are done, I am probably get BSOD after reboot.
Solution:
1. Using system recovery if you have backup before the Hyper-V installation.
2.You can disabled the intel vt-d settings in the UEFI if solution 1 the system restore failed of backup not found.
Another Solution of virtualization: using Vmware workstation 16 instead of hyper-V.

Bad case 2,no 3.5 mm headphone got:
The 3.5mm headphone jack failure.
Solution: None.

Besides of the 2 bad case, it is all ok completely.
Platform: windows10 1903 64bit, thinkpad p53 with T1000, intel core-i7 9750h(ES)

Python3 shutil.rmtree PermissionError: [WinError 5] Access is denied:

You may receive PermissionError: [WinError 5] Access is denied: ‘C:\\Windows\\to_your_path’ while you use shutil.rmtree python code in windows environment.
shutil.rmtree is utility with a function that can remove directory in windows even if it contains files or subdirectories.
But what happens when you encounter WinError 5?
It may be while you use explorer.exe to enter the directory you want to delete and go back to the parent folder in some cases.So, it may be explorer.exe occupy the directory handles while you use explorer to check it and go back and run the python script.
Solution: Just close the explorer window which contains the history of the directory you want to remove.