gopher_1999
Members-
Posts
67 -
Joined
-
Last visited
Reputation
5 NeutralAbout 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?
