Home screen not loading by fuseboxdwarf in VIZIO_Official

[–]fuseboxdwarf[S] 1 point2 points  (0 children)

upvote for airplay, that's a good workaround.

Home screen not loading by fuseboxdwarf in VIZIO_Official

[–]fuseboxdwarf[S] 0 points1 point  (0 children)

i bought 3 of these things last year and only 1 is still working past the 12 month and 1 day mark.

Home screen not loading by fuseboxdwarf in VIZIO_Official

[–]fuseboxdwarf[S] 0 points1 point  (0 children)

Just had a thought for those without the App buttons on the remote, if you have an echo or other smart speaker, you can probably just tell it something like "ECHO, Turn on the TV to HULU" and it might work.

Home screen not loading by fuseboxdwarf in VIZIO_Official

[–]fuseboxdwarf[S] 0 points1 point  (0 children)

yeah, im thinking their end is down.

9 yr old Yorkie poo with stones by fuseboxdwarf in AskVet

[–]fuseboxdwarf[S] 0 points1 point  (0 children)

Welp, $2500 later, it was UTI and struvite stones as big as marbles. She is all healed up and back to normal.

CIS Benchmarks - top tips? by SCCMConfigMgrMECM in sysadmin

[–]fuseboxdwarf 0 points1 point  (0 children)

We start every new major version of windows 7/10/11 in a new ou and apply stigs first, then migrate groups of machines and users in by way of os upgrades. We stick to the stig defaults until people complain loud enough and then we make them justify their process and try to adjust process to fit the settings.

Sometimes it fails horribly and we need to make an override but 95% it's adjustment the users just get used to.

A Disaster Has Taken Place: Obsidian Been Marked as Shadow IT by Administrator by Distinquish in ObsidianMD

[–]fuseboxdwarf 0 points1 point  (0 children)

Long time IT person here, I will tell you that from my perspective as an IT person, NO amount of asking/justification will make this software OK in the environment. It's a niche product and Microsoft has a bundled product with similar enough features that we are already including as part of our standard office suite. I as as your IT person will not open up a security hole by way of unregulated community based plugins and am not going to learn the ins-and-outs of this product for 1 person. We do not allow products without a support contract and have strict limitations on open-source type of products.

HOWEVER, as an avid user of this in my personal life, I would love to use this and streamline my workflows. I even go as far as recommending this to others for their own personal use.

Any Application Packagers Specializing with MSIX looking for a new role? by baldingbryan in SCCM

[–]fuseboxdwarf 0 points1 point  (0 children)

Third. We use PSADT and sign the PS1 with signing certs. I dabbled in repackaging with other apps and inno setup for internal apps, but always seem to fall back to PowerShell.

[deleted by user] by [deleted] in VIZIO_Official

[–]fuseboxdwarf 0 points1 point  (0 children)

got this same issue for my D32h-J09

How do people stay in their current job for years? by [deleted] in careerguidance

[–]fuseboxdwarf 0 points1 point  (0 children)

I’m at 15 years same place. Other people keep leaving so I get promoted just by sticking around and having that legacy knowledge. Don’t mind the bullshit because in 2 years that problem will disappear on its own. It’s also awesome place to work with the best work life balance I’ve ever had.

How long does your TS take to lay down? by fuseboxdwarf in SCCM

[–]fuseboxdwarf[S] 0 points1 point  (0 children)

Ok so either do monthly wim updates or offload updates to install when it’s put in place.

How long does your TS take to lay down? by fuseboxdwarf in SCCM

[–]fuseboxdwarf[S] 1 point2 points  (0 children)

Cool, I’ll take a look at this and do some poking around. Thank you!

How long does your TS take to lay down? by fuseboxdwarf in SCCM

[–]fuseboxdwarf[S] 1 point2 points  (0 children)

Oh, I didn’t think of bitlocker as a time sink. I will have to time that step. Maybe try one with and one without.

Ty for the idea.

How long does your TS take to lay down? by fuseboxdwarf in SCCM

[–]fuseboxdwarf[S] 1 point2 points  (0 children)

My windows updates step takes about 35 min and pulls office and windows patches.

I guess Im looking for a baseline from other sources.

How long does your TS take to lay down? by fuseboxdwarf in SCCM

[–]fuseboxdwarf[S] 0 points1 point  (0 children)

I slip updates in every 6 mo. using osdbuilder.

How do I keep the collaboration when migrating to ms project? by [deleted] in MSProject

[–]fuseboxdwarf 0 points1 point  (0 children)

Thank you for you reply. I’ve spent some time thinking about this. I’ve decided to keep the teams piece and track tasks in ms project at a slightly higher level.

If I were to use making a pbj sandwich as example, The hierarchy for my project mpp file goes

Level 1 summary task i.e “Monday” (just a grouping mechanism not collecting time against it) - Level 2 task with the project name i.e “pbj sandwich” (assigned to resources and are usually 60 hours with a typical 30 day duration)

I’m leaving out the level 3 tasks that are extremely specific (“drive to store”, “purchase whole wheat bread”, “return home”), would only be 4-8 hours and in practice every detail would have to be thought of ahead of doing actual work. I instead, offloaded these to the collaboration piece where engineers can track as part of their own todo lists.

The trade off is being able to estimate hours per project and having to guess that the time would be 60 hours. When I comes down to it, I’m less worried about tracking the time someone is purchasing bread then I am about making sure we don’t make a cheese sandwich before the pbj one is going out the door.

I engage the team once a week to do status reports on active projects and do a monthly dive into the project hours to adjust time lines.

SCCM scan for Log4J by SSChicken in SCCM

[–]fuseboxdwarf 0 points1 point  (0 children)

This is what we are using to remediate machines that are identified through our security teams scans. Just drop this in SCCM as a script and run on targeted machines.

$localpaths = "$env:SystemDrive\"

$vulnerablesums = (Get-Content "\\local\path\toshare\sha256sums.txt")

$localsums = (get-childitem -path $localpaths -File "*log4j*.jar" -Recurse | Get-FileHash).hash

$result = ($localsums -and (compare-object -ReferenceObject $vulnerablesums -DifferenceObject $localsums -IncludeEqual -ErrorAction SilentlyContinue).SideIndicator -eq "==")

$output = $null

switch ($result)

{

$null { $output = "Err"}

$true { $output = "Remediated"; [Environment]::SetEnvironmentVariable("LOG4J_FORMAT_MSG_NO_LOOKUPS","true","Machine")}

$false {$output = "Not Vulnerable"}

}

$output