This commit is contained in:
2024-10-17 08:59:07 -04:00
parent 69658a9e6a
commit 75af2ba5c5

View File

@@ -49,10 +49,6 @@ Start-Process "$Temp\vscode.exe" -ArgumentList "/VERYSILENT"
Invoke-WebRequest 'https://download-cdn.resilio.com/stable/windows/64/0/Resilio-Sync_x64.exe' -OutFile "$Temp\rsync.exe"
Start-Process "$Temp\rsync.exe" -ArgumentList "/S"
#Citrix Workspace
Invoke-WebRequest 'https://downloads.citrix.com/22991/CitrixWorkspaceFullInstaller.exe?__gda__=exp=1728489803~acl=/*~hmac=649280a0ec2bd7ec3b0866f52afea2a740ec0c36b74536e5791d01bd2693645d' -OutFile "$Temp\citrix.exe"
Start-Process "$Temp\citrix.exe" -ArgumentList "/S"
#LG Hub
Invoke-WebRequest 'https://download01.logi.com/web/ftp/pub/techsupport/gaming/lghub_installer.exe' -OutFile "$Temp\lghub.exe"
Start-Process "$Temp\lghub.exe" -ArgumentList "--silent"
@@ -93,5 +89,9 @@ Start-Process "$Temp\git.exe" -ArgumentList "/VERYSILENT" -Wait
Invoke-WebRequest 'https://steelseries.com/gg/downloads/gg/latest/windows' -OutFile "$Temp\ssgg.exe"
Start-Process "$Temp\ssgg.exe" -ArgumentList "/S" -Wait
#Citrix Workspace
Invoke-WebRequest 'https://downloads.citrix.com/22991/CitrixWorkspaceFullInstaller.exe?__gda__=exp=1728489803~acl=/*~hmac=649280a0ec2bd7ec3b0866f52afea2a740ec0c36b74536e5791d01bd2693645d' -OutFile "$Temp\citrix.exe"
Start-Process "$Temp\citrix.exe" -ArgumentList "/silent" -Wait
#Cleanup
Remove-Item $Temp -Recurse