Product: ProfileUnity-FlexApp
Product Version: 6.8.1 and above
Updated: Nov 09, 2023
Problem:
How do I modify the Startup GPO used for Cloud based desktops when upgrading to newer versions of ProfileUnity
PU will install on desktop which is local or in the cloud (Google, Azure, AWS) on restart.
This is recommended for desktop's using S3 storage.
Resolution
The startup GPO when using cloud based desktops is defined here:
Using Cloud Storage with ProfileUnity
(For devices using cloud storage only.) Assigning the startup script is a bit different for environments using cloud storage. Instead of running the startup script directly, you will need to have PowerShell execute the script. Copy the script and
parameters from below. Click OK and then Apply to save your changes.
For devices using cloud storage script parameters:
Script Name:
powershell.exe
Script Parameters:
(See below for your version)
For newer version of ProfileUnity you will want to edit the existing Startup GPO and modify the version information for the script.
The new information can be found here:
Version | Script Parameters |
6.8.6 R1 |
-ExecutionPolicy Bypass -WindowStyle Hidden -NonInteractive -NoLogo (New-Object System.Net.WebClient).DownloadFile('https://cdn.liquidware.com/6.8.6/ProfileUnity-CloudInstall_6.8.6r1ga3.ps1',$Env:Temp + '\ProfileUnity-CloudInstall.ps1');Invoke-Expression -Command (Join-Path $Env:Temp '\ProfileUnity-CloudInstall.ps1') |
6.8.6 |
-ExecutionPolicy Bypass -WindowStyle Hidden -NonInteractive -NoLogo (New-Object System.Net.WebClient).DownloadFile('https://cdn.liquidware.com/6.8.6/ProfileUnity-CloudInstall_6.8.6ga3.ps1',$Env:Temp + '\ProfileUnity-CloudInstall.ps1');Invoke-Expression -Command (Join-Path $Env:Temp '\ProfileUnity-CloudInstall.ps1') |
6.8.5 R1V2 |
-ExecutionPolicy Bypass -WindowStyle Hidden -NonInteractive -NoLogo (New-Object System.Net.WebClient).DownloadFile('https://cdn.liquidware.com/6.8.5/ProfileUnity-CloudInstall_6.8.5r1b6.ps1',$Env:Temp + '\ProfileUnity-CloudInstall.ps1');Invoke-Expression -Command (Join-Path $Env:Temp '\ProfileUnity-CloudInstall.ps1') |
6.8.5 R1 |
-ExecutionPolicy Bypass -WindowStyle Hidden -NonInteractive -NoLogo (New-Object System.Net.WebClient).DownloadFile('https://cdn.liquidware.com/6.8.5/ProfileUnity-CloudInstall_6.8.5r1b5.ps1',$Env:Temp + '\ProfileUnity-CloudInstall.ps1');Invoke-Expression -Command (Join-Path $Env:Temp '\ProfileUnity-CloudInstall.ps1') |
6.8.5 |
-ExecutionPolicy Bypass -WindowStyle Hidden -NonInteractive -NoLogo (New-Object System.Net.WebClient).DownloadFile('https://cdn.liquidware.com/6.8.5/ProfileUnity-CloudInstall_6.8.5ga2.ps1',$Env:Temp + '\ProfileUnity-CloudInstall.ps1');Invoke-Expression -Command (Join-Path $Env:Temp '\ProfileUnity-CloudInstall.ps1') |
6.8.4 R2 |
-ExecutionPolicy Bypass -WindowStyle Hidden -NonInteractive -NoLogo (New-Object System.Net.WebClient).DownloadFile('https://cdn.liquidware.com/6.8.4/ProfileUnity-CloudInstall_6.8.4r2gab2.ps1',$Env:Temp + '\ProfileUnity-CloudInstall.ps1');Invoke-Expression -Command (Join-Path $Env:Temp '\ProfileUnity-CloudInstall.ps1') |
6.8.4 |
-ExecutionPolicy Bypass -WindowStyle Hidden -NonInteractive -NoLogo (New-Object System.Net.WebClient).DownloadFile('https://cdn.liquidware.com/6.8.4/ProfileUnity-CloudInstall_6.8.4ga4.ps1',$Env:Temp + '\ProfileUnity-CloudInstall.ps1');Invoke-Expression -Command (Join-Path $Env:Temp '\ProfileUnity-CloudInstall.ps1') |
6.8.3 R2 Hotfix (Released 8/5/20) |
-ExecutionPolicy Bypass -WindowStyle Hidden -NonInteractive -NoLogo (New-Object System.Net.WebClient).DownloadFile('https://cdn.liquidware.com/6.8.3R2/ProfileUnity-CloudInstall_6.8.3_R2_Hotfix.ps1',$Env:Temp + '\ProfileUnity-CloudInstall.ps1');Invoke-Expression -Command (Join-Path $Env:Temp '\ProfileUnity-CloudInstall.ps1') Azure GovCloud: |
6.8.2 |
-ExecutionPolicy Bypass -WindowStyle Hidden -NonInteractive -NoLogo (New-Object System.Net.WebClient).DownloadFile('https://cdn.liquidware.com/6.8.2/ProfileUnity-CloudInstall_6.8.2ga1b3.ps1',$Env:Temp + '\ProfileUnity-CloudInstall.ps1');Invoke-Expression -Command (Join-Path $Env:Temp '\ProfileUnity-CloudInstall.ps1') Azure GovCloud: |
6.8.1 | -ExecutionPolicy Bypass -WindowStyle Hidden -NonInteractive -NoLogo (New-Object System.Net.WebClient).DownloadFile('https://cdn.liquidware.com/6.8.1/ProfileUnity-CloudInstall_6.8.1gab4.ps1',$Env:Temp + '\ProfileUnity-CloudInstall.ps1');Invoke-Expression -Command (Join-Path $Env:Temp '\ProfileUnity-CloudInstall.ps1') |