memstechtips / UnattendedWinstall

Personalized Unattended Answer Files that helps automatically debloat and customize Windows 10 & 11 during the installation process.
MIT License
3.46k stars 396 forks source link

Requesting multiple features. #112

Open Mxfuuu opened 3 months ago

Mxfuuu commented 3 months ago
  1. Schneegans recently added an import feature. It would be great if the .xml file could be imported into the Schneegans site to either add new features or make changes there.

  2. The Format dates, times, currency, and numbers could be set to English(World) initially. This also does not allow installation of bloatware.

  3. I believe disabling Smart App Control and disabling Fast Startup is still missing.

  4. The following could also be integrated into the xml file: https://github.com/crazy-max/WindowsSpyBlocker/tree/master/data/hosts

  5. The following to the registry should allow a user to use Extensions on their browser that are dependent on manifest V2:

reg add HKLM\Software\Policies\Google\Chrome /v ExtensionManifestV2Availability /t REG_DWORD /d 2 /f

reg add HKLM\Software\Policies\Microsoft\Edge /v ExtensionManifestV2Availability /t REG_DWORD /d 2 /f

reg add HKLM\Software\Policies\Policies\Vivaldi /v ExtensionManifestV2Availability /t REG_DWORD /d 2 /f

memstechtips commented 1 week ago
  1. I create an entirely new XML file and only use Schneegans as a "Framework" for the file, so this cannot be done.
  2. This works well on Windows 11, but not on Windows 10. The user also has the ability to choose this during the installation process themselves.
  3. Smart App Control is still enabled in v2.0.0 (I think) but Fast Startup is disabled, see: https://github.com/memstechtips/UnattendedWinstall/blob/93305192ed6d64e0f5b98a89f447927480285354/autounattend.xml#L3592
  4. I'm afraid that this will stop certain Microsoft services (like OneDrive) from working, can you confirm or deny that?
  5. I'll do some research on these extensions too, thanks.