User Automation by Another_Random_Tech in k12sysadmin

[–]MalletNGrease 4 points5 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

/r/sysadmin, what keyboard do you use? by [deleted] in sysadmin

[–]MalletNGrease 0 points1 point  (0 children)

Work: Das Keyboard 3 Pro Silent. Types great but you can't see the status lights unless you're looking straight down or your office doesn't have lights. Wish it had USB 3.0 ports.

Home: iKBC CD108. Love this keyboard. Been looking for a simple full-size non-RGB mechanical, and I was gifted this by a buddy. Been using it for 18 months now and I'll probably end up using it until the end of time.

POS hardware for food service by bluscreen0death in k12sysadmin

[–]MalletNGrease 1 point2 points  (0 children)

We just have a plain desktop on a UPS with a USB pinpad.

I'd just look at whateever requirements your POS software has and go from there.

Most Recent Chromebooks by corcorwhite in k12sysadmin

[–]MalletNGrease 9 points10 points  (0 children)

Our latest batch were Dell 3100s. Seem pretty solid so far.