How to Install Examplify

Summary

How to install Examplify.

Body

Step 1: Go to \\fileserv\ServiceCenter\Applications\Non-Intune-Compatible-Apps

Uploaded Image (Thumbnail)

Step 2: Copy the Examplify folder

Uploaded Image (Thumbnail)

Step 3: Paste the Examplify folder to the C:\ Drive​​​​​​​

Uploaded Image (Thumbnail)

Step 4: Open PowerShell ISE as an Administrator.​​​​​​​

Uploaded Image (Thumbnail)

Step 5: Click the "Show Script Pane Right"​​​​​​​

Uploaded Image (Thumbnail)

Step 6: Click the "Show Script Pane Top"​​​​​​​

Uploaded Image (Thumbnail)

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​​​​​​​​​​​​​​

Uploaded Image (Thumbnail)

Step 8: Click Run Script or hit F5​​​​​​​

Uploaded Image (Thumbnail)

Step 9: Install is complete!

Details

Details

Article ID: 15871
Created
Thu 11/14/24 8:50 AM
Modified
Thu 11/14/24 8:50 AM