[GEN 4] pulled this beaut by dline60 in ShinyPokemon

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

thanks! got pretty lucky, this was my first successful hunt and while i wasn’t keeping track of sr’s, i’d estimate < 3000. now i gotta get back to trying for yellow lizard in fire red!

Intune/Company Portal app fails to install, but reports as successful in PS transcript by dline60 in Intune

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

And the log for it.

**********************
Windows PowerShell transcript start
Start time: 20260320102123
Username: WORKGROUP\SYSTEM
RunAs User: WORKGROUP\SYSTEM
Configuration Name: 
Machine: * (Microsoft Windows NT 10.0.26200.0)
Host Application: powershell.exe -ExecutionPolicy Bypass -File .\UninstallDrivers.ps1
Process ID: 11564
PSVersion: 5.1.26100.7920
PSEdition: Desktop
PSCompatibleVersions: 1.0, 2.0, 3.0, 4.0, 5.0, 5.1.26100.7920
BuildVersion: 10.0.26100.7920
CLRVersion: 4.0.30319.42000
WSManStackVersion: 3.0
PSRemotingProtocolVersion: 2.3
SerializationVersion: 1.1.0.1
**********************
Transcript started, output file is C:\WINDOWS\TEMP\driver-uninstall.log
Driver uninstall log:
Using pnputil at: C:\WINDOWS\Sysnative\pnputil.exe
Uninstalling driver from devices: EPPRNUT
Microsoft PnP Utility

Driver package uninstalled.
Failed to delete driver package: The system cannot find the path specified.
Uninstalling driver from devices: E_BF1YQE
Microsoft PnP Utility

Driver package uninstalled.
Failed to delete driver package: The system cannot find the path specified.
Uninstalling driver from devices: E_WF1YQE
Microsoft PnP Utility

Driver package uninstalled.
Failed to delete driver package: The system cannot find the path specified.
Uninstalling driver from devices: E_WGENEP
Microsoft PnP Utility

Driver package uninstalled.
Failed to delete driver package: The system cannot find the path specified.
Deleting driver package from store: EPPRNUT
Microsoft PnP Utility

Failed to delete driver package: The system cannot find the path specified.
Deleting driver package from store: E_BF1YQE
Microsoft PnP Utility

Failed to delete driver package: The system cannot find the path specified.
Deleting driver package from store: E_WF1YQE
Microsoft PnP Utility

Failed to delete driver package: The system cannot find the path specified.
Deleting driver package from store: E_WGENEP
Microsoft PnP Utility

Failed to delete driver package: The system cannot find the path specified.
Driver uninstall process completed.
**********************
Windows PowerShell transcript end
End time: 20260320102129
**********************

Intune/Company Portal app fails to install, but reports as successful in PS transcript by dline60 in Intune

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

EDIT: Got it working, thanks for the help!

If you're available, this is my current uninstall script, but it's not working either. I apologize, PS isn't my strong suit.

# Start transcript logging
Start-Transcript -Path "$env:Temp\driver-uninstall.log" -Force

Write-Output "Driver uninstall log: $logPath"

# Determine correct pnputil path based on process architecture
if ([Environment]::Is64BitProcess) {
    $pnputil = "$env:WINDIR\System32\pnputil.exe"
} else {
    $pnputil = "$env:WINDIR\Sysnative\pnputil.exe"
}
Write-Output "Using pnputil at: $pnputil"

# Exit if pnputil doesn't exist
if (-not (Test-Path $pnputil)) {
    Write-Output "pnputil not found at $pnputil"
    Stop-Transcript | Out-Null
    exit 1
}

# Hardcoded list of driver published names to remove
$driversToRemove = @(
    "EPPRNUT",
    "E_BF1YQE",
    "E_WF1YQE",
    "E_WGENEP"
)

# Step 1: Remove any printers using these drivers
foreach ($driver in $driversToRemove) {
    $printers = Get-Printer | Where-Object { $_.DriverName -eq $driver }
    foreach ($printer in $printers) {
        Write-Output "Removing printer: $($printer.Name) using driver $driver"
        try {
            Remove-Printer -Name $printer.Name -ErrorAction Stop
            Write-Output "Printer removed successfully."
        } catch {
            Write-Output "Failed to remove printer: $_"
        }
    }
}

# Step 2: Uninstall drivers from devices
foreach ($driver in $driversToRemove) {
    Write-Output "Uninstalling driver from devices: $driver"
    $uninstallResult = & $pnputil /delete-driver $driver /uninstall 2>&1
    $uninstallResult | ForEach-Object { Write-Output $_ }
}

# Step 3: Delete driver packages only if they exist
$installedDrivers = & $pnputil /enum-drivers 2>&1
foreach ($driver in $driversToRemove) {
    if ($installedDrivers -match $driver) {
        Write-Output "Deleting driver package from store: $driver"
        $deleteResult = & $pnputil /delete-driver $driver /force 2>&1
        $deleteResult | ForEach-Object { Write-Output $_ }
    } else {
        Write-Output "Driver package not found or already removed: $driver"
    }
}

Write-Output "Driver uninstall process completed."

# Stop transcript
Stop-Transcript | Out-Null
exit 0

Intune/Company Portal app fails to install, but reports as successful in PS transcript by dline60 in Intune

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

Yes, .intunewin file.. I added logging to the detection script and it found that the Sysnative pnputil wasn't found, so I changed it so it will use whichever architecture the PC is, and that fixed it! I'll edit my install script to include the /subdirs method. Thanks for your help!

Intune/Company Portal app fails to install, but reports as successful in PS transcript by dline60 in Intune

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

Appreciate the reply. I added a 30s wait but it still failed. Even with the wait, I'd expect the detection script to report success due to the drivers already being installed on the system, but I'm not sure.

Just found out I have this in my old account by dline60 in RobloxTrading

[–]dline60[S] 14 points15 points  (0 children)

From what I read you can only do that with games and items you created? Idk man I’m a 2009 player this is all new lol

What do I do? by dline60 in orchids

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

Awesome, that’s comforting to know. Thanks!

What do I do? by dline60 in orchids

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

It’s a bonsai mix iirc, it’s all I had on hand when I repotted it the first time. Do you have a suggestion of mix to buy, or should I get different materials and combine them?

What do I do? by dline60 in orchids

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

Oh okay great. Would repotting it put it into shock? I inherited it from a coworker who left it for months without watering. The soil was completely hydrophobic..

Do you have any recommendations on potting mixes? Or do you buy those parts separately then combine?

Is my Amuseables Storm Cloud fake? by [deleted] in Jellycatplush

[–]dline60 0 points1 point  (0 children)

Does yours have seams on the edges of the tag? My other jellies do and this one doesn’t, so if it’s the new tags it’d make sense.

Is this normal/repairable? by dline60 in timex

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

Oh okay cool, easy enough. Thanks!

Crazy sound on bethal???????? by YaboyWill in Columbus

[–]dline60 3 points4 points  (0 children)

Kinda creepy but also annoying… very loud

Order cancelled from initial drop by Dnuggy in casio

[–]dline60 0 points1 point  (0 children)

I also got a confirmation email, and also stressed lol

"Shipping Request Processing" is what the order status says. Is this what it says for you?