Jump to content

d13373d

Members
  • Posts

    10
  • Joined

  • Last visited

Everything posted by d13373d

  1. So support have just doubled down. Not sure where to go next...
  2. Thanks for the replies, I've already emailed customer support back about this. I'll see if I can take it higher as something doesn't sound right. I'll come back and update the thread when I hear more.
  3. Hi everyone, thought I needed to share this with anyone else thinking of using ChromeOSFlex to upgrade old devices. We thought we would try it on one trolley of laptops first. Happy with the though that even though they are old devices we have lots of spares to replace them when they die. I was surprised to see last week that when I tried to do this with a dead laptop the "conditionally available" licence didn't apply. Exact same model laptop. I contacted Google Support and long story short: "... the conditionally available licenses ... due to policy change one license can be used to only one device and it cannot be reused irrespective of Deprovisioning reason." No mention of this policy change in any Google articles so be warned. It's making us question whether we continue with the reuse of old devices now. Is it worth £30 for the licence on an old device that might not last that long? Mike
  4. We are looking at Sign in App too. Inventry support don't seem interested in fixing any issue and just want to sell you a new system. £1500 for the 3 year licence, £1500 for a new screen and £1000 for a quick scan. No thanks. Only thing about Signinapp is the MIS integration is an extra £120 a year. Anyone have Arbor and write back marks? The userguide suggests this doesn't work for the AM/PM format primaries use.
  5. Does anyone still have a copy of ActivPrimary V3.7 anywhere that they could upload and share. I still have 1 teacher who prefers it (I know!)
  6. We have Paxton for door entry, one site has push to exit, other has swipe to exit with break glass override for emergencies. We have Inventry for signing in with one reader in the entrance area. When we had the systems installed I asked the same question but was told it it better to have 2 systems for a few reasons: Staff will hold the door for each other, especially at busy times leading to them not clocking in or out being the main reason. There is also an area for parents in reception, any staff want to speak to them would be clocked out.
  7. Hi Steve, I have noticed a slight error in my code that must have been carried over from testing. The Function to check the registry key has a line commented out that shouldn't be. If you replace the function with this code it should work. Function KeyExists(key) Dim objShell On Error Resume Next Set objShell = CreateObject("WScript.Shell") objShell.RegRead (key) Set objShell = Nothing If Err = 0 Then KeyExists = True End Function EDIT: Looking in my registry I have an "Install" key in both "Full" and "Full\1033" folders so either will work.
  8. Thanks for the script. Modified it slightly to just check for the Dotnet 4 reg key to skip installed PCs. Can now have this run at startup from GPO and can just apply to container with all staff PC. 'VBS DotNet 4 Install Script - Micheal Cross 2011 'Credit to Rob Holmes 2011 [url]http://www.edugeek.net/forums/networks/76186-deploying-net-framework-4-a.html[/url] Option Explicit 'Declare variables Dim dotnetexe Dim WSHShell 'Set path to the exe installer. dotnetexe = "\\cpsictserver\netlogon\msi\dotNetFx40_Full_x86_x64.exe /q /norestart" Set WSHShell = WScript.CreateObject("WScript.Shell") 'Check if PC already has DotNet installed If KeyExists("HKLM\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full\Install") Then 'Do nothing, DotNet is installed. Else 'Installs DotNet WshShell.Run(dotnetexe) End If Function KeyExists(key) Dim objShell 'On Error Resume Next Set objShell = CreateObject("WScript.Shell") objShell.RegRead (key) Set objShell = Nothing If Err = 0 Then KeyExists = True End Function
  9. Can be installed centrally but takes a bit of work. I installed a local copy, copied the contents of the program files directory to the network share. Then: Navigate to this folder - c:\WINDOWS\system32\Macromed\Flash\FlashPlayerTrust copy the "Energy Dashboard.cfg" to the network share. This is the file that is creating the Flash player not finding the logger error. Have the file copied to the local PCs via startup script and provide users with the link to the index.html file. Example script used: if exist c:\WINDOWS\system32\Macromed\Flash\FlashPlayerTrust goto end mkdir c:\WINDOWS\system32\Macromed\Flash\FlashPlayerTrust copy "\\cpsictserver\software\For all\Energy Dashboard\Energy Dashboard.cfg" "c:\WINDOWS\system32\Macromed\Flash\FlashPlayerTrust\Energy Dashboard.cfg" /y :end
  10. Hi, It's a shame to see LanView go, is anyone planning on uploading the Lanview 3 server and client files anywhere for others to download? Would Kev or the other members of MST mind anyone doing that? Does anyone have a copy of the Hardware Management System created by MST that they could send me? Mike
×
×
  • Create New...