Jump to content

ShellfishClive

Members
  • Posts

    371
  • Joined

  • Last visited

Everything posted by ShellfishClive

  1. I don't know about you guys but it feels like more the first signs of permanent winter for me!
  2. The main setup we use for supply is exactly how you have mentioned above. We have a generic account "SchoolSupply", when the account isn't in use we disable and the school will ask us to enable it the day of. We find the school can wait that extra 2/3 minutes for us to enable the account and reset the password. The account itself has restricted access to the shared areas, although we do have central locations for just supply teachers to access where the teacher they are covering can drop work if needed and we have MFA turned off on these accounts as well. We can't find a way to have MFA setup where it isn't just a massive hinderance, so we have it disabled and manually just enable/disable the account as and when it's used.
  3. Some people have had success blocking this URL: google.com/search?udm=50 on filtering systems. Seems to make the "AI Mode" button disappear. Not tested it myself though!
  4. What's the reason you are wanting to move away from X and what are the requirements for the platform? Is it purely to post pictures?
  5. We run both DHCP and DNS from the SmoothWalls we have installed for most sites, if not we just run a small box with Windows Server on it purely for DHCP.
  6. Just to double down on this, flexing old laptops is the best use we have found for them!
  7. I may be wrong but from my understanding a lot of the attack were targeting specific end users (likely governments or big corps) so generally speaking most average end users were fine. Best course of action is install the latest version from here: Downloads | Notepad++ v8.9.1 or above if released, you can run a virus scan to be safe across your whole system as well, it would never hurt. Low Level has done a short but information packed video on it, definitely worth a watch if you want more info:
  8. I've never used the intercoms with Net2 but I have seen the software crash randomly without the end user knowing. We were sent a slightly newer version of Net2 and it seemed to fix the issue so maybe go down that route if you can.
  9. Just throwing my hat into the ring on this one, we have this for some of our sites too and we are on SBB. Has anyone completely confirmed this is a filtering/firewall issue?
  10. I'd turn it on, it seems to make everything faster and stops the Outlook "hang" that seems to randomly appear when loading any new folder.
  11. Triple Chocolate is the 100% clear winner lets be honest!
  12. Unless it is and we are all just out to get you! ​​​​​​​
  13. Weirdly that is happening for me on Chrome as well, seems like it might be a unicode issue.
  14. It does come with an MSI but I'm sure the licensing side of things is a bit funny, it requires a different piece of software to license called "Ilok". I'm sure if you email them before you buy the product they'd be happy to send over the relevant information.
  15. It's worth checking the SNTP settings under Network Setttings -> Services Settings and then SNTP (if it's the same webpage I'm thinking of, if not search for "NTP" or "SNTP") See which server it's pointing at, it should be the same as the server that is hosting the printer, you can turn this off and set it manually but it's much better to have it enabled.
  16. Apologises for my previous response it is actually just the standard IMPACT model we use I thought it was different, I assume the that IMPACT Plus will just have additional features.
  17. I've used them with CleverTouch boards not the Impact model though and I've have no issue with them.
  18. We just set them up to join a PSK network that nobody knows the password too and that doesn't seem to be an issue, it's still secure because the password is never shared, is there a reason you want them on Radius specifically?
  19. If it's an issue with DNS then the IP directly should work from any domain PC.
  20. Have you changed the hosts file on the IIS as well?
  21. Are you saying that you're full name isn't just FULL NAME?!
  22. I don't know of any tool that would do this but I've never tried, if nobody gets back to you shortly with an update I can write a PS script that will sort this for you. Edit: [color=#9CDCFE][font=&quot]$user[/font][/color][color=#D4D4D4][font=&quot] = [/font][/color][color=#DCDCAA][font=&quot]Get-ADUser[/font][/color][color=#D4D4D4][font=&quot] -SearchBase [/font][/color][color=#CE9178][font=&quot]"insert OU Path here"[/font][/color][color=#D4D4D4][font=&quot] - Filter *[/font][/color][color=#D4D4D4][font=&quot][color=#C586C0]foreach[/color]([color=#9CDCFE]$user[/color] [color=#C586C0]in[/color] [color=#9CDCFE]$users[/color]){ [color=#9CDCFE]$homeFolderPath[/color] = [color=#9CDCFE]$user[/color][color=#DCDCAA].HomeDirectory[/color] [color=#9CDCFE]$username[/color] = [color=#9CDCFE]$user[/color][color=#DCDCAA].SamAccountName[/color] [color=#9CDCFE]$acl[/color] = [color=#DCDCAA]Get-ACL[/color] [color=#9CDCFE]$homeFolderPath[/color] [color=#9CDCFE]$AccessRule[/color] = [color=#DCDCAA]New-Object[/color] System.Security.AccessControl.FileSystemAccessRule([color=#CE9178]"domain\[/color][color=#9CDCFE]$username[/color][color=#CE9178]"[/color],[color=#CE9178]"Modify"[/color],[color=#CE9178]"ContainerInherit,ObjectInherit"[/color],[color=#CE9178]"None"[/color],[color=#CE9178]"Allow"[/color]) [color=#9CDCFE]$acl[/color][color=#DCDCAA].SetAccessRule[/color]([color=#9CDCFE]$AccessRule[/color]) [color=#9CDCFE]$acl[/color] | [color=#DCDCAA]Set-Acl[/color] [color=#9CDCFE]$homeFolderPath[/color] } [/font][/color] At the moment I don't have time to test this, you will just need to enter an OU path that you would like this to run against and change the domain to your domain in the $AccessRule variable.
  23. You could do this with PowerShell: $users = Get-ADUser -SearchBase "insert OU Path" -Filter * -Properties * foreach($user in $users){ $username = $user.SamAccountName Set-ADUser -Identity $Username -DisplayName $Username } You'll need to find the DN name of the OU if you are targeting an OU, easiest way to get it to make sure you have Advanced Features on under "View" in Active Directory, right click the OU with your year group in, go to Attribute Editor tab and copy the DistinguishedName in there and paste it "insert OU Path" part of this script.
  24. If they don't have enough space to download and install the update then it will stop it from happening so that might be worth checking, they need space to download and install seperately. If the iOS update its 1.1gb I almost always make sure they have at least double that space free.
  25. You can highlight all and share instead of doing them one by one I think. If not you could move all the files to a shared drive and access them on both accounts from there.
×
×
  • Create New...