Archive
Archive for the ‘technology-domains-is-any’ Category
Friendly RUSSIAN chapter 5-3 Grammar 1
2012/10/05
Leave a comment
Categories: e-languages, Grammars, Russian
No audio on listening stations and group rooms, and workaround
2012/09/26
Leave a comment
- Symptom: Headsets work (test feedback by putting microphone near headset speakers), but audio files from internet do not play with sound.
- Cause: having to support 2 different kinds of headsets (USB with built-in soundcard versus traditional analog) in one PC software image.
- The workaround
- for temp staff is to start / run / sndvol32.exe and up the low volume sliders here:

- for permanent staff is to unfreeze any computers that have been missed previously
and put this script into the all users startup folder now: 
- The solution: standardize on USB headsets when you get a chance.
Categories: audience-is-language-learning-center-staff, audience-is-language-learning-center-temp-staff, e-infrastructure, Institution-is-University-of-North-Carolina-Charlotte, Listening-Stations, service-is-it-managing, service-is-testing-troubleshooting-debugging, small-group-work-spaces
audio, FAQs
How to use archive.org’s US-English news collection as a language learning corpus with QUIK-like speaking samples
2012/09/25
Leave a comment
- Much of TV news nowadays seems to amount to not much more than a constant stream of sound bites – however, exactly this brevity,
- the large archive and simple search interface:

- the research/browsing capabilities visible on the left here, including the varied sources – of which Arabic and French and other European TV likely provide a somewhat different perspectives on Edward Snowden –

- and the caption-like transcription, make it all the more accessible for intermediate learners of English.

- video clips of only 30 seconds length is hardly enough for instruction, however, you can have students work with corpus-QUIK-like spoken samples, and have them string a news history together if you design webquest-like research assignments – with the major added benefits, that this corpus is spoken and trains listening.
- For more background info on archive.org’s transcribed TV news, consult this NYTimes article.
Categories: Corpus-linguistics, e-languages, English, learning-materials, Listening, websites
archive.org, news, spoken, tv
Protected: How to share Exchange room and resource mailbox calendars
2012/09/25
Enter your password to view comments.
Video quizzes on Youtube.com in Beta
2012/09/23
Leave a comment
Video Questions Editor lets channel owners display multiple-choice questions on top of their videos as they play (I see only a “start” in the timeline), offer hints, get results on your feedback page.
But if it supports only summaries, not usernames, it is more a poll than a quiz, which limits it usefulness in foreign language classes as much as that you apparently are limited to your own uploads, and cannot link your questions to the wealth of foreign language video uploaded by others…
Deepfreeze console select clients oddities
2012/09/21
Leave a comment
- 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:

- Cause: Bug in Faronics-Deepfreeze (ver 7.21 etc. here)?
- 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:

Categories: e-infrastructure, Glitches&Errors
faronics-deepfreeze
More ways of making minor changes to a domain-joined, deepfrozen computer lab image
2012/09/21
Leave a comment
- Re-imaging a domain-joined, deep-frozen Windows XP language lab using Symantec Ghost and Deepfreeze can be a drawn-out process.
- 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:
-
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")
- and alters it before freezing the lab again. Here are some examples of such fixes:
- change the default keyboard (after users logs in):
oLogging.CreateEntry sSName & ": Setting US-International as Default Keyboard Layout",LogTypeInfoRegPath = "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",LogTypeErrorZTIProcess=60
Exit Function
End If
- change visibility of the developer tab in the ribbon of MS-Word:
oLogging.CreateEntry sSName & ": Setting MS-Word Developer Toolbar to show",LogTypeInfoRegPath = "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",LogTypeErrorZTIProcess=40
Exit Function
End If
- change the SDL-Trados licensing server IP:
oLogging.CreateEntry sSName & ": Setting Default User Trados license server",LogTypeInfoRegPath = "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",LogTypeErrorZTIProcess=35
Exit Function
End If
oLogging.CreateEntry sSName & ": Setting Default User Screensaver timeout settings",LogTypeInfoRegPath = "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",LogTypeErrorZTIProcess=30
Exit Function
End If
- change the default keyboard (after users logs in):
- On Ghost:
- We create a Ghost file task that points to the wsf file with the current changes we want to implement:

- to apply to other computers, just change the target in the ghost task.
- Output:
- These scripts use the ZTIUtility.vbs from the MDT.
- You may have to update the location: <script language="VBScript" src="ZTIUtility.vbs"/>.
- 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:
. - Read the logs with TRACE32, part of the SMS 2003 Toolkit 2.
- 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:



