install-vmwworkstation.ps1
<#PSScriptInfo .VERSION 2.1 .GUID 20ee6b60-98a5-4519-9b4e-3872142b9df6 .AUTHOR Karsten.Bott@labbuildr.com .COMPANYNAME .COPYRIGHT .TAGS .LICENSEURI .PROJECTURI .ICONURI .EXTERNALMODULEDEPENDENCIES .REQUIREDSCRIPTS .EXTERNALSCRIPTDEPENDENCIES .RELEASENOTES #> <# .DESCRIPTION This script is a helper to download and kick installation of vmware-workstation #> Param() $Destination = "$HOME/Downloads" try { Start-BitsTransfer "http://www.vmware.com/go/tryworkstation-win" -Description "Downloding Workstation" -Destination $Destination -TransferType Download } catch { write-host "Error Occured" } $Received_file = get-item "$Destination/tryworkstation-win" write-host "Received VMware Workstation $($Received_file.VersionInfo.FileVersion)" Rename-Item "$Destination/tryworkstation-win" "$Destination/workstation-win-$($Received_file.VersionInfo.FileVersion).exe" Start-Process -FilePath "$Destination/workstation-win-$($Received_file.VersionInfo.FileVersion).exe" -Wait |