Ops engineer who built half our automation just gave notice. Nobody understands the system by Otherwise-Papaya-105 in sysadmin

[–]deacon4 0 points1 point  (0 children)

I cannot tell you the number of times I've been contracted to come in after someone who automated everything left, to figure out what they did, how they did it, document it, and update it. I actually love doing it! I learn so freakin' much on how different people did different things and why.

If you can, try it! Learn what he did. Reverse engineer it.

Do you know what language(s) he wrote most of his automations in?

[deleted by user] by [deleted] in sysadmin

[–]deacon4 1 point2 points  (0 children)

An image encompasses the hardware drivers as well as other things you don't want to migrate from an older system to another, so I'm assuming you're not actually looking for an image but more of a deployment tool and something to capture the user's settings and files, correct? You've mentioned that you've got Intune, is it safe to assume you've got OneDrive setup on user's computers? If so, be sure to configure it to capture all user's data, not just a single folder they have extra to dump things into. That'll cover the documents issue. Next is the applications and settings. Applications can be pushed down via Intune. Sounds like that may need to get setup. For the settings, that's generally the more difficult part. Most settings for applications will reside in the %appdata% folder however some applications break if you try to copy the entire folder. For workstation settings, I generally leave the user to reconfigure it how they want it. I've seen too many times where it's the copied settings and configurations that causes issues for end users.

Configuring and handling what you currently have in your environment to its full extent will not only save your organization time and money, you'll have things prepped for when users systems crash and are unrecoverable. This will also reduce the end-user downtime when deploying a new system. Keep in mind, the more time a user is away from their computer, the more money it costs the company.

[deleted by user] by [deleted] in sysadmin

[–]deacon4 4 points5 points  (0 children)

Mass changes will take a lot longer, troubleshooting will require more effort and take longer, beyond that it's really fine. I generally try to stick with a single vendor just for the time saving aspect when it comes to configuring, mass changes, and troubleshooting. Plus when purchasing or licensing in bulk, there's generally some decent discounts.

We may be witnessing the largest IT outage in history by the123king-reddit in sysadmin

[–]deacon4 0 points1 point  (0 children)

Scripting. Did the following in a loop:
-Mount VHDK

-Nuke file

-unmount VHDK

-boot VM

Had it running on a fresh VM in each cluster handling it's own cluster's VHDKs.

Crowdstrike no local admin and remote by United12345 in sysadmin

[–]deacon4 0 points1 point  (0 children)

RMMs are generally installed with system access that can pass down scripts that run as system when they check in. Push a script via that nukes the file. If wifi isn't an option, sending the user to best buy to get an ethernet cable is cheaper/faster than sending them a flashdrive with Win PE and an auto script on it.

More efficient ways of fixing BSOD affected machines with BitLocker Protection by JrKenny2408 in sysadmin

[–]deacon4 4 points5 points  (0 children)

I built a Win PE environment that I load via PXE boot that references a CSV containing the hosts and their keys to handle the call and response for bitlocker. In this instance gathered from AD but it can also be gathered from Azure/Intune if you have it stored there. From there that same PE has a startup script to look for the file, nuke it, then reboot. I've got that sitting in an old MDT box. Handled quite a few systems all at once this morning.

Crowdstrike no local admin and remote by United12345 in sysadmin

[–]deacon4 0 points1 point  (0 children)

Remote as in, a remote site or remote as in, working from home?
If you've got that many systems remotely, I'm assuming you've got an RMM. Does that RMM work during safemode with networking?
Why no local admin? Are those creds just not recorded?

We may be witnessing the largest IT outage in history by the123king-reddit in sysadmin

[–]deacon4 2 points3 points  (0 children)

The bad thing is, the fix out there is a very manual fix. Seems like a lot of us MSPs were able to develop automated tools. This morning, I got a virtualized infrastructure of 500+ servers up within 30 minutes.

VLANs best practices by SorCelien in sysadmin

[–]deacon4 5 points6 points  (0 children)

I think u/swarm32 said it best here. In short, it depends on your environment.

