# install EnhanceIE $regpath="HKLM:SOFTWARE\Microsoft\Active Setup\Installed Components\EnhanceIE001" New-Item -Path $regpath -ErrorAction SilentlyContinue; New-ItemProperty -Path $regpath -Name Dontask -PropertyType DWord -Value 2 -ErrorAction SilentlyContinue; New-ItemProperty -Path $regpath -Name IsInstalled -PropertyType DWord -Value 1 -ErrorAction SilentlyContinue; New-ItemProperty -Path $regpath -Name Version -PropertyType String -Value 1 -ErrorAction SilentlyContinue; New-ItemProperty -Path $regpath -Name StubPath -PropertyType String -Value "Powershell.exe -ExecutionPolicy ByPass -NoProfile -WindowStyle Hidden -File C:\Windows\EnhanceIE.ps1" -ErrorAction SilentlyContinue;