Automatic installation of windows software with one click. scripts: VLC
url = "http://download.videolan.org/pub/videolan/vlc/last/win64/"
website = downloadHTML("http://download.videolan.org/pub/videolan/vlc/last/win64/")
version = website.searchRegex("vlc-(.)*-win64.msi")
file = download(url + "vlc-" + version + "-win64.msi")
run(file" /quiet")
Firefox
file = download("https://download.mozilla.org/?product=firefox-msi-latest-ssl&os=win64&lang=de")
run(file + "/quiet")