Configurer les boutons de la barre d’outils
Vérifié avec Windows 11 25H2 — mis à jour le 23 juillet 2026
Pris en charge sur : Internet Explorer 5.0 et Internet Explorer 6.0 uniquement
Chemin dans la console GPO
Configuration utilisateur\Modèles d'administration\Composants Windows\Internet Explorer\Barres d’outils Description
Spécifie quels boutons sont affichés dans la barre d’outils standard d’Internet Explorer. Si vous activez ce paramètre de stratégie, vous pouvez spécifier si chaque bouton est affiché ou non en activant ou en désactivant les cases à cocher de chaque bouton. Si vous désactivez ce paramètre de stratégie ou si vous ne le configurez pas, la barre d’outils standard est affichée avec ses paramètres par défaut, sauf si les utilisateurs la personnalisent.
Registre
Software\Microsoft\Windows\CurrentVersion\Policies\Explorer Nom de valeur : SpecifyDefaultButtons
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: Configurer les boutons de la barre d’outils
; State: Enabled
; Supported on: Internet Explorer 5.0 et Internet Explorer 6.0 uniquement
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"SpecifyDefaultButtons"=dword:00000001
"Btn_Back"=dword:00000000
"Btn_Forward"=dword:00000000
"Btn_Stop"=dword:00000000
"Btn_Refresh"=dword:00000000
"Btn_Home"=dword:00000000
"Btn_Search"=dword:00000000
"Btn_Favorites"=dword:00000000
"Btn_History"=dword:00000000
"Btn_Folders"=dword:00000000
"Btn_Fullscreen"=dword:00000000
"Btn_Tools"=dword:00000000
"Btn_MailNews"=dword:00000000
"Btn_Size"=dword:00000000
"Btn_Print"=dword:00000000
"Btn_Edit"=dword:00000000
"Btn_Discussions"=dword:00000000
"Btn_Cut"=dword:00000000
"Btn_Copy"=dword:00000000
"Btn_Paste"=dword:00000000
"Btn_Encoding"=dword:00000000 Autres formats (PowerShell, Intune, SCCM)
PowerShell
# Exported from gporais.com
# Policy: Configurer les boutons de la barre d’outils
# State: Enabled
# Supported on: Internet Explorer 5.0 et Internet Explorer 6.0 uniquement
# Warning: In SYSTEM context (the Intune default), HKCU targets the SYSTEM profile. Run this script using the logged-on credentials.
$path = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'SpecifyDefaultButtons' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Back' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Forward' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Stop' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Refresh' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Home' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Search' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Favorites' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_History' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Folders' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Fullscreen' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Tools' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_MailNews' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Size' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Print' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Edit' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Discussions' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Cut' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Copy' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Paste' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Encoding' -Value 0 -Type DWord Intune XML
Aucune correspondance directe Policy CSP / OMA-URI pour cette stratégie. Utilisez l'onglet Intune Remediation, ou importez l'ADMX dans Intune. Intune Remediation
# === Detection script ===
# Exported from gporais.com
# Policy: Configurer les boutons de la barre d’outils
# State: Enabled
# Supported on: Internet Explorer 5.0 et Internet Explorer 6.0 uniquement
# 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\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'SpecifyDefaultButtons' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Back' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Forward' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Stop' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Refresh' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Home' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Search' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Favorites' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_History' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Folders' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Fullscreen' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Tools' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_MailNews' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Size' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Print' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Edit' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Discussions' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Cut' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Copy' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Paste' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Encoding' -Expected 0 -Kind DWord)
)
if ($checks -notcontains $false) {
Write-Output 'Compliant'
exit 0
}
Write-Output 'Non-compliant'
exit 1
# === Remediation script ===
# Exported from gporais.com
# Policy: Configurer les boutons de la barre d’outils
# State: Enabled
# Supported on: Internet Explorer 5.0 et Internet Explorer 6.0 uniquement
# Warning: In SYSTEM context (the Intune default), HKCU targets the SYSTEM profile. Run this script using the logged-on credentials.
$path = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'SpecifyDefaultButtons' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Back' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Forward' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Stop' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Refresh' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Home' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Search' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Favorites' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_History' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Folders' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Fullscreen' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Tools' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_MailNews' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Size' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Print' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Edit' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Discussions' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Cut' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Copy' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Paste' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Encoding' -Value 0 -Type DWord Scripts SCCM
# Exported from gporais.com
# Policy: Configurer les boutons de la barre d’outils
# State: Enabled
# Supported on: Internet Explorer 5.0 et Internet Explorer 6.0 uniquement
# 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: Configurer les boutons de la barre d’outils
# State: Enabled
# Supported on: Internet Explorer 5.0 et Internet Explorer 6.0 uniquement
# 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\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'SpecifyDefaultButtons' -Expected 1 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Back' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Forward' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Stop' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Refresh' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Home' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Search' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Favorites' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_History' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Folders' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Fullscreen' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Tools' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_MailNews' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Size' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Print' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Edit' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Discussions' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Cut' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Copy' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Paste' -Expected 0 -Kind DWord)
(Test-RegistryValue -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer' -Name 'Btn_Encoding' -Expected 0 -Kind DWord)
)
if ($checks -notcontains $false) {
Write-Output 'Compliant'
exit 0
}
Write-Output 'Non-compliant'
exit 1
# === Remediation script ===
# Exported from gporais.com
# Policy: Configurer les boutons de la barre d’outils
# State: Enabled
# Supported on: Internet Explorer 5.0 et Internet Explorer 6.0 uniquement
# Warning: In SYSTEM context (the Intune default), HKCU targets the SYSTEM profile. Run this script using the logged-on credentials.
$path = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer'
New-Item -Path $path -Force | Out-Null
Set-ItemProperty -Path $path -Name 'SpecifyDefaultButtons' -Value 1 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Back' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Forward' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Stop' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Refresh' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Home' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Search' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Favorites' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_History' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Folders' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Fullscreen' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Tools' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_MailNews' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Size' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Print' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Edit' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Discussions' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Cut' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Copy' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Paste' -Value 0 -Type DWord
Set-ItemProperty -Path $path -Name 'Btn_Encoding' -Value 0 -Type DWord Vous construisez une collection multi-paramètres ? Ajoutez ce paramètre et générez des exports combinés (.reg, PowerShell, GPO).