20 lines
836 B
PowerShell
20 lines
836 B
PowerShell
|
|
# This is the URL for retreving the latest version of the specified installer
|
|
# Trying to query this URL directly no longer works now that CloudFlare is blocking script access
|
|
# It does, however, work in the browser to retrieve the direct download link
|
|
# https://www.sketchup.com/sketchup/2023/SketchUpPro-exe
|
|
|
|
# Define URL for downloading the installer
|
|
$URL = 'https://download.sketchup.com/SketchUpStudio-2023-1-340-117.exe'
|
|
|
|
# TODO: Uninstall all versions of SketchUp
|
|
#'SketchUp 2019', 'SketchUp 2020', 'SketchUp 2021', 'SketchUp 2022', 'SketchUp 2023', 'SketchUp Viewer' | Uninstall-MSI
|
|
|
|
# Set the local file name to download to
|
|
$FILE = '{0}{1}' -f (Get-TempPath),(Split-Path $URL -Leaf)
|
|
|
|
# Download installer
|
|
$FILE = Download-File -URL $URL -File $FILE
|
|
|
|
# Install package
|
|
Install-Program -Path $FILE -Arguments "/silent" -Delete |