Jump to content

machy

Members
  • Posts

    414
  • Joined

  • Last visited

Everything posted by machy

  1. Is JS / ADs or something similar getting blocked on the facebook domain? can you set to allowed like this How to allow or block Cookies on specific Websites on Google Chrome
  2. do they have cats running around the server room?
  3. Got staff here complaining its still dog slow... Anyone else?
  4. I wonder if they have been hit with the windows update issues, given they use IIS
  5. My guess is clock hours instead of Working hours and the outage clock starts ticking when they admit theres an issue 8/168hrs rather than 8/40
  6. Gone again for us too... > SupprisedPikachu.gif
  7. First proper day back for us & it broke as soon as the kids started getting in lessons 🤣
  8. if you end up at a brick wall I Made a print adding tool because they never wanted to add for me 😂 i know alot of printery tools like that have broke as windows deprecated some older things think the same realm as old dotnet and WMIC Being replaced by CIM etc
  9. Strange formatting issue on when zoomed in Edge, 1080p, 150% Not seen it on other posts
  10. looks so damn good...
  11. You can move multiple between nodes using Failover Cluster Manager
  12. The Snipe Dev/s are quite friendly and helpful on there discord and may be able to offer some thoughts.
  13. Git can be a tetchy git with proxys Sometimes you can just add it at cli sometimes you need to set HTTP_PROXY
  14. is it a Cloudflare 403 message or another one?
  15. I Think it also depends on how much extra would it cost. If its an extra £5 on a device for a faster Nic, it could be worth it over a long term project. But if its £100 a device, its a harder sell for whats going to be useless for most people.
  16. My script is Lazy so it doesn't do error checking In that case its because "administrator" is logged in (i presume its the account you are running the script as) Therefore its trying to delete a live account. Which means for some reason its not picking up admin being logged in (ill look at why) swap $Dirs = Get-ChildItem c:\users\ -Exclude "Public", $LoggedInUsers,"Default" | select -ExpandProperty Name with $Dirs = Get-ChildItem c:\users\ -Exclude "Public", $LoggedInUsers,"Default","administrator"| select -ExpandProperty Name and run it again
  17. PowerShell normally gives decent error messages Care to share?
  18. A Bit of silliness before all the hard work over the summer! The Annual Cheese & Wine awards! Focusing on the Best things in the 24/25 Academic Year The Cheese of the year is: Mozzarella, Perfect for a pizza and perfect for punting at someone being daft The Wine of the year is: Montepulciano d'Abruzzo: Cheap and Tasty for a wine! Cider of the year: [Local Cider Company] Cider (Sweet): Its strong and local Vodka of the year is: Morrisons own brand: Tastes like pure ethanol and cheap, sounds about right for a vodka, could be stronger though Rum of the year is: Kraken Cherry: Its kraken, but with a hint of Cherry, goes really well with Pepsi max and Ice The Other colour wine of the year (if the WOTY is Red, This is white ETC): Mcguigan Black Label Chardonnay: Again, Cheap, This goes nicely with a heavy splash of Vodka & some blended watermelon or pineapple, with a bit of Fizz, squirt of orange juice & a few mints leaves The Meat of the year is: Beef: A Joint, a burger, a steak, a stew: Versatile, simple and unlikely to give you food poisoning. The vegetable of the year is: Potatoes: Easy to grow, easy to cook, easy to put in a cannon to fire at your friends or enemies. See Also Chips The Bourbon biscuit award for the biscuits of the year goes to Bourbons: No it’s not rigged, I thought they were spelt differently and were going to be a funny pun The ‘new’ release game of the year: Oblivion Remastered: Goes great with Rum Yes I know “cheese and wine” but I make the rules The ‘im getting old’ game of the year Minecraft The "i am running out of ideas" Software of the year Award: Hugo The “what the cheesecake were you thinking buying this” award goes to: Lucid Recall, a decade old software designed for XP Redacted awards for "how did we have money for this but not x" and "the windows vista award for software" Nominations for 25/26 Open Jan 1st, bribes accepted and encouraged (that sentence will come back to haunt me) I'd sent this to some of the others in my team and got some laughs, my brains a bit fried getting ready for summer works hah
  19. Slightly more simple version that I use to Delete profiles, it removes whatever is not logged in or specifically excluded. $LoggedInUsers = (Get-WMIObject -ClassName Win32_ComputerSystem).Username.substring(4) $Dirs = Get-ChildItem c:\users\ -Exclude "Public", $LoggedInUsers,"Default" | select -ExpandProperty Name get-volume foreach ($dir in $dirs) { write-host "Trying to remove profile with path of $dir" -forgroundcolor green Get-CimInstance -Class Win32_UserProfile | Where-Object { $_.LocalPath.split('\')[-1] -eq $dir } | Remove-CimInstance write-host "Removable attempt complete" -forgroundcolor blue } Sometimes people overcomplicate PowerShell scripts and it causes issues Also if your using newer versions of PowerShell wmi will no longer work per what psydii was saying
  20. A Scary point now is that a lot of these can be hosted for free by any kid with a good technical knowledge, or the ability to read. Which is enough for them to get on game sites / host games / social media bypasses. I'd also image a lot of the gaming focused bypass sites are likely hosted by college students, its the kind of thing i would have done if i cared about playing games in school Hah.
  21. Thank you! Looks like imma have to get some and play! hah
  22. If your on /discover/ its a quirk from what Zero said a while ago, refreshing will sort that
×
×
  • Create New...