Posted May 2, 20232 yr Good morning, I was wondering if anyone has a solution for Pulseway to install .exe files to remote clients. We need to push Screen Connect and Malwarebytes Enterprise to some of our clients with the Pulssway client installed. Â The Screen Connect tool is great because it allows you to directly upload the .exe to the SC server and then push it out to any machine with the SC client. I hope Pulseway implements this soon. Edited May 2, 20232 yr by MakoLogics
May 3, 20231 yr This functionality is included within 3rd party patch management in the form of Custom Titles.
May 4, 20231 yr Author Not really, I need the ability to upload to Pulseway to push out the .exe to specific clients like Screen Connect. 3rd Party patching is limited and they bill you for that service when there are way better options. Edited May 4, 20231 yr by MakoLogics
May 7, 20231 yr Couldn't you do this with a script in automation? Something like this $url = "https://example.com/file.exe" $output = "C:\Temp\file.exe" Invoke-WebRequest -Uri $url -OutFile $output Start-Process -FilePath $output -ArgumentList "/S" -Wait When the new device cards come out you'll be able to run your scripts right from the remote agent as well as the web ui. Plus doing it as a script you could even build in variables into the url or the arguments if you need to apply different files for different clients.
Create an account or sign in to comment