Changes
Anydesk
,Anydesk - remote desktop silent install
AnyDesk is the fastest remote desktop software on the market. <br>
It allows for new usage scenarios and applications that have not been possible with current remote desktop software.<br>
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.
<source lang="xml">
<?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>
</source>
[[Category:Silent Installers]]
It allows for new usage scenarios and applications that have not been possible with current remote desktop software.<br>
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.
<source lang="xml">
<?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>
</source>
[[Category:Silent Installers]]