Body
Step 1: Go to \\fileserv\ServiceCenter\Applications\Non-Intune-Compatible-Apps
Step 2: Copy the Examplify folder
Step 3: Paste the Examplify folder to the C:\ Drive
Step 4: Open PowerShell ISE as an Administrator.
Step 5: Click the "Show Script Pane Right"
Step 6: Click the "Show Script Pane Top"
Step 7: Copy the following scripts and paste them in the script pane.
## Change Directory
cd C:\Examplify
## Run the PowerShell script
powershell -ExecutionPolicy Bypass -File .\install.ps1
## Change Directory
cd C:\WINDOWS\system32
## Add a delay to ensure the script has completed
Start-Sleep -Seconds 5
## Stop any processes related to Examplify
Get-Process | Where-Object { $_.Name -like "*Examplify*" } | Stop-Process -Force
## Add a delay to ensure processes have stopped
Start-Sleep -Seconds 5
## Permanently delete the Examplify folder
Remove-Item -Recurse -Force -Confirm:$false C:\Examplify
## Restart the computer
Shutdown /r /t 0
Step 8: Click Run Script or hit F5
Step 9: Install is complete!