静默安装 Shockwave 12.3.4(无 Norton Utilties 弹出窗口)

静默安装 Shockwave 12.3.4(无 Norton Utilties 弹出窗口)

我正在尝试使用 Slim shockwave.exe(也使用了完整的安装 exe)通过 PowerShell 静默安装 Adob​​e Shockwave 12.3.4,最终在完成后通过 SCCM 进行部署。

现在,我遇到一个问题,我不断收到要求免费获取 Norton Security Scan 的提示,并且我不希望在安装过程中出现此提示。

这是提示。我愿意听取任何关于如何避免这种情况的想法。

以下是 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)

诺顿提示

相关内容