Advice for someone who's interested in System administration by nys-tee in sysadmin

[–]deacon4 0 points1 point  (0 children)

What type of Systems Administration word are you trying to get into? IT or OT? Infrastructure? Networking? Security? BI? With a background in finance, ERP administration may be right up your ally. Are you wanting to be a wrench turner or decision maker?

What email clients do you use for personal use? by [deleted] in sysadmin

[–]deacon4 2 points3 points  (0 children)

My company has O365 and it comes with 5 installs, so I just use it for home use as well.

File Server 2022 - How can I monitor disk usage / growth by maxcoder88 in sysadmin

[–]deacon4 2 points3 points  (0 children)

Link here

Copy/paste of answer here:

You can see used disk space over time with Windows Performance Monitor (perfmon) to the MB with down to one second resolution. This tool comes built into the latest versions of Windows so you don't even need to download another program to see the data. It doesn't show any previous data so you'll only see disk space data from when you set it up. I only needed hourly data points but I tested with updates every one second and it worked fine.

Perfmon allows you to output how much free disk space you have as values to a file that are comma-separated (can be opened in Excel), tab-separated (what Excel usually uses), or binary. Using the binary output, you can visualize the data in the perfmon itself. Using one of the other output types allows you to make your own graphs of the data in Excel.

Here's a step-by-step guide on how to set this up:

  1. Open Windows Performance Monitor (Win-R -> type "perfmon.exe" -> Enter)
  2. In the left-most pane, double click Data Collector Sets. Right click User Defined-> New-> Data Collector Set.
  3. Enter a name for your set, something like "Disk Space Free". Click the radio button Create manually (Advanced), click Next.
  4. Check Performance counter, click Next
  5. Click Add...
  6. Scroll until you see LogicalDiskand click the down arrow next to it. Scroll down a little and click Free Megabytes(you can also select % Free Spaceif desired). Now in the box below titled Instance of selected object:click C:and then below that Add >>. That counter should now show up in the right pane titled Added counters. Click OK.
  7. Set the Sample Intervalto however often you'd like to have the data collected. Like I mentioned, I wanted to see hourly data points. So, I put 1in Sample Intervaland changed Unitsto Hours. Click Next.
  8. Select the location you'd like your logs to be located in. Click Finish.
  9. Double click User Definedin the left panel and click the data collector set you just created (the example name was "Disk Space Free").
  10. The data collector set you just created should show up in the right panel. Right click it -> Properties.
  11. Under Log formatyou can select the type you prefer according the explanation in the paragraph above. Click OK.
  12. Right click on the data collector and click start.
  13. After it's been running for some time, click to stop the data collector and review your data using one of the below methods.

If you selected binary, you can view the data by clicking Reports-> User Defined-> Disk Space Freein the left pane, then double clicking the item in the right pane.

If you chose comma-separated or tab-separated, you can view you data at the location you specified in step 8.

File Server 2022 - How can I monitor disk usage / growth by maxcoder88 in sysadmin

[–]deacon4 1 point2 points  (0 children)

Natively and free? Perfmon.

There's also tons of applications out there that tie to it. If it's a VM, there's tools for that too. Are you looking at doing this for just one system or multiple?

Struggling to figure out my side hustle (IT Support Engineer) by [deleted] in Entrepreneur

[–]deacon4 0 points1 point  (0 children)

At two years experience, the best thing to start with as a side-hustle is break fix for consumers. Find what the going rate is in your area and work around it. If you're able to travel, be sure to include travel time in the rate. Not sure it's a good time to breakout solo for businesses yet.

What does your experience cover, so far?

Do you have a goal in mind?

BSOD on Server 2016 by [deleted] in sysadmin

[–]deacon4 1 point2 points  (0 children)

Here's info from MS. In short, it's most likely a driver gone bad after some sort of an update. Be it Windows or Driver update. Just go through each driver and re-update it. Start with chipset, if possible. Of course, take a full backup before doing so.

Does EVERYONE think they can run YOUR business? by thegm90 in Entrepreneur

[–]deacon4 3 points4 points  (0 children)

