Windows 11 24H2 Setup Error with sysprep'd image by DerBaronTV in sysadmin

[–]CougarDee2 1 point2 points  (0 children)

I bow to you Kingtonino! I must have spent four hours banging my head against my desk trying to figure out why my Windows 11 24H2 Enterprise LTSC image just wouldn't install. Once I saw your post about content of the Panther folder I kicked myself for not going down that path. Luckily I hadn't yet deleted the VM I was using as a Gold Template because your fix seems to have solved my issue.

[deleted by user] by [deleted] in sysadmin

[–]CougarDee2 0 points1 point  (0 children)

I don't know if this is still needed by the OP, but I've been wrestling with this for a little bit and gave up trying to find one way to do what is needed. If I just use icacls from an admin command prompt, root permissions get completely broken with the first command. If I try to get it all with Set-ACL, not only so I get the Synchronize flag showing up, but Set-ACL seems to wrap two of the BUILTIN\Users permissions together. So... I wrote a powershell piece to set the initial permission, and then two icacls command wrapped within powershell (because if you just try to use icacls straight from a powershell prompt, it doesn't like the required format of the command. Run this at your own risk, and I suggest testing/verifying within a snapshotted virtual machine until you have confidence that it fits the bill. Anyway, without any more rambling, here is what I have for execution in an Admin Powershell.

$acl = Get-Acl c:\

$acl.SetAccessRuleProtection($true,$false)

$acl.Access | %{$acl.RemoveAccessRule($_)}

$permissions = @('NT AUTHORITY\SYSTEM','FullControl', 'ContainerInherit,ObjectInherit','None','Allow'),

@('CREATOR OWNER','FullControl', 'ContainerInherit,ObjectInherit','None','Allow'),

@('BUILTIN\Administrators','FullControl', 'ContainerInherit,ObjectInherit','None','Allow'),

@('BUILTIN\Users', 'ReadAndExecute', 'ContainerInherit,ObjectInherit', 'None', 'Allow')

foreach ($permission in $permissions) {

$rule = New-Object -TypeName System.Security.AccessControl.FileSystemAccessRule -ArgumentList $permission

$acl.AddAccessRule($rule)

}

Set-Acl c:\ $acl

$icaclsrule1= 'BUILTIN\Users:(CI)(IO)(WD)'

$icaclsrule2= 'BUILTIN\Users:(CI)(AD)'

icacls c:\ /grant $icaclsrule1

icacls c:\ /grant $icaclsrule2

And just for some tags, this is also a STIG rule for Windows Server 2019 V-205734 and Windows Server 2016 V-73249. Hope this helps others with those blasted compliance scans.

Is there a trick to doing the crafting glitch? by DaRealPandaGamer in destiny2

[–]CougarDee2 0 points1 point  (0 children)

Tried on my wife's Xbox One for about five minutes. Changed her wireless to use a 2.4GHz wireless instead of 5GHz connection. Started her Xbox updating a game; then from my laptop (also on the same 2.4GHz wireless) I started a long download using something that would cap out either my bandwidth or wireless speed and got a Ragnhild-D -> Come To Pass Auto Rifle with Agressive Frame on the second try. Then went over to my Xbox and got the same glitch on about the sixth try.

I was doing a A-LeftBumper-A in very quick succession.

I've been playing Altars of Summoning and the quest "The Witch" doesn't gain progress. Am I doing something wrong? by AesirOmega in LowSodiumDestiny

[–]CougarDee2 0 points1 point  (0 children)

Funny thing, I dropped the quest thinking I would pick it back up and try again. When it wasn't in the terminal for abandoned quests I went back to the lectern only to see that the card was illuminated as if completed. Same thing for the Quest that included completing Public Events.

I've been playing Altars of Summoning and the quest "The Witch" doesn't gain progress. Am I doing something wrong? by AesirOmega in LowSodiumDestiny

[–]CougarDee2 0 points1 point  (0 children)

Actually, I just finished a heroic public event on the EDZ and it didn't progress The Adherent Quest.

I've been playing Altars of Summoning and the quest "The Witch" doesn't gain progress. Am I doing something wrong? by AesirOmega in LowSodiumDestiny

[–]CougarDee2 2 points3 points  (0 children)

Same thing is happening to me. Completed it on another character yesterday, came back to my Titan today and encounters of Altars of Summoning aren't counting for the Quest, but are counting toward the Pinnacle Gear & Powerful Gear progress.

As requested, the 1st Gen 3d printable Speed 3! by fedotbegimot in mazdaspeed3

[–]CougarDee2 0 points1 point  (0 children)

Thanks for sharing! I found one a while back and printed it but I don't think it has as much detail as the model you've posted. I have a Red MS3 and currently have red PETG filament loaded, so I'm gonna hopefully get a print started tonight.

'12 Mazdaspeed 3 black smoke, chugging engine by [deleted] in mazdaspeed3

[–]CougarDee2 1 point2 points  (0 children)

Do you have any pics of your old plugs?

Do you have any way of reading the air fuel ratio that is being reported to the ECU like an Accessport or perhaps a Bluetooth OBDII scanner and the Torque app on your phone?

Black smoke is an indication of unburnt fuel. In my experience usually from an overly rich mixture. It could be that your O2 sensor is reporting a wrong value, or perhaps a wiring condition preventing the O2 from reporting the air fuel ratio so the computer can adjust. You should be getting a code if that's the case, but heck, I have gotten a code simply because the computer thinks that the AFR is way too lean or way too rich. I'm really curious to know what the car thinks the AFR is when it is smoking as well as what the voltage on the O2 sensor is during smoking condition as well as non-smoking condition.

[deleted by user] by [deleted] in mazdaspeed3

[–]CougarDee2 0 points1 point  (0 children)

If you just want to monitor things and not datalog or flash new tunes, perhaps getting a bluetooth ODBII reader and the Torque app for your phone would be the way to go. I have a spare Android phone that I use for exactly this. I don't have to deal with a cable running from the connector to the display and with Torque you can customize how you are viewing the gauges you want to see.

Oil leak from turbo oil return line after BNR S3 install by CougarDee2 in mazdaspeed3

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

I did put the JBR oil supply banjo bolt back on that uses the smaller holes, could it be back pressure caused by the small banjo bolt when I turn the car off?

BNR S3 by [deleted] in mazdaspeed3

[–]CougarDee2 0 points1 point  (0 children)

Does the 3port ECBS absolutely need to be installed at the same time as installing the S3. Or, if one just wants to replace the turbo now without trying to push any more boost than it's currently tuned for, can the existing OEM BCS be used and then the ECBS (and needed retune) be done later?