Super LTI is a one click install wrapper powered by PowerShell.
SuperLTI.zip
.C:\SuperLTI\*
C:\SuperLTI\
C:\SuperLTI\SuperLTI.ps1
Write-Progress
cmdlet to update SuperLTI's GUI with new information.C:\SuperLTI\
directory.Because MDT (Microsoft Deployment Toolkit) sucks when working with powershell. And random scripts all over the Deployment Share's software folder can begin to get messy. This makes it hard to determine what PowerShell files need to be run and if they need elevation or not.
1. Download SuperLTI.exe
2. Create a PS1 file named SuperLTI.ps1
3. Create a script that does a thing like so:
Example:
Tip: Use the "Write-Progress" function as shown above to display a progress indicator in the SuperLTI window.
4. Test the script then copy the files in your package into a ZIP file named SuperLTI.zip
Example:
5. Test the package as a whole by running the SuperLTI.exe
. Make sure both the SuperLTI.exe and SuperLTI.zip files are in the same working directory.
Demonstration:
SuperLTI.exe is able to pass command line parameters to the SuperLTI.ps1 PowerShell script. Below is an example on how to pass the parameters.
SuperLTI.ps1:
Write-Progress -Activity "Demo" -PercentComplete 50 -Status $Hello
Start-Sleep -Seconds 3
Command Line:
C:\> SuperLTI.exe Hello World