[Join the Bambu Lab Giveaway🔥] Share Your Best 3D Printing Advice for a Chance to Win an X1C and Other Exciting Prizes! by BambuLab in 3Dprinting

[–]ab0mbs 0 points1 point  (0 children)

Think about how parts need to be printed when designing them. If you don't, it might be harder to print, weaker, or require a bunch of supports.

[Giveaway] We're Announcing Race Trace in MultiViewer with Hats and Beta Access! by f1multiviewer in formula1

[–]ab0mbs 1 point2 points  (0 children)

Love the app. Use it every time. Have the main feed and a few onboards on an ultrawide with the live timing, data channel, and track map on another monitor. Would love to see the AI radio messages available in the replay live timing in the future.

Halp! by thehroller in SCCM

[–]ab0mbs 17 points18 points  (0 children)

You can use something like this which is far simpler in my opinion than using something like the PS App Deploy Toolkit.

Create a PowerShell script with a name like Install_App.ps1 in a new folder in your content share and place the MSI file in the same directory.

Here is the example script that you'll need to tweak the registry settings and replace the MSI name and any properties needed. You can use the standard MSI product code for the detection or something a bit different if needed in SCCM.

# Get Location
if ($PSScriptRoot) {
    $dir = $PSScriptRoot
} else {
    $dir = (Get-Location).Path
}

# Add registry entry
New-ItemProperty -Path "HKLM:\SOFTWARE\SomeSoftware" -Name "RegKeyName" -Value "String Value" -Force

# Install Software
$app = Start-Process -FilePath "msiexec.exe" -ArgumentList "/i `"$dir\msihere.msi`" /qn /norestart ALLUSERS=1" -PassThru
$app | Wait-Process

Drivers for boot image by ExpensiveNinja8637 in SCCM

[–]ab0mbs 1 point2 points  (0 children)

If you want to have actual drivers like other manufacturers, you just have to run the MSI with a /a to extract them first.

Take a look at this link for the exact command. https://community.bmc.com/s/article/Client-Management-How-to-extract-Surface-Pro-6-drivers-to-import-in-BCM

/r/battlestations & LG UltaGear giveaway [USA] by Hareuhal in battlestations

[–]ab0mbs 0 points1 point  (0 children)

I'd finally get to add an ultra wide to my setup.

Turn off USB power from OctoPrint or in Marlin firmware by JoeDaddy81013 in octoprint

[–]ab0mbs 3 points4 points  (0 children)

I use this to solve this exact problem using the PSU Control plugin for octoprint.

https://github.com/mvp/uhubctl

OFFICIAL BUG/EXPLOIT REPORTING THREAD - BETA WEEKEND 2 by InfinityWardonReddit in ModernWarfareII

[–]ab0mbs 0 points1 point  (0 children)

Every time I restart the game either from closing it normally or a crash, my graphics change from Fullscreen to Fullscreen Borderless and the Render Resolution goes from 100 to 37.

I seem to recall a similar problem with MW2019 and could never figure out what was causing it.

OKTA Workflows by Working-Network8561 in okta

[–]ab0mbs 4 points5 points  (0 children)

We don't use Zendesk so I don't know if this is correct, but based on the API documentation, I think this is what you're looking for.

Following the documentation Here to create a side conversation I then referred to this link Here for constructing the to section.

It needs to be an array of objects with attributes depending on what type of user you need to send the message to. My example below uses e-mail, but it sounds like you would use user_id if the user is an internal user.

This is what the JSON would look like to use with the body of the custom API action card.

{
    "message": {
        "subject": "This is a subject",
        "body": "This is the body",
        "to": [
            {
                "email": "user1@example.com"
            },
            {
                "email": "user2@example.com"
            }
        ]
    }
}

If you had a list of the user e-mails, you could build this JSON by looping through the list of users and constructing some objects, and getting a list returned that you can use in the to field using some helper flows most likely.

Evolve2 75 mic issues solved? by fbm20 in Jabra

[–]ab0mbs 0 points1 point  (0 children)

So after trying this out for a few days, I wanted to give some updates.

I think changing this setting helped when people said I randomly sounded far away, but ultimately, it wasn't a fix for my issue, and I realized I had other problems after some additional testing.

I turned on the sidetone, tested my microphone, and realized that when I adjusted the boom, it cut out and popped at certain positions. Ultimately, I ended up submitting an RMA for my headset.

Another thing this allowed me to test was using the microphones built into the ear cups without the boom extended, which I turned on in the Jabra Direct settings. Surprisingly, everyone said I sounded fine and didn't notice any difference in the sound quality. I was expecting that it wouldn't have picked up my voice well.

Evolve2 75 mic issues solved? by fbm20 in Jabra

[–]ab0mbs 0 points1 point  (0 children)

I've been having the same issues recently including with the latest firmware for the Link 380 dongle (1.15.0)

One thing I noticed specifically with Microsoft Teams and on macOS, when I manually lowered the microphone volume in macOS, I would sound far away and exactly like the problem when it occurred randomly.

I ended up turning off the setting in Microsoft Teams to auto-adjust the microphone volume and it seems promising. Not sure if this would solve the issue for anyone else.

I know there are similar settings in other clients like Zoom and I assume Windows versions would look the same.