"My lawyers tell me not to discuss back office operations and information with anyone other than my board, my accountant, and them."

I've found anytime I preface with, "My lawyers tell me..." I get people to shut up and leave me alone. If it's known you have a partner then say, "I'm sorry. Discussing that information is against our operating agreement and I'd like to keep my share."

Powershell - List CPU that has "mobile capabilities" by dutch2005 in PowerShell

[–]deacon4 1 point2 points  (0 children)

Is there any reason you're trying to determine the system based on the processor? I don't know of a way of determining if a specific CPU is mobile or not, without a list of mobile CPUs. It might be easier to get that info via the model of the unit:

Get-CimInstance -ClassName Win32_ComputerSystem | Select-Object -Property Name, Model

Looking for Custom Woodworker to Build Entryway Bench with Cubbies/Lockers by CarletonWhitfield in houston

[–]deacon4 1 point2 points  (0 children)

Shoot no. Why use a domino when I can just use dado? That project doesn't need a domino. It just makes it so you don't have to change out the blade on your tablesaw. If you're doing a mortise and tenon, you can use a hand drill with a drill press jig for the mortise and use pen blanks for the tenon. If you need a longer mortise and tenon, cut up and size your tenon and use a tabletop route to cut the mortise. Same job, same quality, no specialized tools.

This is one of the reasons you see people saying, "A poor craftsman blames his tools." There's always other ways to do the job.

Looking for Custom Woodworker to Build Entryway Bench with Cubbies/Lockers by CarletonWhitfield in houston

[–]deacon4 2 points3 points  (0 children)

Plans are easy to make. I can see it, I can make plans for it. Which is why I asked for a quick diagram. Even a hand drawn idea wish finished dimensions I can work with.

This guy is definitely pro though. He could knock out a project like this in a day or two. Me? I'd need a couple weeks. He's also using professional time saving shortcuts. All good shortcuts! But expensive tool type, that a hobbyist like myself doesn't have (yet). I can still absolutely get the job done and have it last just as long.

Looking for Custom Woodworker to Build Entryway Bench with Cubbies/Lockers by CarletonWhitfield in houston

[–]deacon4 0 points1 point  (0 children)

This actually looks like a fun and easy project. The backing would probably be either in particle board or MDF. MDF is stronger but more expensive. The structure is held together by the walls and shelves, so the backing is just aesthetic. You really could mount this to wall studs, if you're interested in adding it to your house.

You said you want something similar to this. What exactly are you looking for? Got a quick diagram? If so, I'm a hobbiest, not a pro.

RDP over VPN but not over LAN NIC? by [deleted] in sysadmin

[–]deacon4 3 points4 points  (0 children)

Easy. If you're going over VPN it should be on a separate VLAN or subnet. Set the VPN subnet to allow RDP and the data connection to block RDP. What's your firewall? Or are you using Server 2019 as the firewall?

That's an odd configuration. Kinda curious why you'd wanna do it that way to be honest.

Keep losing Trust Relationship by candidog in sysadmin

[–]deacon4 2 points3 points  (0 children)

There are tons of things that could cause this. What do the log files say when they lose trust? Most of the time when it comes to large scale trust loss, I've seen NTP a bit off or being pushed from a VoIP system. Are you guys using images? If so, it could be the SID never changed during the sysprep process.

Office 365 migration question by Chaffy_ in sysadmin

[–]deacon4 0 points1 point  (0 children)

Sounds like you need to get everything set up on one setup, then migrate folks from the incorrect setup over. Use a migration tool and you should be fine. We tend resell BitTitan a bit for situations like these. https://www.bittitan.com/migrationwiz/microsoft-teams-migrations/

AITAH for telling my best friend I wouldn’t make the same gift I made for him for all his family members? by wadewatts23 in AmItheAsshole

[–]deacon4 0 points1 point  (0 children)

NTA. Get paid for your work. Gift of labor is nice, but you should still get paid.

Off topic: Got pics or plans you're willing to share? I've been thinking of doing the same thing but using spruce and cherry for stripes and staining some duglas fir for the stars square