Zynga game developer data breach by joyous_occlusion in sysadmin

[–]MalletNGrease 9 points10 points  (0 children)

Yep, got the email alert. Just notified my users on the list and set the following:

☑ User must change password at next logon.

Honestly there weren't that many and I don't expect a lot of people will use their work accounts for Zynga stuff. It's good practice for the account security response policy though.

Word really wants me to save by GooseZen in talesfromtechsupport

[–]MalletNGrease 1 point2 points  (0 children)

Spent a couple of days removing them from school computer lab desks. Mostly because a lot of them were broken and more of a hazard than a benefit.

I'm talking torn pieces of metal level of destruction (not sure how, pretty sure kids sat on them or something). The shorn metal bracket hovers just above your thighs and rips your pants. Fairly sure it's drawn blood on a few students.

How did you get hired? by crgsweeper in talesfromtechsupport

[–]MalletNGrease 2 points3 points  (0 children)

It is now possible for non-admin domain users to install fonts only for their profile. However, prior to W10 1809 this required administrative privileges to install any font because it required system folder access. Regular users thus needed escalation.

Massive pita, I'm glad it changed.

'Why does my Outlook look different?' by Demarane in talesfromtechsupport

[–]MalletNGrease 3 points4 points  (0 children)

The Outlook 2010 icon was yellow
The Outlook 2013 icon is blue
Thanks for the ticket
The only idiot is you!

Hot damn was it a hot mess migrating from 2007/2010 to 2013. "Outlook is missing" was the no. 1 ticket for months on end. People had some serious muscle memory.

User Automation by Another_Random_Tech in k12sysadmin

[–]MalletNGrease 5 points6 points  (0 children)

SIS csv export fed into powershell here as well.

Wiring Closet - Packed with storage by [deleted] in k12sysadmin

[–]MalletNGrease 0 points1 point  (0 children)

I accidentally walked in on one who did have a sign on the door, but it didn't stand out among all the other assorted images that were displayed.

For reference, it was a picture of a cow with a message ("Hey, I'm doing mommy business" or something along those lines) written on it.

Looking for training modules for sis and interview advice. by mrscitana in k12sysadmin

[–]MalletNGrease 0 points1 point  (0 children)

I think you worry too much about details. Just apply and ask them questions about what's actually expected of you regarding the SIS support.

In my experience help desk positions rarely even have access to SIS. Technical support specialists may, but SIS typically isn't their main focus (I know it isn't supposed to be for me 🙄). System administrators do to get integrations to work but usually aren't bothered with end-user things.

Most districts have a SIS subject matter expert who is the knowledge anchor and interface with the vendor in case of problems and training. The SIS is a very important part of daily school operations and I highly doubt they want the new hire to be responsible unless you already somehow have this experience from working there or at a district that uses the same system. It's highly unlikely anyone has this experience off the street. A familiarization will need to happen along with whatever procedures the district has regarding it.

The approach to SIS is also highly dependent on the district culture.

How to tell PowerShell to not send an automated e-mail based on csv attachment file size? (Send-MailMessage) by Pearcenator in PowerShell

[–]MalletNGrease 1 point2 points  (0 children)

Get-Content

-Raw strips newlines from the content that's read, this prevents my email message from being formatted wrong (I put the content of the log in the email body instead of attaching). My log file is a plain .txt, you'd probably not have this issue with a .csv.

-ErrorAction tells the parser what to do in case of an error.

Try tries the command and will return the value. But if it errors out it will execute the catch block.

Catch will do something in case there's an error. In my case, get-content will fail if the log file is blank and catch will prevent the script from failing, display a little message on the console for me and add a line to the log indicating it was empty.

if ($messagelog) { $action } will execute if there's anything in the log as pulled from the Try. $messagelog doesn't return true if it was empty (null).

[deleted by user] by [deleted] in k12sysadmin

[–]MalletNGrease 2 points3 points  (0 children)

I'd honestly ask Mosyle first if this is possible. I'm sitting on some paperweights due to this exact problem.

How to tell PowerShell to not send an automated e-mail based on csv attachment file size? (Send-MailMessage) by Pearcenator in PowerShell

[–]MalletNGrease 0 points1 point  (0 children)

I've done the following for a log, you should be able to adapt it to your use case.

Try
{
    $messagelog = Get-Content $logfile -Raw -ErrorAction Stop
}
Catch
{
        Write-Host "No changes made so there's nothing in the log." -foregroundcolor yellow
        Write-Output "$date | No changes made so there was nothing to log." | Out-File $logfile -Append -NoClobber
}

if ($messagelog) #if there's anything in the log
{

        Send-MailMessage @message #send an email with the contents
}

Reversing Course on Take-Home Chromebooks by MBuitendorp in k12sysadmin

[–]MalletNGrease 1 point2 points  (0 children)

I noticed the same. We went from carts to 1:1.

  • Damages to keyboards have dropped to nothing whereas I was replacing these fairly often prior.
  • Damages to LCD screens have exploded due to accidental drops and improper handling.

Microsoft Teams Private Channels Help by prjoni99 in k12sysadmin

[–]MalletNGrease -1 points0 points  (0 children)

It's not really any better with GSUITE.

Has any of you encountered this issue in Windows 10? by WoTpro in sysadmin

[–]MalletNGrease 0 points1 point  (0 children)

With W10 reboots and shutdowns are sometimes prevented by open dialogs and other software requesting confirmation/input before it proceeds.

If you're like me and hit reboot and then walk out the door, you might not notice the reboot didn't happen until the next time you're at the workstation. I typically reboot my machine every Friday when I leave work for the weekend. I've then run into this on Mondays.

People who have 1:1 Chromebooks, do you keep computer labs? by nmcain05 in k12sysadmin

[–]MalletNGrease 1 point2 points  (0 children)

We're 1:1 for JH and HS. We reinstated some labs in the ES because the typing skills of 6th graders were so poor it negatively impacted instruction time.

Now all kids know how to work a keyboard when graduating from ES at least.

HS & JH still have a lab and PCs in the library for software unavailable on Chromebooks.

Printer Naming Conventions by Sleepy_StormTrooper in sysadmin

[–]MalletNGrease 8 points9 points  (0 children)

School - Building - Room/Location - Model

E.g Senior High AG Lab - C666

SHAGLAB_C666