Files
management-scripts/Install-AutodeskDesktopConnector.ps1
T
2023-01-06 13:22:18 -05:00

11 lines
311 B
PowerShell

# Define URL for downloading the installer
$URL = Get-AbsoluteURI -URL 'https://www.autodesk.com/adsk-connect-64?'
# Set the local file name to download to
$FILE = '{0}{1}' -f (GetTempPath),(Split-Path $URL -Leaf)
# Download installer
Download-File -URL $URL -File $FILE
# Install package
Start-Process $FILE