Estoy intentando instalar silenciosamente Adobe Shockwave 12.3.4 usando Slim shockwave.exe
(también he usado el exe de instalación completa) usando PowerShell, eventualmente desplegándolo a través de SCCM una vez terminado.
En este momento, tengo un problema por el que sigo recibiendo un mensaje que me pide que obtenga Norton Security Scan de forma gratuita y no quiero que aparezca este mensaje durante la instalación.
Aquí está el aviso. Estoy abierto a cualquier idea sobre cómo evitar esto.
Aquí está la secuencia de comandos Powershell:
$currentpath = Split-Path $MyInvocation.MyCommand.Definition
$run = 1
#Disable Norton on Install This was used on Adobe Digital Editions to stop a
norton pop-up, but does not help us here
New-Item
'HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\N360'
-Force
do {
if (Get-Process "iexplore" -ErrorAction SilentlyContinue | Where-Object
{-not $_.HasExited }) {
Write-host "quitting"
Start-Sleep -Seconds 20
$run++
}
else {
# Run install and copy config file for updates/settings
Start-Process -FilePath "C:\Windows\system32\msiexec.exe" -ArgumentList
"/i""$($currentpath)\sw_lic_full_installer.msi""/qn" -Wait -PassThru
Start-sleep -Seconds 60
$run=26
}
} While ($run -le 25)
¿Puede incluir el script de PowerShell que está utilizando?
—
mt025
Se ha agregado la secuencia de comandos
—
N.Spiess
¿Descargó el último MSI
—
mt025
https://www.adobe.com/products/shockwaveplayer/distribution3.html
? No recibo el mensaje con el MSI, y recibo un mensaje de Chrome en lugar de uno de Norton en el Slim Exe
Intenté encontrar el MSI por un tiempo sin suerte, por lo que este es definitivamente un gran hallazgo. Gracias.
—
N.Spiess