Archive

Posts Tagged ‘faronics-deepfreeze’

Deepfreeze rebooting the lab computers again during use

  1. I have been told that Deepfreeze will reboot lab computers (hourly?) only when they are idle (on login screen).
  2. However,  I have observed the unsolicited reboot also when trying to work with these computers.
  3. Today, I had both lab computers that I was working on with the Sanako , reboot in the middle of my testing, with the 1 minute warning dialogue. CAM04314
  4. Will pressing “cancel” prevent this, especially during high-stakes writing and speaking  assessments with the Sanako? What if the users misses it (we sometimes deliberately have the screens blocked/blacked out during parts of classes).

More unsolicited Deepfreeze system reboots in the middle of working?

What gives? 20130702_170132

Deepfreeze still rebooting computers in scheduled maintenance

PC47.

How to check for “lost trust” issues on LRC PCs before classes

  1. We experience computers that fail allowing students to log in, thus disrupting face-to-face classes in the LRC.
    1. We have found no diagnostic tool working, other than attempting to log into the machine.
    2. Current workaround is manually removing and adding them back to the domain, when students experience login issues – which is time consuming, certainly too time-consuming during classes.
  2. Suggested workaround Checklist, to be run before any class in the LRC (check calendar):
    1. Student staff
      1. logs in on each individual computer and notes failures (
      2. this could be accelerated by using mstsc, especially with remote desktop connection manager and lrc.rdg) on the reception desk computers
      3. do we have automated (scriptable) login options?
    2. Coordinator
      1. from Deepfreeze-console, unfreezes computers in question
      2. from Symantec Ghost Console image
        1. puts computers in question into domain-issues folder
        2. runs tasks against this folder
          1. “remove from domain”
          2. “add to Domain&AD”
      3. from Deepfreeze-console, freezes computers in question

Delete the Flash Global Settings if the iMacs webcam displays black frame only

  1. Problem: Safari and (not recommended after last testing round) Firefox both hung on iMAC6 when a student tried to do a Moodle Kaltura Webcam assignment and got to the built-in ISight camera display page.
  2. Cause: maybe a Flash security problem accessing the web cam? maybe security dialogue was not answered by the student correctly earlier, and the “preference”stored in her account?
    1. Solution (presumably): System started working again after I deleted the Flash Global settings, by right-clicking on the webcam video preview window like so: CIMG0020
  3. imageimage

  4. Ceterum censeo that we need a computer management infrastructure if we want to use MACs for language learning technology. Faronics-Deepfreeze would have prevented this problem, provided we have a software imaging system (CASPER coming up apparently) that can let us start with a usable image, and the staff time to learn and configure 2 usable OS images and dual usable computer management infrastructures. TCO now > TCO dual OS infrastructure > TCO web cams for 45 PCs. 

Deepfreeze console select clients oddities

  1. Problem: You lose most context menu options if you select a series of clients in deepfreeze console with shift-click, then exclude from selection non-working client: image
  2. Cause: Bug in Faronics-Deepfreeze (ver 7.21 etc. here)?
  3. Workaround: If you select your longest list of working clients with shift-click, skip the non—working client, and add to the list with control-click, you still get the full context menu:
  4. image

More ways of making minor changes to a domain-joined, deepfrozen computer lab image

  1. Re-imaging a domain-joined, deep-frozen Windows XP language lab using Symantec Ghost and Deepfreeze can be a drawn-out process.
  2. Minor fixes can be achieved by unfreezing and using a Symantec-Ghost file task and a script that loads  the default user registry hive – here is how:
  3. sTempHive = """HKEY_USERS\Test"""
    
    '//vista and up: sDefaultUserHive = """%USERPROFILE%\..\Default\NTUSER.DAT"""
    
    sDefaultUserHive = """%USERPROFILE%\..\Default User\NTUSER.DAT"""
    
    sSName = oUtility.ScriptName
    
    set oShell = WScript.CreateObject ("Wscript.Shell")
  4. and alters it before freezing the lab again. Here are some examples of such fixes:
    1. change the default keyboard (after users logs in):
      oLogging.CreateEntry sSName & ": Setting US-International as Default Keyboard Layout",LogTypeInfo
      
      RegPath = "HKEY_USERS\Test\Keyboard Layout\Substitutes\"
      
      oshell.RegWrite Regpath & "00000409", "00020409", "REG_SZ"
      
      If Err<>0 Then 
      
        oLogging.CreateEntry sSName & ": Failed to update Default Keyboard Layout setting",LogTypeError
      
        ZTIProcess=60
      
        Exit Function
      
      End If
      
      
      
    2. change visibility of the developer tab in the ribbon of MS-Word:
      oLogging.CreateEntry sSName & ": Setting MS-Word Developer Toolbar to show",LogTypeInfo
      
      RegPath = "HKEY_USERS\Test\Software\Microsoft\Office\14.0\Word\Options\"
      
      oshell.RegWrite Regpath & "DeveloperTools", "1", "REG_SZ"
      
      If Err<>0 Then 
      
        oLogging.CreateEntry sSName & ": Failed to update S-word developer tools settings",LogTypeError
      
        ZTIProcess=40
      
        Exit Function
      
      End If
      
      
      
    3. change the SDL-Trados licensing server IP:
      oLogging.CreateEntry sSName & ": Setting Default User Trados license server",LogTypeInfo
      
      RegPath = "HKEY_USERS\Test\Software\Trados\Shared\Licence"
      
      oshell.RegWrite Regpath & "Licence_file", "27000@10.18.189.231", "REG_SZ"
      
      If Err<>0 Then 
      
        oLogging.CreateEntry sSName & ": Failed to update Default User Trados license server setting",LogTypeError
      
        ZTIProcess=35
      
        Exit Function
      
      End If
      
      
      
      oLogging.CreateEntry sSName & ": Setting Default User Screensaver timeout settings",LogTypeInfo
      
      RegPath = "HKEY_LOCAL_MACHINE\SOFTWARE\FLEXlm License Manager"
      
      oshell.RegWrite Regpath & "Trados_License_File", "27000@10.18.189.231;27000@xlcs4sbynj1www", "REG_SZ"
      
      If Err<>0 Then 
      
        oLogging.CreateEntry sSName & ": Failed to update Screensaver to timeout settings",LogTypeError
      
        ZTIProcess=30
      
        Exit Function
      
      End If
      
      
      
  5. On Ghost:
    1. We create a Ghost file task that points to the wsf file with the current changes we want to implement:
    2. imageimage 
      1. image To apply other changes, just change the filename of your script , e.g.: clip_image001
    3. to apply to other computers, just change the target in the ghost task.
  6. Output:
    1. image
    2. These scripts use the ZTIUtility.vbs from the MDT.
      1. You may have to update the location: <script language="VBScript" src="ZTIUtility.vbs"/>.
      2. For a while, the logging success made me believe I I had accessed the ntuser.dat and had run into registry permission settings loading it. In fact, I just did not resolve to the XP path of the ntuser.dat. Take advantage of the the logging facilities that come with MDT: Here are your logs on the client: image.
      3. Read the logs with TRACE32, part of the SMS 2003 Toolkit 2.
  7. Result: Provided the client has been cleanly frozen, and the domain user has no profile created before on this machine, and his profile is based on the altered default user profile, his HKCU will inherit the changes: image image

Protected: How to boot to thawed or frozen, using Symantec-Ghost file action or Deepfreeze proper

2012/03/01 Enter your password to view comments.

This content is password protected. To view it please enter your password below: