26
edits
Changes
Created page with "Dies ist um die Windows 10 Update Anfragen zu blockieren. Das Update auf Windows 10 kann danach ohne Probleme installiert werden, jedoch kommt bis dahin keine weitere Aufforde..."
Dies ist um die Windows 10 Update Anfragen zu blockieren. Das Update auf Windows 10 kann danach ohne Probleme installiert werden, jedoch kommt bis dahin keine weitere Aufforderung. Die Registrie Einträge müssen auch für ein Update nicht mehr rückgängig gemacht werden.
<source lang="xml">
<package
id="nowin10"
name="nowin10"
revision="1"
priority="97000"
execute="once">
<check type="registry" condition="equals" path="HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Gwx\DisableGwx" value="1" />
<check type="host" condition="os" value="windows 7" />
<install cmd='regedit /s "\\%Software%\NoWin10.reg"' />
</package>
</source>
<source lang="reg">
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows]
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Gwx]
"DisableGwx"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
"DisableOSUpgrade"=dword:00000001
</source>
[[Category:Silent Installers]]
[[Category:Microsoft Windows]]
<source lang="xml">
<package
id="nowin10"
name="nowin10"
revision="1"
priority="97000"
execute="once">
<check type="registry" condition="equals" path="HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Gwx\DisableGwx" value="1" />
<check type="host" condition="os" value="windows 7" />
<install cmd='regedit /s "\\%Software%\NoWin10.reg"' />
</package>
</source>
<source lang="reg">
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows]
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Gwx]
"DisableGwx"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
"DisableOSUpgrade"=dword:00000001
</source>
[[Category:Silent Installers]]
[[Category:Microsoft Windows]]