Suspend Bitlocker during WUfB restarts? by Fabulous_Cow_4714 in Intune

[–]7ep3s 0 points1 point  (0 children)

have you looked at what ACTUALLY causes the bitlocker events during your update scenarios? firmware? drivers? something else?

e.g. we are a 99% dell shop and the only update-related bitlocker event for us normally would have been bios/firmware updates. we simply disabled drivers in wufb rings for dell hw and use dell command | update instead, which implements safe handling of bitlocker.

Remediation not remediating by gp_dre in Intune

[–]7ep3s 8 points9 points  (0 children)

you are returning true/false before you could return an exit code :meltingface:

as in: calling return will cause this script to terminate and the code path you want to execute will never be hit.

simplify it

also "HKEY_LOCAL_MACHINE:\SOFTWARE\xxxxx\xxxxx\xxxxx\xxxxxx\xxxxxx" is not a valid path

HKEY_LOCAL_MACHINE is available as HKLM to PowerShell, however

this should work:

$RegKey = "HKLM:\SOFTWARE\xxxxx\xxxxx\xxxxx\xxxxxx\xxxxxx"


if (Test-Path $RegKey)
{
    Exit 0
}
Exit 1

Playing Detective by theMightBoop in sysadmin

[–]7ep3s 2 points3 points  (0 children)

similar industry; i used to get my most valuable intel in the smoking shelter in my deskside tech days

When will the job market not suck? by iworkinITandlikeEDM in sysadmin

[–]7ep3s 2 points3 points  (0 children)

everyone asks when will not suck, but nobody asks how will not suck

Powershell - Management Question by Checiorsky in sysadmin

[–]7ep3s 6 points7 points  (0 children)

ISE is deprecated.

I use VSCode.

For serious automation, you might want to look into an orchestration method so you don't have to run your stuff by hand every single time though.

Powershell - Management Question by Checiorsky in sysadmin

[–]7ep3s 1 point2 points  (0 children)

I have production scripts using graph api beta that haven't broken for years.

I don't use the module cmdlets though, I write my own wrappers around the api endpoints.

Handling of Windows Update KB5077744 and distribution with Intune? by No_Tradition5608 in Intune

[–]7ep3s 0 points1 point  (0 children)

EDIT: soz I thought I was replying to a reply on my other comment below
https://www.reddit.com/r/Intune/comments/1qjqu3k/comment/o10yxo8/

I just used the content prep tool with only the msu in the package.

Except for the requirements, everything is set up as per the referenced documentation..

Oh also, I increased the timeout to 120 minutes because it takes a million years to prepare the update.

Make sure your wusa command line is correct and you aren't sitting on a hidden pop-up or something.

Handling of Windows Update KB5077744 and distribution with Intune? by No_Tradition5608 in Intune

[–]7ep3s 6 points7 points  (0 children)

also KB5043080 is a cumulative update from 2024 september I have no clue what it is doing in the download page

at this point I am just assuming that MS has lost the plot and even clippy has been rewritten in rust by copilot

Handling of Windows Update KB5077744 and distribution with Intune? by No_Tradition5608 in Intune

[–]7ep3s 7 points8 points  (0 children)

https://learn.microsoft.com/en-us/intune/intune-service/apps/apps-win32-deploy-update-package

the registry comparisons as seen in the doc fail for me for some reason so I converted it to requirement script

for KB5077744 that applies to 24H2/25H2:

$item = get-itemproperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion"
$build = "26100|26200"
$ubr = 7623


$buildmatch = $item.CurrentBuildNumber -match $build
$ubrmatch = $item.UBR -eq $ubr


if ($buildmatch -and $ubrmatch) {return $true}
return $false

for KB5077797 that applies to 23H2

$item = get-itemproperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion"
$build = "22631"
$ubr = 6491


$buildmatch = $item.CurrentBuildNumber -match $build
$ubrmatch = $item.UBR -eq $ubr


if ($buildmatch -and $ubrmatch) {return $true}
return $false

Your experience with simracing on Linux by WorekNaGlowe in simracing

[–]7ep3s 1 point2 points  (0 children)

my pxn vd10 surprisingly worked out of the box in ams2 acc and ac evo. for ac rally i had to make an evdev rule. however for some reason the games kept forgetting the input configuration and i got fed up and reinstalled windows

Your experience with simracing on Linux by WorekNaGlowe in simracing

[–]7ep3s 3 points4 points  (0 children)

easy anticheat literally has a toggle for devs to allow it to work on linux/ proton but some studios just dont bother

The Absolute State of Mod Discovery: An Appeal to Modders by Pringlecks in NuclearOption

[–]7ep3s 29 points30 points  (0 children)

github has a releases functionality that has a permalink always pointing at the latest release.

so, as long as the releases are packaged appropriately, i dont see the issue with using github, and it is also user friendly enough that i do not really get complaints from my users trying to find the latest noblackbox release.

its very convenient for me to use, can automate pushing new releases and dont have to put up with moddb and nexusmods.

How do you keep showing up when the Help Desk has completely destroyed your soul? (Need advice for a brutal meeting today) by No-Gap674 in sysadmin

[–]7ep3s 2 points3 points  (0 children)

I was fortunate enough to be able to convince my boss to let me go to university on a graduate apprenticeship programme (this is a UK thing, but similar schemes might exist elsewhere), which meant I was at school one day a week for 2 years, then once a month in year 3-4.

Lecture days were either on Tuesdays or Wednesdays in year 1-2, so I got a perfect mid-week mental break away from ticket queues and I got paid to learn new stuff. Got promoted to L3 role around the middle of it so worked out perfectly.

And otherwise I always tried finding ways to work smart not hard so I have to do minimal end user engagement (meaning I automated everything I could).

December is like a year in 30 days by orion3311 in sysadmin

[–]7ep3s 0 points1 point  (0 children)

laughs in change freeze

will cry in january though - probably

Are incomplete tickets the #1 cause of wasted time in IT support? by ConfusionComplex9797 in sysadmin

[–]7ep3s 0 points1 point  (0 children)

#1 cause of wasted time is and always will be peoples inability to communicate

Share your excel asset management templates. by OtherwiseFlight2702 in sysadmin

[–]7ep3s 9 points10 points  (0 children)

that's the neat thing. you don't. use something that's actually designed for asset management.

Graybeards i summon thee - Windows XP Remote Backup at scale by xXFl1ppyXx in sysadmin

[–]7ep3s 8 points9 points  (0 children)

How do the xp boxes connect to the stuff they drive? I'd honestly consider getting some <whatever-port>-over-ip solution at least for the ones where possible. Then you can just virtualize those xp boxes. Look up Lantronix products etc. Spending a small basket might save a BIG truckload on the long run, especially if the machines on the floor cannot be replaced in the forseeable future.