You are here

Deploying PortableApps via PowerShell

1 post / 0 new
roysubs
Offline
Last seen: 1 year 6 months ago
Joined: 2022-10-05 07:22
Deploying PortableApps via PowerShell

I notice that PortableApps executable containers can simply be unzipped, but also possibly there are switches to do it according to your standards, so I would like know the best way to do this in PowerShell. i.e. I want to *silently* deploy some app:

$7z = "D:\MyDownloads\7zipPortable.exe"
if (Test-Path $7z) { & $7z [whatever-switches-required] [install-directory-of-my-choice] }

Would appreciate any advice on the correct / most efficient way to do this for multiple packages?