Skip to main content
Solved

worklet install help

  • July 26, 2023
  • 1 reply
  • 71 views

Forum|alt.badge.img

I am trying to make worklet to install 3 cisco products and only first one gets installed, I believe I am missing something on the remediation code to make all 3 install 

 

Evaluation Code

1 exit

 

Remediation Code

Start-Process msiexec.exe '/I cisco1.msi /quiet /norestart /passive'
Start-Process msiexec.exe '/I cisco2.msi /norestart /passive  '
Start-Process msiexec.exe '/I cisco3.msi /quiet /norestart /passive '

 

 

Best answer by AnthonyM-Automox

Good afternoon @curioustoknow !

 

Your issue is likely overlapping MSI installs - if you send Start-Process without the -Wait switch, the script will proceed and attempt all three installations in quick succession!

 

This should help:

$installers = ‘cisco1.msi’, ‘cisco2.msi’, ‘cisco3.msi’



foreach ( $installer in $installers )

{

    Start-Process -FilePath ‘msiexec.exe’ -ArgumentList ‘/i’, $installer, ‘/qn’, ‘/norestart’, ‘/passive’ -Wait

}

Let me know if you have any trouble.

 

- Anthony M.

View original
How helpful was this post to you?

1 reply

AnthonyM-Automox

Good afternoon @curioustoknow !

 

Your issue is likely overlapping MSI installs - if you send Start-Process without the -Wait switch, the script will proceed and attempt all three installations in quick succession!

 

This should help:

$installers = ‘cisco1.msi’, ‘cisco2.msi’, ‘cisco3.msi’



foreach ( $installer in $installers )

{

    Start-Process -FilePath ‘msiexec.exe’ -ArgumentList ‘/i’, $installer, ‘/qn’, ‘/norestart’, ‘/passive’ -Wait

}

Let me know if you have any trouble.

 

- Anthony M.


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings