Symptom:
If you are using a thin client with a RAM drive, with a letter different than C: , it could happen that you will be running out of memory.
If that happens the software package deployed from the Management Console will fail the installation, even though it seems that the
installation was performed.
Resolution:
Change the VBScript in the package you want to deploy with something like this :
On Error Resume Next
Set objShell = CreateObject("WScript.Shell")
Set objProcessVars = objShell.Environment("process")
objProcessVars("TEMP") = "C:\Temp"
objProcessVars("TMP") = "C:\Temp"
objShell.Run "YOURAPP.exe /silent", 0, True
WScript.Quit()
Applies to :
All version of ThinKiosk
Credit: Daniel V.