MakoLogics Posted May 2, 2023 Share Posted May 2, 2023 (edited) 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, 2023 by MakoLogics Link to comment Share on other sites More sharing options...
dnelson Posted May 3, 2023 Share Posted May 3, 2023 This functionality is included within 3rd party patch management in the form of Custom Titles. Link to comment Share on other sites More sharing options...
MakoLogics Posted May 4, 2023 Author Share Posted May 4, 2023 (edited) 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, 2023 by MakoLogics Link to comment Share on other sites More sharing options...
DonatoM3 Posted May 7, 2023 Share Posted May 7, 2023 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. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now