gopher_1999
Members-
Posts
67 -
Joined
-
Last visited
Content Type
Forums
News
20th
EduGeek EDIT Conference
Blogs
Everything posted by gopher_1999
-
Hello I can use the web based version of ConnectWise with no problems but when I try and use the app, aimed at the same address, I get a 'Could not connect to the Web Server' error. Does the app have different port/whitelisting requirements?
-
Hello We need to access a different site via Remote Desktop. However we are getting an error: Your Computer cannot connect to Remote Desktop Gateway Server We can connect if we use an external hotspot, so I think the destination server is ok. Any ideas?
-
Hello We have three Windows 10 laptops, 2 Dell and 1 Lenovo. None of them can connect to HDMI. The HDMI port is listed in sounds, with a not plugged in comment even when it is but works neither for sound of video. Any ideas?
-
We finally got the Bios password for the the Covid netbooks and are rebuilding them to our own build. Fairly awful machines, but free is a good price.
-
Hello We are using Abobe Acrobat Pro to bulk password protect some PDFS. Using an action I can get the password on ok, but when it moves onto the next file I need to confirm a save for the previous. Is their any way around this?
-
Hi We just received our Dynabook Satellite Pros. Essentially a netbook with Windows 10. Does anyone know the Bios password on them?
-
Hello We have managed to lose the VoiceMail Pro Administrator password on our Linux installation. Does anyone know of a way to get around our incompetence?
-
Hi I want to limit users to a certain number of pages per week. I also want it to be in gray scale. I have altered the setting on the printer to only print gray scale but the only script I can find is for color per day. Anyone know how to change it to gray scale per week? /* * Daily color page limit * * Sometimes, a high price tag just isn't enough to discourage users from * printing in color. This recipe imposes a fixed limit on the number of color * pages a user can print per day. * * Imposing a color page quota is a better solution than separate balances for * color and black & white. Separate balances are more confusing (two accounts * to manage) and also can lead to waste. The user may for example run out of * black and white credit, and therefore be forced to print in color wasting * resources. This method (an overlayed color quota) solves these issues. */ function printJobHook(inputs, actions) { // Modify this value to change the daily color page limit. var MAX_COLOR_PAGES_PER_DAY = 20; if (!inputs.job.isAnalysisComplete) { return; } if (!inputs.job.isColor) { // Not color so no need to check and apply any limits. return; } var currentColorCount = inputs.user.getNumberProperty("color-per-day"); if (currentColorCount == null) currentColorCount = 0; var currentDayIndex = inputs.job.date.toDateString(); var dayLastSeen = inputs.user.getProperty("color-day-last-seen"); if (dayLastSeen == null || dayLastSeen != currentDayIndex) { // It's a new day. Reset the current count value to zero. currentColorCount = 0; } currentColorCount += inputs.job.totalColorPages; if (currentColorCount > MAX_COLOR_PAGES_PER_DAY) { var deniedMessage = "This print job has been denied. You have exceeded" + " your daily limit of " + MAX_COLOR_PAGES_PER_DAY + " color pages per day. Please print in grayscale."; actions.client.sendMessage(deniedMessage); actions.job.cancelAndLog("This job was denied because you have exceeded" + " the daily color quota."); return; } // If we're here, then it's OK for the job to proceed. // Save the current daily count actions.user.onCompletionSaveProperty("color-day-last-seen", currentDayIndex); // Note: Set is used for simplicity (see "Rate limit by department" // for use of increment). actions.user.onCompletionSaveProperty("color-per-day", currentColorCount); }
-
Accessing SIMS from outside the school
gopher_1999 replied to genesis's topic in Windows Server 2019
Have you looked at the SIMS Teacher APP? It provides a lot of SIMS functionality without the pain. -
Don't know where to post this. We regularly rip exam CDs to MP3 players for teh exams as the teachers are not allowed to. Doing this for the AQA Spanish paper after the break and each track is called something ridiculous. Is anyone else having this problem?
-
Hi. I was more looking for a reliable supplier. Don't want to through money into the ether at a fly by night company.
-
With the bubble on memory and GPUs I'm looking at buying a pre-built PC for home. Any recommendations/avoids?
-
HI Does anyone know of a Papercut recipe/script that will restrict the number of B&W prints a user does per day on a specific printer?
-
GDPR and Staff E-mail
gopher_1999 replied to gopher_1999's topic in Data Protection & Information Handling
Thanks to all. I suspect it is the result of older staff being paranoid that is pupils find out the staffs' full names then the pupils can cast spells on them or some such -
Hi I have been told that "because of GDPR" our pupils are not allowed to know the staff e-mail accounts. Is this correct?
-
Hi We have Xima Chronicle installed last year to report on our Avaya IP Office phone system. Unfortunately no-one can remember where it was installed. Any ideas?
-
Hi We have a number of SIMS reports that produce an XML file that links to a Word template. This works fine on Office 2010 and also on Office 2016 until very recently. Instead of correctly opening the Word template and importing teh data from teh XML file, the Office 2016 machine opens the XML file in Excel. Any ideas?
-
Hi We have Policy Central on our network and have two problems. Firstly, the AUP does not appear on Windows 10 although screen captures do occur. Secondly, we are trying to find the OSX module to no avail and the new owners are being unhelpful. Can anyone help?
-
Hi We have Clevertouch interactive boards, which are usually great, but when you try and run a powerpoint from a usb stick the office software stops working. Any ideas?
-
One of the teachers has some, unknown amount, funding at wants a new scanner. They are asking for: A3 Colour Paper feed Unattended operation Anyone have any experience/recommendations?
-
Hi Can anyone remind me how to deply the Ranger client, not the Ranger remote control client?
-
Hi. I have set up a computer configuration GPO to install a .MSI. When I use modelling it lists it as a denied GPO in the user configuration area. ANy ideas?
