Pure MSP Ltd Posted April 11, 2018 Posted April 11, 2018 Hi. I'm migrating from another RMM, and was wondering if someone could assist in creating a job on the current RMM, that will "silently" install Pulseway agent onto the machines for me?
Administrators Paul Posted April 11, 2018 Administrators Posted April 11, 2018 Hi there, Have you tried our Discovery and Deployment feature? -Paul
Pure MSP Ltd Posted April 11, 2018 Author Posted April 11, 2018 17 minutes ago, Paul said: Hi there, Have you tried our Discovery and Deployment feature? -Paul Probably about 50% aren't on a domain, and some are small businesses, with just a few machines.
Pure MSP Ltd Posted April 11, 2018 Author Posted April 11, 2018 Think I've got it.. $path = "c:\DIRECTORY" If(!(test-path $path)) { New-Item -ItemType Directory -Force -Path $path } $url = "https://www.pulseway.com/download/Pulseway_x64.msi" $output = "C:\DIRECTORY\pulseway.msi" (New-Object Net.WebClient).DownloadFile($url, $output) start-process -FilePath 'c:\DIRECTORY\pulseway.msi' -ArgumentList '/qn username=PULSEWAYUSER password=PULSEWAYPASSWORD group="GROUIP NAME" server=PULSEWAY-ENT-SERVERNAME' -wait
Pure MSP Ltd Posted April 13, 2018 Author Posted April 13, 2018 Or for CMD CLI cd \ mkdir tempfile bitsadmin /transfer mydownloadjob /download /priority normal https://www.pulseway.com/download/Pulseway_x64.msi c:\tempfile\pulseway.msi pulseway.msi /qn username=USERNAME password=PASSWORD group="GROUP NAME" server=ENT-SERVER
Staff Chris Posted April 18, 2018 Staff Posted April 18, 2018 Hi, If you have access to the remote machine, then this could be done much simpler: msiexec /i https://www.pulseway.com/download/Pulseway_x64.msi /qn /ALLUSERS=1 username=UUU password=PPP group=GGG server=SSS /L*v PulsewayInstall.log This is for debugging purposes: /L*v PulsewayInstall.log Also, you can use psexec to install the Pulseway agent remotely: psexec \\ip-address /accepteula -u "username" -p "password" -s msiexec /i https:\\www.pulseway.com\download\Pulseway_x64.msi /qn ALLUSERS=1 username="pulseway username" password="pulseway password" group="GGG GGG" server="SSSS" Or you can try to import the config file which was exported from another Pulseway agent (I havent tried to use the HTTPS links to accomplish this): msiexec /I "Pulseway_x64.msi" /qb config=PulsewayDef.pcmcfg configpassword="PASSWORD" Please let me know how it goes. alliedvoa 1
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