cschneegans / unattend-generator

.NET Core library to create highly customized autounattend.xml files
https://schneegans.de/windows/unattend-generator/
MIT License
426 stars 37 forks source link

Disable core isolation #17

Closed procionecurioso closed 3 months ago

procionecurioso commented 3 months ago

if you have virtualization enabled on the bios core isolation is enabled as a windows defender option, even if by a little it impacts in game performance, I would like an option to disable it if possible

cschneegans commented 3 months ago

I am not familiar with feature. There might be dependencies with other settings offered by my generator, namely Disable Windows Defender and Windows Defender Application Control. I would need to make sure the resulting autounattend.xml is consistent, and I am not very comfortable with this.

Shawn Brink has posted this .reg file:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\DeviceGuard\Scenarios\HypervisorEnforcedCodeIntegrity]
"Enabled"=dword:00000000

You can easily enter this file in the Scripts to run in the system context section.

procionecurioso commented 3 months ago

Thank you very much for the solution