what did you learn today? (part 2)

I still can't login at all to the Broadcom site.
I regenerated my account when I got the Broadcom email, verified I could login, and then waited for the Tsunami changover to occur.
Changeover occurred and I tried logging in, and it doesn't even recognise my account at all.
I passed this up the chain to the person negotiating with Broadcom so that we could pay them money and got an inside contact.
I've emailed roughly once a week and get back (paraphrased) "I'm doing what I can but your account is screwed and nothing can be done at this time".
Oncall has verily luckily been quiet.

Well, I spent all day with Broadcom support yesterday trying to get it fixed. The results? Hung up on twice so I had to requeue as no ticket was created in that time even though they said they were going to, 3rd call I got a Zoom because they said I had rights to my entitlements so they saw nothing wrong. Zoom showed the issue so they got it partially fixed. I can now see and download 1/3rd of my entitled software but not the stuff I need right now so new case created to investigate that now. In the process of doing that my account is no longer valid in the support portal (happened after I logged out after the zoom session) so I cannot actually see the case that was created nor can I create a new case, I have to call in again. I've been summarizing the woes with all this to my boss every week as more reason to ditch vmware for something else.
 
  • Wow
Reactions: Paladin

sryan2k1

Ars Legatus Legionis
44,493
Subscriptor++
Well, I spent all day with Broadcom support yesterday trying to get it fixed. The results? Hung up on twice so I had to requeue as no ticket was created in that time even though they said they were going to, 3rd call I got a Zoom because they said I had rights to my entitlements so they saw nothing wrong. Zoom showed the issue so they got it partially fixed. I can now see and download 1/3rd of my entitled software but not the stuff I need right now so new case created to investigate that now. In the process of doing that my account is no longer valid in the support portal (happened after I logged out after the zoom session) so I cannot actually see the case that was created nor can I create a new case, I have to call in again. I've been summarizing the woes with all this to my boss every week as more reason to ditch vmware for something else.
At this point you should engage your VAR/Reseller and lean on them to get this fixed via the partner channels.
 

w00key

Ars Praefectus
5,908
Subscriptor
Ugh Microsoft. TIL about Get-Unique and also the list you feed it has to be sorted for it to work, not that it's hard but still.


If you feed it "A,A,B,B,C,C" You'll get "A,B,C" out, but if you Feed it A,B,C,A,B,C you'll get A,B,C,A,B,C out.
Oh just like uniq on the other side.

Note: 'uniq' does not detect repeated lines unless they are adjacent. You may want to sort the input first, or use 'sort -u' without 'uniq'.
 

DrWebster

Ars Praefectus
3,770
Subscriptor++
they've never had decent client tooling for this
Well Windows Update has generally always been a dumpster fire in one way or another, but I've been using a VBScript to do basic patch installation for almost a decade now with good success. But Microsoft is killing VBScript because they want everyone to move to PowerShell. Hence it's rather amusing that they don't have a native module for that. The good news is the linked project is rather robust (and gives me more options than the VBScript ever did).
 
TIL I learned of the RailRunOnce registry key, a special registry key to run apps at startup of a Windows RDP Services Server session. This key is separate from all the other Run keys to auto-launch apps in Windows.
The most common use, as was mine, was to let OneDrive run in the background so a RemoteApp can use the user's OneDrive folders.
 

SandyTech

Ars Legatus Legionis
13,235
Subscriptor++

Looks like Teamviewer has been hacked again.
 

exadeath

Smack-Fu Master, in training
94
they've never had decent client tooling for this
TIL that Microsoft doesn't have a first-party module for managing Windows updates (checking for them, installing them, etc) through PowerShell. You have to rely on an open-source project for that.
A plug for another tool that leverages powershell (same module as pswindowsupdate I think) for updates And rolls in other updating like chocolatey.

Sadly microsoft changed some tooling in the later versions of Windows 11 that breaks both topgrade and pswindowsupdate.
-I think it works fine on Windows 10 and maybe Server OS, still, until they fix that glitch too.

(champing at the bit to get Windows 11 LTSC, it has gone gold but not released beyond partners. Yes, I work for a partner(just too far removed from the microsoft feed) so it isn't technically illicit..)
 
When Microsoft started forcing updates in Windows 10 (which you find in my posting history over the years that I mostly agree with that direction) I expected Windows Update to get some decent PowerShell support. At the very least, I wanted something that could kick off updates from the command line reliably, something I've wanted built-in for years since PSWindowsUpdate requires changes to the default execution policy.

Instead, we get the retirement of wuauclt and the Windows Update log requiring a new PowerShell command to be read. So I guess we got some form of PowerShell, just not anything useful.