Jump to content

Recommended Posts

Posted

Preview version of Exchange online message trace can do instant results for small blocks up to 90 days now, saves waiting hours or sometimes days for a trace report to finish.

 

Extended Query Range: You can now query up to 90 days of historical data for near real-time queries. However, please note that you can only query 10 days’ worth of data at a time. 

 

  • 5 months later...
Posted

[ChromeOS] Chrome extension Privacy Badger broke Google Translate – confirmed by disabling all extensions and re-enabling them one by one, and requesting translation between each reactivation.

  • 3 weeks later...
Posted

Remove those annoying MS Office lock files that start tilde dollar:

get-childItem -Recurse -force -file | Where-Object {$_.Name -like '~$*' } | Remove-Item -force
Posted (edited)

These are temp Office files that appear when a file is opened?

 

I'm guessing they get left if a document isn't saved properly, or the teacher just closes the laptop and goes home with the file still open.

 

I have an old .bat file for this (F:\ is our file server's shared drive)...

 

REM Show Temp Office Files

dir /ah /s F:\~*.*

REM Delete Temp Office Files

del /ah /s F:\~*.*

 

I cleared them over the summer, so since September, currently I have:

 

Total Files Listed:
             337 File(s)        211,501 bytes

 

I normally do them every holiday as I was never really sure what would happen if I deleted them whilst someone was actively working on the file or still had it open though...

 

 

image.png.f7e1d11b2e906e19e0755bea11cee066.png

 

image.png.7c9a2c164252271acd0eeb459b2cb54b.png

Edited by Koldov
  • 2 months later...
Posted

Convert public key output from ssh-keygen on windows to cisco format, split by space, take the middle word, split into 80 char lines:

 

((Get-Content $file) -split " ")[1] -split "(?<=\G.{80})" | Set-Content "cisco.txt"

 

  • 1 month later...
Posted

Software release notification system: https://newreleases.io/

Create a list of GitHub repos to watch and get notified of any new releases for them. Free to use. Includes options to post notifications to Teams and offers webhooks and an API.
Yes, you could do similar just with a GitHub account or some custom code to query the GitHub API, but this presents things nicely.

 

2026-01-23 08_57_01.png

  • Like 2
  • Thanks 1
Posted

Further to this, here are some repos (GitHub) for some of the software that lots of use will be deploying in schools.

  • audacity/audacity
  • dotnet/runtime
  • FFmpeg/FFmpeg
  • HandBrake/HandBrake
  • ip7z/7zip
  • microsoft/PowerToys
  • musescore/MuseScore
  • notepad-plus-plus/notepad-plus-plus
  • videolan/vlc
  • 1 month later...
Posted

Disable the airplane mode hardware button on a HP laptop via Powershell.

 

get-pnpdevice -Friendlyname "HID-compliant wireless radio controls" | disable-pnpdevice -Confirm:$false

 

(you still need to disable startup of the radio management service if it's a laptop issued to kids, this is for staff who keep catching F11 when going for "-")

  • 3 weeks later...
Posted

ITVX: Clear the cache: On the Home screen press the following on the TV remote: 0 0 0 0 7 7 7. Close the app and power off the TV/Freely Puck/Other and router at the mains for 10 seconds.

 

*Found today because the screen when using ITVX was turning black after about 10 seconds (but sound was still running)

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...