Jump to content

levell3r

Members
  • Posts

    44
  • Joined

  • Last visited

Everything posted by levell3r

  1. Why you no wish the job? I welcome genuine feedback here or through PM. As I would like to leave knowing safe hands are on the way.
  2. Hi All, We are looking for a School Tech to come in, step up and take ownership of our supporting our IT Estate. Details as below. Salary range GR3 Occupation Education Non-Teaching Full / Part time Full time Job Hours Full-time, all year round (36.5 p/w) Contract Type Permanent Enhanced DBS Check Required Yes Job Information Greenholm Primary School Great Barr B44 8HS Telephone number: 0121 464 6321 Email address: [email protected] Required as soon as possible Greenholm Primary School is forward-thinking stand-alone Academy based in North Birmingham who has long acknowledged the role of IT in education. This is an excellent time to join Greenholm Primary as the Academy has recently heavily invested in upgrading its IT Infrastructure. We are looking for an IT Systems Administrator with demonstrable experience of working in an IT support role with advanced working knowledge of The Microsoft Stack, and its associated management tools. Strong organisational skills, patience and soft skills will be invaluable. You will be instrumental in delivering IT services to enable the best possible outcomes for young learners. As such, a self-motivated, flexible, and hardworking candidate will flourish and have opportunities for developing themselves and their skillset. You will report to and work closely with the Senior Leadership Team to support the development, implementation and continuous improvement of the IT Services. On occasion as required, work outside of standard hours may be required. Enquiries and application forms available at [email protected] Closing date is 2/6/23.
  3. Happy to hear feedback if anybody has any?
  4. Hi all, We have a vacancy for a Schools ICT Tech. Most of the details are available at the link below. Poignant facts - Great Barr, Birmingham Fulltime role (36.5 hours) but only term-time circa 13 weeks holiday Everything else is covered in the ad. https://www.birmingham.gov.uk/directory_record/325435/ict_technician_-_greenholm_primary_school
  5. Is it possible to confirm this? We've had the UAG letter recently and can't see how Schools with external ISP's are accessing CRISP. BGFL have always restricted those sites to their core network/IP range.
  6. G'Morning guys & gals. Not entirely sure where this should go, so apologies if I have got this wrong. I'm fielding for some supplier recommendations. Off the back of having some extension works done, we're looking at changing our main Cab and having a partition wall around it, and creating a "server room" for it. Im struggling to source companies that are willing to take the full job on, new underground fiber runs, unpatch/repatch, aircon fitted, stud wall constructed etc etc. Can anybody put me in touch with somebody in the Midlands area that can do a decent job?
  7. ok, will do. Until monday, then. Thank you.
  8. Hi, its always good to hear impartial praise. Do you mind if I ask what you provisioned for your LEA data extract?
  9. Do you source a solution in the end? What was the outcome?
  10. How does that work? Do I have to pay them for their time to remote in?
  11. Sorry to wade in here unannounced and revive a dead thread. We're looking to change our ISP and move away from BGFL, I have been in touch with a few of the bigger schools replacement ISP (most are on here) and I am struggling to get any solid answers on what the process is for sorting Groupcall, Cenus, SchoolsHr, Crisp extract etc etc. If somebody who has been through this (and remembers or has notes on it), I'd love any info I can on this. Thanks for any help.
  12. *inserts my 2p* If everything GB are writing is accessible through a FOI request, then that means they have to surrender their personal email accounts for data trawling surely? Im pretty sure if gov knew this they would quickly start using official school supplied accounts.....
  13. Some copy pasta
  14. Spiceworks has a network map, but Nagvis would be the best imo. Screenshots - NagVis.org
  15. What a brilliant place to start. Creating documents from a clean installation! Disaster Recovery policy? backup policy? I personally like to make a handbook/guide. I print out server specs, switch configs, a copy of the admin passwords, type up all the shares/dfs locations, keep a copy of policies with it, put a floor layout in it, with all the network diagrams in - and then its locked away.
  16. everybody else has been to busy to talk. I left a message with Millgate and waiting on a callback from Novatech. But Oz has gone away and working on it already. Good stuff. The Chair of govornors is in school, and i can finally say things are moving again! Happy days.
  17. thanks guys. I hit a wall with Millgate, but i'll give Novatech a buzz and see what they can do.
  18. Hi, We're looking at setting up our school with a EES agreement to replace the Ad-Hoc licenses. Our usual software channel ServiceBirmingham - seem to be presenting me with more problems than answers. Has anybody got any experience with a Microsoft licensing partner that they have favourable experience with? Any contacts, names, numbers welcomed. Cheers guys.
  19. Yeah, we have a script that creates a small text file with the name and machine of who's logged on, and if you try again it logs you out (im pretty sure it came from Edugeek) you can use it to check who's logged on by looking at the share. Logon script: rem check for the logon file to exist IF EXIST \\curricsvr2\logs$\logonchecker\%username%*.log \\curricsvr2\netlogon\scripts\vbmessage.cmd rem create a log file of usage by username echo %computername% >> \\curricsvr2\logs$\logonchecker\%username%-%computername%.log VB Message @call \\curricsvr2\netlogon\scripts\vb-logoff-popup.vbs sleep 3 logoff.exe VB-logoff-pop.vbs Const TIMEOUT = 60 Const POPUP_TITLE = "Multiple Logins Detected" Set objShell = WScript.CreateObject("WScript.Shell") objShell.Popup "PLEASE READ This user account is logged on elsewhere. Please logout that machine before starting a new user session. Machine will logoff in 60 seconds.", _ TIMEOUT,POPUP_TITLE,vbExclamation+vbOKOnly+vbSystemModal Logoncheckclear rem file check clear del \\curricsvr2\logs$\logonchecker\%username%-%computername%.log
  20. no worries. ok, well for thread completeness im going to answer my own question. ChromeHistoryView - View the browsing history of Chrome Web browser in a logout script: chromehistoryview.exe /shtml \\server\share\%username%.html /usevisittimefilter 1 /visittimefilter 1 /sort "visited on"
  21. Its here its definitely geared MORE towards bandwidth control. http://www.papercut.com/products/ng/netcontrol/
  22. Holy Thread revival Batman! Sorry to revive an old thread. I have this script running and it works like a gem, never needed to use it in anger yet. We now have had the question asked about what is done as regards Office staff using Google Chrome. Does anybody know of a way to modify this script to grab Chrome History, or maybe another way keep that info. Whether a plugin/script/extension. Thoughts? thanks guys.
  23. Sorry for the double post. dont seem to be able to delete or edit posts on this site O.o sorted it. thanks for the help steve21. added wildcard to the file check, and added machine name to file creation and deletion. So it checks if the user is logged on to any machine but only deletes it if its the one with the right computer name. @logon rem check for the logon file to exist IF EXIST \\curricsvr2\logs$\logonchecker\%username%*.log \\curricsvr2\netlogon\scripts\vbmessage.cmd rem create a log file of usage by username echo %computername% >> \\curricsvr2\logs$\logonchecker\%username%-%computername%.log @logoff rem file check clear del \\curricsvr2\logs$\logonchecker\%username%-%computername%.log @echo MSGBOX "You are already logged on. Please log off that machine before starting a new session." > %temp%\TEMPmessage.vbs @call %temp%\TEMPmessage.vbs @Del %temp%\TEMPmessage.vbs /f /q sleep 3 logoff.exe note: vbmessage could just be replaced with any command, ie - shutdown.exe
  24. steve21, any pointers for setting the script to check log file contents?
  25. thanks for the reply, though i'm not entirely sure how that works.
×
×
  • Create New...