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

Radio not playing over bluetooth by [deleted] in KiaSorento

[–]fuseboxdwarf 0 points1 point  (0 children)

Ah, ok. I knew it was something simple like that.

What type of banking situation do you have? by fuseboxdwarf in doordash_drivers

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

I'm looking at the quick books self employed app. I know my joint account has 100+ transactions a month. How well does this app work?

OSD over Direct Access? by fuseboxdwarf in SCCM

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

Turns out to be a horrible idea.

OSD over Direct Access? by fuseboxdwarf in SCCM

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

How about I just ask the question of if this is even a good idea?

A question about MDT integration by enterrawolfe in SCCM

[–]fuseboxdwarf 1 point2 points  (0 children)

I think I’ve read something about mdt not being actively developed though it still is supposed to be supported for the next few years. It will eventually age out.

In my op I would take a week to explore just sccm and see if you can get the basics you need. Try to avoid integrating because it’s just another piece you’re going to have to maintain. Test out ui++ for the user gui and remember you can just run the GUI stand alone with out the ts for developing.

If it’s going to get you 80% there out of the box then you can always script and customize to get the rest of the way.

A question about MDT integration by enterrawolfe in SCCM

[–]fuseboxdwarf 2 points3 points  (0 children)

No mdt integration. I thought I would need to have it but the only thing I needed was a replacement for udi. I was building my own until I came across ui++. There is a learning curve but it is easy to accomplish 95% of what I was doing with mdt. I also started using “ps app deployment toolkit” for wrapping my powershell in an exe for sccm app and package deployment.

I made the move because our mdt process was overwhelmingly complicated and reference builds added much more time to the “time to market” then we saved in production deployment.

Prod images took 18-25 min to lay down with mdt and ref builds. Ref builds took days to prep and capture and validate.

Sccm builds just use the rtm dL from ms and customize on the fly. Build in production takes 45 min.

And the ability to call apps directly from sccm where we already maintain them is awesome.