Difference between revisions of "Anydesk"
From WPKG | Open Source Software Deployment and Distribution
(Anydesk - remote desktop silent install) |
(No difference)
|
Revision as of 19:10, 26 December 2016
AnyDesk is the fastest remote desktop software on the market.
It allows for new usage scenarios and applications that have not been possible with current remote desktop software.
You need a Professional license to get access to the MSI File. To make it working, just modify the variables "AD-uniqueid" & "AD-password". The AD-uniqueid can be found in the Anydesk directory name after installing it once on a computer. It's located into the "Program Files (x86)" directory.
<?xml version="1.0" encoding="utf-8" ?>
<packages>
<package
id='Anydesk'
name='Anydesk Remote Desktop'
revision="%version%"
reboot="false"
priority="70">
<variable name="version" value="3.0.0" />
<variable name="AD-uniqueid" value="7eddaa00" />
<variable name="AD-password" value="Your-Password" />
<check type="uninstall" condition="exists" path="AnyDesk .+" value="%version%" />
<install cmd='msiexec /qn /norestart /i %SOFTWARE%\Anydesk\AnyDesk.msi' />
<install cmd='%ComSpec% /C echo %AD-password% | "%ProgramFiles(x86)%\AnyDesk-%AD-uniqueid%\AnyDesk-%AD-uniqueid%.exe" --set-password' />
<upgrade include="install" />
<downgrade include="remove" />
<downgrade include="install" />
<remove cmd='wmic product where "name like 'Anydesk%%'" call uninstall' />
</package>
</packages>