Hi,
I would like to install chocolatey packages (OneGet) via Autoit.
Manually without Autoit I would just open Powershell and use this command:
Install-Package -Name Firefox -Force
It also works with cmd (see attachment 1)
powershell.exe -Command Install-Package -Name Firefox -Force
With Autoit I tried the following code:
RunWait(@ComSpec & ' /k ' & 'powershell.exe -Command Install-Package -Name Firefox -Force', @SW_SHOW)
It doesnt work at all. I don't even see a cmd window.
When I add @SystemDir the Windows appears with the error in attechment 2.
Is there another way to run PowerShell Commands with Autoit?
I would like to avoid starting Powershell, waiting for the window, sending the command and sending Enter.
Thanks
Eggsplorer