ScreenConnect / ConnectWise Control: Difference between revisions

From SWKLS WIKI
Jump to navigation Jump to search
(Created page with "==Installation== ===Remote Install Via Powershell=== Create a new .msi build within the SCX web interface: scx_build_example.png Copy the link for the build rather than downlo...")
 
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
==Installation==
==Installation==
===Remote Install Via Powershell===
===Remote Install Via Powershell===
Create a new .msi build within the SCX web interface:
* Create a new .msi build within the SCX web interface:
scx_build_example.png
[[File:Scx build example.png|frame|none|screenconnect build example]]
Copy the link for the build rather than downloading it.
<br />
Within a PowerShell session on the target machine, download the client .msi:
* Copy the link for the build rather than downloading it.
<syntaxhighlight lang:"powershell" line start="1">
* Within a PowerShell session on the target machine, download the client .msi:
<syntaxhighlight lang="powershell">
Invoke-WebRequest -Uri "http://remote.swkls.org:8040/Bin/ConnectWiseControl.ClientSetup.msi?h=remote.swkls.org&p=8041&k=BgIAAACkAABSU0ExAAgAAAEAAQC7vT5LdxskCMlIUU%2FY%2FUSwvNHSJbIiPrmWdZT9%2BmguIJ1ywPNp0yLA%2BeIPhWKmdy4663xOf8Is8EIek8ZS%2Fw03DRy0mRyZOmmGr4%2FMx04lbKljdCds08jvM9R%2FOllwt3rCgsU7vAuBp8IAAfutROa4nw%2F1tMXu72sumIgldxtDL149%2FWzelyQxELFVjRNtIru9JfiwbBumuhyg2gn8mrxVKlAU1rI5jkqZewN9shdILI%2BIWkHaozSXyfk3V1Ul1%2BNGb6MjvkbA5ZaejXU5r6AuKGPBvFUpOQ4SzwYk04XPXFEUsA7QqHu4b%2BkJQXlqfJsgiXagtNC2%2FQy94TNO3fug&e=Access&y=Guest&t=&c=&c=&c=&c=&c=&c=&c=&c=" -OutFile "C:\ConnectWiseControl.ClientSetup.msi"
Invoke-WebRequest -Uri "http://remote.swkls.org:8040/Bin/ConnectWiseControl.ClientSetup.msi?h=remote.swkls.org&p=8041&k=BgIAAACkAABSU0ExAAgAAAEAAQC7vT5LdxskCMlIUU%2FY%2FUSwvNHSJbIiPrmWdZT9%2BmguIJ1ywPNp0yLA%2BeIPhWKmdy4663xOf8Is8EIek8ZS%2Fw03DRy0mRyZOmmGr4%2FMx04lbKljdCds08jvM9R%2FOllwt3rCgsU7vAuBp8IAAfutROa4nw%2F1tMXu72sumIgldxtDL149%2FWzelyQxELFVjRNtIru9JfiwbBumuhyg2gn8mrxVKlAU1rI5jkqZewN9shdILI%2BIWkHaozSXyfk3V1Ul1%2BNGb6MjvkbA5ZaejXU5r6AuKGPBvFUpOQ4SzwYk04XPXFEUsA7QqHu4b%2BkJQXlqfJsgiXagtNC2%2FQy94TNO3fug&e=Access&y=Guest&t=&c=&c=&c=&c=&c=&c=&c=&c=" -OutFile "C:\ConnectWiseControl.ClientSetup.msi"
</syntaxhighlight>
</syntaxhighlight>
Run in .msi:
* Run in .msi:
<syntaxhighlight lang="powershell" line start="1">
<syntaxhighlight lang="powershell">
msiexec.exe /i ConnectWiseControl.ClientSetup.msi /quiet /qn
msiexec.exe /i ConnectWiseControl.ClientSetup.msi /quiet /qn
</syntaxhighlight>
</syntaxhighlight>


[[Category:Windows]]
[[Category:Windows]]

Latest revision as of 18:36, 2 February 2021

Installation

Remote Install Via Powershell

  • Create a new .msi build within the SCX web interface:
screenconnect build example


  • Copy the link for the build rather than downloading it.
  • Within a PowerShell session on the target machine, download the client .msi:
Invoke-WebRequest -Uri "http://remote.swkls.org:8040/Bin/ConnectWiseControl.ClientSetup.msi?h=remote.swkls.org&p=8041&k=BgIAAACkAABSU0ExAAgAAAEAAQC7vT5LdxskCMlIUU%2FY%2FUSwvNHSJbIiPrmWdZT9%2BmguIJ1ywPNp0yLA%2BeIPhWKmdy4663xOf8Is8EIek8ZS%2Fw03DRy0mRyZOmmGr4%2FMx04lbKljdCds08jvM9R%2FOllwt3rCgsU7vAuBp8IAAfutROa4nw%2F1tMXu72sumIgldxtDL149%2FWzelyQxELFVjRNtIru9JfiwbBumuhyg2gn8mrxVKlAU1rI5jkqZewN9shdILI%2BIWkHaozSXyfk3V1Ul1%2BNGb6MjvkbA5ZaejXU5r6AuKGPBvFUpOQ4SzwYk04XPXFEUsA7QqHu4b%2BkJQXlqfJsgiXagtNC2%2FQy94TNO3fug&e=Access&y=Guest&t=&c=&c=&c=&c=&c=&c=&c=&c=" -OutFile "C:\ConnectWiseControl.ClientSetup.msi"
  • Run in .msi:
msiexec.exe /i ConnectWiseControl.ClientSetup.msi /quiet /qn