Silent Install Shockwave 12.3.4 Without Norton Utilties Popup












2















I am attempting to silently install Adobe Shockwave 12.3.4 using the Slim shockwave.exe(have used the full install exe as well) using PowerShell, eventually deploying it through SCCM once finished.



Right now, I am having an issue where I continue getting a prompt asking to get Norton Security Scan for free and I do not want this prompt to show up at all during the installation.



Here is the prompt. I am open to any ideas on how to avoid this.



Here is the Powershell Script:



$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:SOFTWAREWOW6432NodeMicrosoftWindowsCurrentVersionUninstallN360'
-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:Windowssystem32msiexec.exe" -ArgumentList
"/i""$($currentpath)sw_lic_full_installer.msi""/qn" -Wait -PassThru
Start-sleep -Seconds 60
$run=26
}
} While ($run -le 25)


Norton Prompt










share|improve this question

























  • Are you able to include the PowerShell script you are using?

    – mt025
    Jan 28 at 18:02











  • Script has been added

    – N.Spiess
    Jan 28 at 18:42











  • Did you download the latest MSI from https://www.adobe.com/products/shockwaveplayer/distribution3.html? I'm not getting the prompt with the MSI, and I'm getting a chrome prompt instead of a Norton one on the slim exe

    – mt025
    Jan 28 at 19:02













  • Was trying to find the MSI for awhile with no luck, so this is definitely a great find. Thank you.

    – N.Spiess
    Jan 28 at 20:58
















2















I am attempting to silently install Adobe Shockwave 12.3.4 using the Slim shockwave.exe(have used the full install exe as well) using PowerShell, eventually deploying it through SCCM once finished.



Right now, I am having an issue where I continue getting a prompt asking to get Norton Security Scan for free and I do not want this prompt to show up at all during the installation.



Here is the prompt. I am open to any ideas on how to avoid this.



Here is the Powershell Script:



$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:SOFTWAREWOW6432NodeMicrosoftWindowsCurrentVersionUninstallN360'
-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:Windowssystem32msiexec.exe" -ArgumentList
"/i""$($currentpath)sw_lic_full_installer.msi""/qn" -Wait -PassThru
Start-sleep -Seconds 60
$run=26
}
} While ($run -le 25)


Norton Prompt










share|improve this question

























  • Are you able to include the PowerShell script you are using?

    – mt025
    Jan 28 at 18:02











  • Script has been added

    – N.Spiess
    Jan 28 at 18:42











  • Did you download the latest MSI from https://www.adobe.com/products/shockwaveplayer/distribution3.html? I'm not getting the prompt with the MSI, and I'm getting a chrome prompt instead of a Norton one on the slim exe

    – mt025
    Jan 28 at 19:02













  • Was trying to find the MSI for awhile with no luck, so this is definitely a great find. Thank you.

    – N.Spiess
    Jan 28 at 20:58














2












2








2








I am attempting to silently install Adobe Shockwave 12.3.4 using the Slim shockwave.exe(have used the full install exe as well) using PowerShell, eventually deploying it through SCCM once finished.



Right now, I am having an issue where I continue getting a prompt asking to get Norton Security Scan for free and I do not want this prompt to show up at all during the installation.



Here is the prompt. I am open to any ideas on how to avoid this.



Here is the Powershell Script:



$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:SOFTWAREWOW6432NodeMicrosoftWindowsCurrentVersionUninstallN360'
-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:Windowssystem32msiexec.exe" -ArgumentList
"/i""$($currentpath)sw_lic_full_installer.msi""/qn" -Wait -PassThru
Start-sleep -Seconds 60
$run=26
}
} While ($run -le 25)


Norton Prompt










share|improve this question
















I am attempting to silently install Adobe Shockwave 12.3.4 using the Slim shockwave.exe(have used the full install exe as well) using PowerShell, eventually deploying it through SCCM once finished.



Right now, I am having an issue where I continue getting a prompt asking to get Norton Security Scan for free and I do not want this prompt to show up at all during the installation.



Here is the prompt. I am open to any ideas on how to avoid this.



Here is the Powershell Script:



$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:SOFTWAREWOW6432NodeMicrosoftWindowsCurrentVersionUninstallN360'
-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:Windowssystem32msiexec.exe" -ArgumentList
"/i""$($currentpath)sw_lic_full_installer.msi""/qn" -Wait -PassThru
Start-sleep -Seconds 60
$run=26
}
} While ($run -le 25)


Norton Prompt







windows windows-10 powershell






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 28 at 18:41







N.Spiess

















asked Jan 28 at 17:31









N.SpiessN.Spiess

112




112













  • Are you able to include the PowerShell script you are using?

    – mt025
    Jan 28 at 18:02











  • Script has been added

    – N.Spiess
    Jan 28 at 18:42











  • Did you download the latest MSI from https://www.adobe.com/products/shockwaveplayer/distribution3.html? I'm not getting the prompt with the MSI, and I'm getting a chrome prompt instead of a Norton one on the slim exe

    – mt025
    Jan 28 at 19:02













  • Was trying to find the MSI for awhile with no luck, so this is definitely a great find. Thank you.

    – N.Spiess
    Jan 28 at 20:58



















  • Are you able to include the PowerShell script you are using?

    – mt025
    Jan 28 at 18:02











  • Script has been added

    – N.Spiess
    Jan 28 at 18:42











  • Did you download the latest MSI from https://www.adobe.com/products/shockwaveplayer/distribution3.html? I'm not getting the prompt with the MSI, and I'm getting a chrome prompt instead of a Norton one on the slim exe

    – mt025
    Jan 28 at 19:02













  • Was trying to find the MSI for awhile with no luck, so this is definitely a great find. Thank you.

    – N.Spiess
    Jan 28 at 20:58

















Are you able to include the PowerShell script you are using?

– mt025
Jan 28 at 18:02





Are you able to include the PowerShell script you are using?

– mt025
Jan 28 at 18:02













Script has been added

– N.Spiess
Jan 28 at 18:42





Script has been added

– N.Spiess
Jan 28 at 18:42













Did you download the latest MSI from https://www.adobe.com/products/shockwaveplayer/distribution3.html? I'm not getting the prompt with the MSI, and I'm getting a chrome prompt instead of a Norton one on the slim exe

– mt025
Jan 28 at 19:02







Did you download the latest MSI from https://www.adobe.com/products/shockwaveplayer/distribution3.html? I'm not getting the prompt with the MSI, and I'm getting a chrome prompt instead of a Norton one on the slim exe

– mt025
Jan 28 at 19:02















Was trying to find the MSI for awhile with no luck, so this is definitely a great find. Thank you.

– N.Spiess
Jan 28 at 20:58





Was trying to find the MSI for awhile with no luck, so this is definitely a great find. Thank you.

– N.Spiess
Jan 28 at 20:58










0






active

oldest

votes











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1399351%2fsilent-install-shockwave-12-3-4-without-norton-utilties-popup%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Super User!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1399351%2fsilent-install-shockwave-12-3-4-without-norton-utilties-popup%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Index of /

Tribalistas

Listed building