I'm looping through .exe files in a directory and extracting the .msp files.
Ideally it would happen silently.
This batch file command works perfectly.
for %%g in ("C:\test\"*.exe) do %%g /quiet /extract:"C:\test"
This powershell script almost gets it done.
$exeFiles = Get-ChildItem -path $directory -recurse -include *.exe
foreach($file in $exeFiles)
{
$appArgs = '/quiet /extract:"' + $directory + '"'
Start-Process $exeFiles $appArgs -PassThru | Wait-Process
}
However, Windows 7 throws up the "Do you want to run this file?" dialog.
How do I make the powershell truly silent?