Hello Everyone,
I'm struggling a lil bit with the "new" : AppProcessesToClose
How it should be formatted?
I was used to :
Show-ADTInstallationWelcome -CloseProcesses @{ Name = 'excel' }, @{ Name = 'groove' }, @{ Name = 'infopath' }, @{ Name = 'onenote' },@{ Name = 'outlook' },@{ Name = 'mspub' },@{ Name = 'powerpnt' },@{ Name = 'winword' },@{ Name = 'winproj' }, @{ Name = 'visio' },@{ Name = 'ucmapi' } -BlockExecution -AllowDefer -DeferTimes 3 -PersistPrompt
But now it seems that we can leverage the AppProcessesToClose, and use:
Show-ADTInstallationWelcome @saiwParams
But, I don't really got how to use it.
i've tried:
AppProcessesToClose = @('name1','name2','name3')
But the framework doesnt start at all - so - I'm doing something wrong.