Restreindre la communication Internet
Vérifié avec Windows 11 25H2 — mis à jour le 30 juillet 2026
Pris en charge sur : Au minimum Windows XP Professionnel avec SP2
Chemin dans la console GPO
Configuration utilisateur\Modèles d'administration\Système\Gestion de la communication Internet Description
Ce paramètre de stratégie indique si Windows peut accéder à Internet pour accomplir des tâches qui nécessitent des ressources Internet. Si vous activez ce paramètre de stratégie, tous les paramètres de stratégie affichés dans la section « Paramètres de communication Internet » sont définis de sorte que leurs fonctionnalités correspondantes aient accès à Internet. Si vous désactivez ce paramètre de stratégie, tous les paramètres de stratégie affichés dans la section « Paramètres de communication Internet » sont définis de sorte que leurs fonctionnalités correspondantes aient accès à Internet. Si vous ne configurez pas ce paramètre de stratégie, aucun des paramètres de stratégie affichés dans la section « Paramètres de communication Internet » n’est configuré.
Registre
Software\Policies\Microsoft\InternetManagement Nom de valeur : RestrictCommunication
Activé : RestrictCommunication = 1
Désactivé : RestrictCommunication = 0
Cette stratégie définit plusieurs valeurs de registre :
NoPublishingWizard Explorer NoPublishingWizard = 1 NoPublishingWizard = 0 NoWebServices Explorer NoWebServices = 1 NoWebServices = 0 NoGenTicket Software Protection Platform NoGenTicket = 1 NoGenTicket = 0 AllowWindowsEntitlementReactivation Software Protection Platform AllowWindowsEntitlementReactivation = 1 AllowWindowsEntitlementReactivation = 0 NoOnlinePrintsWizard Explorer NoOnlinePrintsWizard = 1 NoOnlinePrintsWizard = 0 CEIP Client CEIP = 2 CEIP = 1 NoInternetOpenWith Explorer NoInternetOpenWith = 1 NoInternetOpenWith = 0 DisableHTTPPrinting Printers DisableHTTPPrinting = 1 DisableHTTPPrinting = 0 DisableWebPnPDownload Printers DisableWebPnPDownload = 1 DisableWebPnPDownload = 0 PreventHandwritingErrorReports HandwritingErrorReports PreventHandwritingErrorReports = 1 PreventHandwritingErrorReports = 0 PreventHandwritingDataSharing TabletPC PreventHandwritingDataSharing = 1 PreventHandwritingDataSharing = 0 NoOnlineAssist 1.0 NoOnlineAssist = 1 NoOnlineAssist = 0 NoExplicitFeedback 1.0 NoExplicitFeedback = 1 NoExplicitFeedback = 0 NoImplicitFeedback 1.0 NoImplicitFeedback = 1 NoImplicitFeedback = 0 WebHelp WindowsMovieMaker WebHelp = 1 WebHelp = 0 CodecDownload WindowsMovieMaker CodecDownload = 1 CodecDownload = 0 WebPublish WindowsMovieMaker WebPublish = 1 WebPublish = 0 MDM / Intune (CSP)
./User/Vendor/MSFT/Policy/Config/ADMX_ICM/InternetManagement_RestrictCommunication_1 Documentation Microsoft Learn Données de correspondance : Microsoft Learn (CC BY 4.0)
Générateur d'exports
BETAConfigurez l'état, la portée et les options, puis générez les sorties .reg, PowerShell, Intune et SCCM — ou ajoutez le paramètre à une collection multi-paramètres.
Ces exports écrivent le registre — ce n'est pas une GPO managée. ⓘ
Fichier .reg
Windows Registry Editor Version 5.00
; Exported from gporais.com
; Policy: Restreindre la communication Internet
; State: Enabled
; Supported on: Au minimum Windows XP Professionnel avec SP2
[HKEY_CURRENT_USER\Software\Policies\Microsoft\InternetManagement]
"RestrictCommunication"=dword:00000001
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoPublishingWizard"=dword:00000001
"NoWebServices"=dword:00000001
"NoOnlinePrintsWizard"=dword:00000001
"NoInternetOpenWith"=dword:00000001
[HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows NT\CurrentVersion\Software Protection Platform]
"NoGenTicket"=dword:00000001
"AllowWindowsEntitlementReactivation"=dword:00000001
[HKEY_CURRENT_USER\Software\Policies\Microsoft\Messenger\Client]
"CEIP"=dword:00000002
[HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows NT\Printers]
"DisableHTTPPrinting"=dword:00000001
"DisableWebPnPDownload"=dword:00000001
[HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\HandwritingErrorReports]
"PreventHandwritingErrorReports"=dword:00000001
[HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\TabletPC]
"PreventHandwritingDataSharing"=dword:00000001
[HKEY_CURRENT_USER\Software\Policies\Microsoft\Assistance\Client\1.0]
"NoOnlineAssist"=dword:00000001
"NoExplicitFeedback"=dword:00000001
"NoImplicitFeedback"=dword:00000001
[HKEY_CURRENT_USER\Software\Policies\Microsoft\WindowsMovieMaker]
"WebHelp"=dword:00000001
"CodecDownload"=dword:00000001
"WebPublish"=dword:00000001 Autres formats (PowerShell, Intune, SCCM)
PowerShell
# Exported from gporais.com
# Policy: Restreindre la communication Internet
# State: Enabled
# Supported on: Au minimum Windows XP Professionnel avec SP2
# Warning: In SYSTEM context (the Intune default), HKCU targets the SYSTEM profile. Run this script using the logged-on credentials.
$path = 'HKCU:\Software\Policies\Microsoft\InternetManagement'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'RestrictCommunication' -Value 1 -Type DWord
$path = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'NoPublishingWizard' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'NoWebServices' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'NoOnlinePrintsWizard' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'NoInternetOpenWith' -Value 1 -Type DWord
$path = 'HKCU:\Software\Policies\Microsoft\Windows NT\CurrentVersion\Software Protection Platform'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'NoGenTicket' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'AllowWindowsEntitlementReactivation' -Value 1 -Type DWord
$path = 'HKCU:\Software\Policies\Microsoft\Messenger\Client'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'CEIP' -Value 2 -Type DWord
$path = 'HKCU:\Software\Policies\Microsoft\Windows NT\Printers'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'DisableHTTPPrinting' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'DisableWebPnPDownload' -Value 1 -Type DWord
$path = 'HKCU:\Software\Policies\Microsoft\Windows\HandwritingErrorReports'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'PreventHandwritingErrorReports' -Value 1 -Type DWord
$path = 'HKCU:\Software\Policies\Microsoft\Windows\TabletPC'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'PreventHandwritingDataSharing' -Value 1 -Type DWord
$path = 'HKCU:\Software\Policies\Microsoft\Assistance\Client\1.0'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'NoOnlineAssist' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'NoExplicitFeedback' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'NoImplicitFeedback' -Value 1 -Type DWord
$path = 'HKCU:\Software\Policies\Microsoft\WindowsMovieMaker'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'WebHelp' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'CodecDownload' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'WebPublish' -Value 1 -Type DWord Intune XML
OMA-URI: ./User/Vendor/MSFT/Policy/Config/ADMX_ICM/InternetManagement_RestrictCommunication_1
Data type: String
Value:
<enabled/> Intune Remediation
# === Detection script ===
# Exported from gporais.com
# Policy: Restreindre la communication Internet
# State: Enabled
# Supported on: Au minimum Windows XP Professionnel avec SP2
# Warning: In SYSTEM context (the Intune default), HKCU targets the SYSTEM profile. Run this script using the logged-on credentials.
function Test-RegistryValue {
param(
[Parameter(Mandatory = $true)][string]$Path,
[Parameter(Mandatory = $true)][string]$Name,
[object]$Expected,
[ValidateSet('String', 'DWord', 'MultiString')][string]$Kind = 'String',
[switch]$Absent
)
try {
$item = Get-ItemProperty -LiteralPath $Path -Name $Name -ErrorAction Stop
} catch {
return $Absent.IsPresent
}
if ($Absent.IsPresent) { return $false }
$actual = $item.$Name
if ($Kind -eq 'DWord') { return ([int64]$actual) -eq ([int64]$Expected) }
if ($Kind -eq 'MultiString') {
$actualValues = @($actual)
$expectedValues = @($Expected)
if ($actualValues.Count -ne $expectedValues.Count) { return $false }
for ($i = 0; $i -lt $expectedValues.Count; $i++) {
if ([string]$actualValues[$i] -ne [string]$expectedValues[$i]) { return $false }
}
return $true
}
return [string]$actual -eq [string]$Expected
}
$checks = @(
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\InternetManagement' -Name 'RestrictCommunication' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'NoPublishingWizard' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'NoWebServices' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\Windows NT\CurrentVersion\Software Protection Platform' -Name 'NoGenTicket' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\Windows NT\CurrentVersion\Software Protection Platform' -Name 'AllowWindowsEntitlementReactivation' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'NoOnlinePrintsWizard' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\Messenger\Client' -Name 'CEIP' -Expected 2 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'NoInternetOpenWith' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\Windows NT\Printers' -Name 'DisableHTTPPrinting' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\Windows NT\Printers' -Name 'DisableWebPnPDownload' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\Windows\HandwritingErrorReports' -Name 'PreventHandwritingErrorReports' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\Windows\TabletPC' -Name 'PreventHandwritingDataSharing' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\Assistance\Client\1.0' -Name 'NoOnlineAssist' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\Assistance\Client\1.0' -Name 'NoExplicitFeedback' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\Assistance\Client\1.0' -Name 'NoImplicitFeedback' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMovieMaker' -Name 'WebHelp' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMovieMaker' -Name 'CodecDownload' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMovieMaker' -Name 'WebPublish' -Expected 1 -Kind DWord)
)
if ($checks -notcontains $false) {
Write-Output 'Compliant'
exit 0
}
Write-Output 'Non-compliant'
exit 1
# === Remediation script ===
# Exported from gporais.com
# Policy: Restreindre la communication Internet
# State: Enabled
# Supported on: Au minimum Windows XP Professionnel avec SP2
# Warning: In SYSTEM context (the Intune default), HKCU targets the SYSTEM profile. Run this script using the logged-on credentials.
$path = 'HKCU:\Software\Policies\Microsoft\InternetManagement'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'RestrictCommunication' -Value 1 -Type DWord
$path = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'NoPublishingWizard' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'NoWebServices' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'NoOnlinePrintsWizard' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'NoInternetOpenWith' -Value 1 -Type DWord
$path = 'HKCU:\Software\Policies\Microsoft\Windows NT\CurrentVersion\Software Protection Platform'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'NoGenTicket' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'AllowWindowsEntitlementReactivation' -Value 1 -Type DWord
$path = 'HKCU:\Software\Policies\Microsoft\Messenger\Client'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'CEIP' -Value 2 -Type DWord
$path = 'HKCU:\Software\Policies\Microsoft\Windows NT\Printers'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'DisableHTTPPrinting' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'DisableWebPnPDownload' -Value 1 -Type DWord
$path = 'HKCU:\Software\Policies\Microsoft\Windows\HandwritingErrorReports'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'PreventHandwritingErrorReports' -Value 1 -Type DWord
$path = 'HKCU:\Software\Policies\Microsoft\Windows\TabletPC'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'PreventHandwritingDataSharing' -Value 1 -Type DWord
$path = 'HKCU:\Software\Policies\Microsoft\Assistance\Client\1.0'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'NoOnlineAssist' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'NoExplicitFeedback' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'NoImplicitFeedback' -Value 1 -Type DWord
$path = 'HKCU:\Software\Policies\Microsoft\WindowsMovieMaker'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'WebHelp' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'CodecDownload' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'WebPublish' -Value 1 -Type DWord Scripts SCCM
# Exported from gporais.com
# Policy: Restreindre la communication Internet
# State: Enabled
# Supported on: Au minimum Windows XP Professionnel avec SP2
# SCCM Configuration Item guidance:
# Create a Configuration Item of type "Setting: Script".
# Discovery script: use the Detection script below.
# Remediation script: use the Remediation script below.
# Compliance rule: the Discovery script output equals 'Compliant'.
# === Detection script ===
# Exported from gporais.com
# Policy: Restreindre la communication Internet
# State: Enabled
# Supported on: Au minimum Windows XP Professionnel avec SP2
# Warning: In SYSTEM context (the Intune default), HKCU targets the SYSTEM profile. Run this script using the logged-on credentials.
function Test-RegistryValue {
param(
[Parameter(Mandatory = $true)][string]$Path,
[Parameter(Mandatory = $true)][string]$Name,
[object]$Expected,
[ValidateSet('String', 'DWord', 'MultiString')][string]$Kind = 'String',
[switch]$Absent
)
try {
$item = Get-ItemProperty -LiteralPath $Path -Name $Name -ErrorAction Stop
} catch {
return $Absent.IsPresent
}
if ($Absent.IsPresent) { return $false }
$actual = $item.$Name
if ($Kind -eq 'DWord') { return ([int64]$actual) -eq ([int64]$Expected) }
if ($Kind -eq 'MultiString') {
$actualValues = @($actual)
$expectedValues = @($Expected)
if ($actualValues.Count -ne $expectedValues.Count) { return $false }
for ($i = 0; $i -lt $expectedValues.Count; $i++) {
if ([string]$actualValues[$i] -ne [string]$expectedValues[$i]) { return $false }
}
return $true
}
return [string]$actual -eq [string]$Expected
}
$checks = @(
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\InternetManagement' -Name 'RestrictCommunication' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'NoPublishingWizard' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'NoWebServices' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\Windows NT\CurrentVersion\Software Protection Platform' -Name 'NoGenTicket' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\Windows NT\CurrentVersion\Software Protection Platform' -Name 'AllowWindowsEntitlementReactivation' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'NoOnlinePrintsWizard' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\Messenger\Client' -Name 'CEIP' -Expected 2 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'NoInternetOpenWith' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\Windows NT\Printers' -Name 'DisableHTTPPrinting' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\Windows NT\Printers' -Name 'DisableWebPnPDownload' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\Windows\HandwritingErrorReports' -Name 'PreventHandwritingErrorReports' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\Windows\TabletPC' -Name 'PreventHandwritingDataSharing' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\Assistance\Client\1.0' -Name 'NoOnlineAssist' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\Assistance\Client\1.0' -Name 'NoExplicitFeedback' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\Assistance\Client\1.0' -Name 'NoImplicitFeedback' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMovieMaker' -Name 'WebHelp' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMovieMaker' -Name 'CodecDownload' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Policies\Microsoft\WindowsMovieMaker' -Name 'WebPublish' -Expected 1 -Kind DWord)
)
if ($checks -notcontains $false) {
Write-Output 'Compliant'
exit 0
}
Write-Output 'Non-compliant'
exit 1
# === Remediation script ===
# Exported from gporais.com
# Policy: Restreindre la communication Internet
# State: Enabled
# Supported on: Au minimum Windows XP Professionnel avec SP2
# Warning: In SYSTEM context (the Intune default), HKCU targets the SYSTEM profile. Run this script using the logged-on credentials.
$path = 'HKCU:\Software\Policies\Microsoft\InternetManagement'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'RestrictCommunication' -Value 1 -Type DWord
$path = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'NoPublishingWizard' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'NoWebServices' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'NoOnlinePrintsWizard' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'NoInternetOpenWith' -Value 1 -Type DWord
$path = 'HKCU:\Software\Policies\Microsoft\Windows NT\CurrentVersion\Software Protection Platform'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'NoGenTicket' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'AllowWindowsEntitlementReactivation' -Value 1 -Type DWord
$path = 'HKCU:\Software\Policies\Microsoft\Messenger\Client'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'CEIP' -Value 2 -Type DWord
$path = 'HKCU:\Software\Policies\Microsoft\Windows NT\Printers'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'DisableHTTPPrinting' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'DisableWebPnPDownload' -Value 1 -Type DWord
$path = 'HKCU:\Software\Policies\Microsoft\Windows\HandwritingErrorReports'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'PreventHandwritingErrorReports' -Value 1 -Type DWord
$path = 'HKCU:\Software\Policies\Microsoft\Windows\TabletPC'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'PreventHandwritingDataSharing' -Value 1 -Type DWord
$path = 'HKCU:\Software\Policies\Microsoft\Assistance\Client\1.0'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'NoOnlineAssist' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'NoExplicitFeedback' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'NoImplicitFeedback' -Value 1 -Type DWord
$path = 'HKCU:\Software\Policies\Microsoft\WindowsMovieMaker'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'WebHelp' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'CodecDownload' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'WebPublish' -Value 1 -Type DWord Vous construisez une collection multi-paramètres ? Ajoutez ce paramètre et générez des exports combinés (.reg, PowerShell, GPO).