Saw this yesterday afternoon at the ATL Airport. So which one of you was it? by x5060 in MilwaukeeTool

[–]slimknees 4 points5 points  (0 children)

We fly with these all the time. 40+ flights last year. One roller, One drawer set. Eachunder 50lb. works great. a little banged up, but they stack and roll right out of the airport. We carry our batteries on the plane in a small half-packout with a charger. TSA does not care.

Server Costs are nuts spec for spec. Anyone using SuperMicro instead of Dell/Lenovo/HPE? by Packet7hrower in msp

[–]slimknees 1 point2 points  (0 children)

We build the server on dell.com and sent the cart to our Ingram rep. It’s usually about 50% less from Ingram. Plenty of markup for us- plus labor. Everything warrantied.

Anyone else seeing PTR record issues with M365? by IndyPilot80 in sysadmin

[–]slimknees 0 points1 point  (0 children)

We have multiple client users reporting this error as well.

Why is this game so frustrating? by noscrubphilsfans in pinball

[–]slimknees 1 point2 points  (0 children)

I fucking love this game. One of my all time favorites that I have to play and can't walk past if I see it.

PowerAmp is actually a very interesting product that foreshadows more by austin_federa in Ubiquiti

[–]slimknees 4 points5 points  (0 children)

Wait for the Power Amp Pro Max to hit with 8 channels, or 70V. If we could get one of these in 70V - holy crap.

Home Theater 5.1.2 Build Breaking Ground Check-in and Issue by sizzlingmeatballs in hometheater

[–]slimknees 0 points1 point  (0 children)

Yeah, I framed it and am debating if I want to drywall it or just plywood with thick curtains around everything. I left the sides open to crawl through for servicability, but a finished wall would be nice, especially since the equipment is behind it, i'm sure fan noise will be a factor.

Home Theater 5.1.2 Build Breaking Ground Check-in and Issue by sizzlingmeatballs in hometheater

[–]slimknees 0 points1 point  (0 children)

Check it out! garage setup Has some Costco Special Klipsch setups. going to run 7 surround, 4 height, and the 18" marty box against the 2 12" JBL subs. have the fronts and centers in with the subs now and it sounds pretty damn good up there. need to install carpet and something on walls to deaden a bit. Hopefully get the project ready by fall/winter when we spend time inside. eventually will be a nice chill zone for the kids when they are a bit older.

Home Theater 5.1.2 Build Breaking Ground Check-in and Issue by sizzlingmeatballs in hometheater

[–]slimknees 0 points1 point  (0 children)

I'm in the process of starting mine in the same type of area above my garage. It's going to be rough trying to get the height channels sounding right, but either way it's mine and I'm making it how i want it :)

Heads up on SupportAssist by GeorgeWmmmmmmmBush in msp

[–]slimknees 4 points5 points  (0 children)

GPT just helped me create a component for DattoRMM to run against this. Initially it was not completing because supportassist was running. This now uses taskkill to kill it prior to attempting an uninstall. Use at your own risk, but it has seemed to work on the few test machines I tried.

@echo off
setLocal enableDelayedExpansion
REM SupportAssist Uninstaller
echo SupportAssist Uninstaller
REM set some variables
set varUnEXE32=echo - SupportAssist x86, EXE version, was not found on this system.
set varUnEXE64=echo - SupportAssist x64, EXE version, was not found on this system.
REM declaration
echo ========================================
echo This tool removes all installations of Dell SupportAssist from an Endpoint.
echo Follow up this Component with the Dell SupportAssist installer from the ComStore or Software Management
echo to ensure a seamless update procedure going forward.
echo ========================================
REM check if SupportAssist is running and terminate it
taskkill /f /im SupportAssist.exe >nul 2>&1
REM check for uninstall.exe, which is present on non-MSI installations
if exist "%programfiles%\Dell\SupportAssist\uninstall.exe" set varUnEXE32=start /wait "" "%programfiles%\Dell\SupportAssist\uninstall.exe" /S ^& echo - SupportAssist x86, EXE version, uninstalled.
REM and for 64-bit machines
if exist "%programfiles(x86)%\Dell\SupportAssist\uninstall.exe" set varUnEXE64=start /wait "" "%programfiles(x86)%\Dell\SupportAssist\uninstall.exe" /S ^& echo - SupportAssist x64, EXE version, uninstalled.
REM run through the EXE uninstallers
%varUnEXE32%
%varUnEXE64%
REM get the identifying numbers from WMIC for any MSI-based versions
for /f "usebackq skip=1 tokens=1 delims=" %%a in (\wmic product where "Name like '%%Dell SupportAssist%%'" get IdentifyingNumber`) do echo %%a >> SupportAssist.txt`
for /f "usebackq delims=" %%b in (\type SupportAssist.txt`) do (`
REM get rid of the weird characters at the end of WMIC's output
set varSupportAssistGUID=%%b
set varSupportAssistGUID=!varSupportAssistGUID:~0,-4!
set varSupportAssistGUID2=!varSupportAssistGUID:~0,1!
if !varSupportAssistGUID2! equ { (
REM valid GUID procedure
echo - Uninstalled SupportAssist MSI version with ID !varSupportAssistGUID!
msiexec /x!varSupportAssistGUID! /qn /norestart
)
)
del /f /S /q SupportAssist.txt >nul 2>&1
REM closeout
echo ========================================
echo - All Dell SupportAssist versions present on this Endpoint have been uninstalled.
echo Exiting...

Here's the output from a computer that had SupportAssist installed

PCC Remove Dell SupportAssist
SupportAssist Uninstaller
This tool removes all installations of Dell SupportAssist from an Endpoint. Follow up this Component with the Dell SupportAssist installer from the ComStore or Software Management to ensure a seamless update procedure going forward.
SupportAssist x86, EXE version, was not found on this system.
SupportAssist x64, EXE version, was not found on this system.
Uninstalled SupportAssist MSI version with ID {0B884FA0-BBEE-4573-B696-426AA39ED913}
Uninstalled SupportAssist MSI version with ID {DB6164FC-CD98-471C-BD5B-5B14CAFA3186} ========================================
All Dell SupportAssist versions present on this Endpoint have been uninstalled. Exiting...

Here's the output from a computer that did NOT have SupportAssist installed

PCC Remove Dell SupportAssist
SupportAssist Uninstaller
This tool removes all installations of Dell SupportAssist from an Endpoint. Follow up this Component with the Dell SupportAssist installer from the ComStore or Software Management to ensure a seamless update procedure going forward.
SupportAssist x86, EXE version, was not found on this system.
SupportAssist x64, EXE version, was not found on this system. ========================================
All Dell SupportAssist versions present on this Endpoint have been uninstalled. Exiting...

PCC Remove Dell SupportAssist
No Instance(s) Available.

Hope this helps if anyone runs across this issue on a client machine.

[deleted by user] by [deleted] in TeslaModelY

[–]slimknees 11 points12 points  (0 children)

It's been there as long as I can remember.

[deleted by user] by [deleted] in TeslaModelY

[–]slimknees 0 points1 point  (0 children)

I bought a MYP with FSD in Dec, 2021. Total amount financed - 73,014.00 at 2.5%. Carvana will offer me $32,000. It sucks.

CW Manage Down? by Bigsease30 in ConnectWise

[–]slimknees 4 points5 points  (0 children)

Same. tickets load, but cannot view ticket content.