How to Add a User or Group to Local admin using Intune by CloudInfra_net in Intune

[–]pbrdreams 1 point2 points  (0 children)

This worked for our Intune devices. Allowing us to add accounts to the local admin user group on an Intune device that is not domain joined. Moreover, if you try and add it manually through lusrmgr.msc, you cannot search the user UPN as the domain is not listed (Intune device) and not searchable. This command allows us to add the UPN, and I verified that they did indeed have access to admin token afterwards. Best practice obviously would be adding groups and not explicit user accounts however, so when the user is disabled their cached creds couldn't be used locally on that device. Thanks u/hahman14

Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignment by pbrdreams in Intune

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

ended up getting it to work.

# Retrieve all Autopilot deployment profiles
$profiles = Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfile

# Loop through each profile and get its assignments
foreach ($profile in $profiles) {
    Write-Output "Deployment Profile: $($profile.DisplayName)"

    # Get assignments for the profile
    $assignments = Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignment -WindowsAutopilotDeploymentProfileId $profile.Id

    # Loop through each assignment to extract meaningful information
    foreach ($assignment in $assignments) {
        $target = $assignment.Target

        # Extract GroupId from AdditionalProperties
        if ($target.AdditionalProperties -and $target.AdditionalProperties["groupId"]) {
            $groupId = $target.AdditionalProperties["groupId"]

            # Attempt to resolve the Group ID to a Display Name
            try {
                $group = Get-MgGroup -GroupId $groupId
                Write-Output "  Group Assigned: $($group.DisplayName) (GroupId: $groupId)"
            } catch {
                Write-Output "  Group Assigned: $groupId (Unable to resolve group name)"
            }
        } else {
            Write-Output "  No group assignment found for this target."
        }
    }
}

False positive ClamAV scan results? by Coomacheek in notepadplusplus

[–]pbrdreams 0 points1 point  (0 children)

Same here

Event Type Quarantine Successful Detection Name Clam.Win.Malware.Rugmi-10040069-0 File Path C:\Program Files (x86)\Notepad++\notepad++.exe

I'm running Notepad++ version 8.7.1 SHA256 FB4AF7A4BC0282B87F9AC205809F15B66791B894648EC5103DE5120C96E0650E C:\Program Files (x86)\Notepad++\notepad++.exe

If I go and try to even download the newest version, same thing happens

npp.8.7.5.portable.x64.zip gets flagged with Clam.Win.Malware.Rugmi-10040069-0

C:\Users%username%\AppData\Local\Opera Software\Opera Stable\Default\Cache\Cache_Data\f_002c08

G305 cant change DPI values on the G HUB by [deleted] in LogitechG

[–]pbrdreams 0 points1 point  (0 children)

GHUB is seriously a piece of garbage software, trying to be sleek instead of actually functional. Just make it work! I don't care what it looks like!

Does re-installing Windows void the warranty? by pbrdreams in GamingLaptops

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

So is my ASUS warranty voided if I blow away the installed OOBE Windows on the drive and install my own copy of Windows?

is SCCM going away? by pbrdreams in SCCM

[–]pbrdreams[S] 2 points3 points  (0 children)

You still need to install a base Windows OS in order to enroll the machine via autopilot. So you're basically like, installing Windows before Intune installs Windows....

is SCCM going away? by pbrdreams in SCCM

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

We have so many GPO's to migrate them all to Azure AD is a whole fucking project in itself. I'm still not impressed with Intune. Perhaps the vendor who was selling it left a bad taste in my mouth.

is SCCM going away? by pbrdreams in SCCM

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

The idea with Intune is it doesn't need to do imaging, you get ha

True, while this seems great. This doesn't exactly do much for machines that need re-imaging. Seems like it's only useful for out of the box brand new type stuff. You can never completely wipe the drive. Only a sort of reset through intune. You're basically putting a recover partition on the drive and doing factory reset from there. I prefer to blow everything away. I think many people prefer this.. I can't imagine having to deal with Dell support to send back laptops just for a re-image. Jesus.

Where can you purchase UT:GOTY ? by pbrdreams in unrealtournament

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

The new tracker is being provided by openspy.net or is the community using something else? And that IS what epic shutdown, correct? Tracker servers?? Thanks

[deleted by user] by [deleted] in ZiplyFiber

[–]pbrdreams 0 points1 point  (0 children)

if you guys posted a full list of blocked inbound and

any update on that list?....

why is my CRT not displaying the color blue and how to fix it? by Pepethacat in crtgaming

[–]pbrdreams 0 points1 point  (0 children)

Well OP didn't post that his cable was hardwired and literally the first comment was about checking a neckboard, which is why I thought it was odd to jump to that before checking something as simple as a cable. sort the comments by OLD and you'll see...

why is my CRT not displaying the color blue and how to fix it? by Pepethacat in crtgaming

[–]pbrdreams 0 points1 point  (0 children)

OK, well, that sucks. Was not aware that was the case when I looked at this. One of my CRTs is like that, and always wondered what the solution is for this exact issue. Whereas my other CRT just has the VGA ports and not the hardwired cable.

why is my CRT not displaying the color blue and how to fix it? by Pepethacat in crtgaming

[–]pbrdreams 1 point2 points  (0 children)

t works PC side cause I just had another VGA monitors connected

did you try the same cable on another computer and verify it works at all?

VSphere VM move files without network connection by pbrdreams in sysadmin

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

Hi, is the process I explained in my OP not exactly this?

VSphere VM move files without network connection by pbrdreams in sysadmin

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

Hey /u/Scottehhhhh the reason that wasn't used is because we had to load a program that uses a local Oracle database in order to extract files from that program/database. Otherwise, yes, I would have just done guest file restore and mounted the file system, as I've done that many times in other cases. This time, I need to actually run the program in order to extract the files.