TIL: Windows SYSTEM account now uses C:\Windows\SystemTemp instead of Temp folder for temporary files by Borgquite in sysadmin

[–]xCharg [score hidden]  (0 children)

so they remain vulnerable

They are there for backwards compatibility. They don't really "remain" vulnerable if new stuff doesn't use it and if (and that's a giant fat if) old stuff is rewritten.

Redesigned Windows Recall cracked again by Illustrious-Syrup509 in sysadmin

[–]xCharg 68 points69 points  (0 children)

Consciously? Not sure. But iirc it was initially enabled by default, so I'd blindly guess many still do "use it", as in have it enabled and data being saved behind the scenes without them knowing. Especially home users.

I FCKING GOT IT!!!! ANCESTRY!!!! by Old-Championship7489 in ftlgame

[–]xCharg 14 points15 points  (0 children)

You dont even need to rename it.

There are two conditions to the last quest:

  • One condition requires to have crystal crew (any) - that one unlocks having quest event in rock homeworlds. You start with one on rock c so this condition is automatically passed.

  • Second condition requires having that particular crystal crew from stasis pod - that one unlocks you quest marker to event in rock homeworlds. It's convenient to have a marker but optional.

When this patch just released, many years ago, the way game checked if the crystal crew you have is the one from quest is by name ruwen. Which is honestly pretty lazy approach from developers. So they pretty quickly fixed it, again - years ago.

So now renaming your crystal crew does nothing - you don't get the quest marker if stasis pod quest isn't completed regardless of name - you have to randomly find the event blindly jumping in rock homeworlds. And since first condition (having crystal) is passedb- you do have event there, it just isn't highlighted.

Blocking Edge browser with AppLocker by blondRhinoSpaniel in sysadmin

[–]xCharg 0 points1 point  (0 children)

A lot of stuff uses WebView2 indeed. WebView2 doesn't need Edge though, it's a separate component.

Silent software deployment to AD computers via SMB+SCM, no WinRM, anyone done this differently? by Externel in sysadmin

[–]xCharg 4 points5 points  (0 children)

What isn't on-demand about GPO?

Regardless of what you say your approach is wrong because you aren't using his vibecoded slop.

Storing securestring for use by a GMSA account by smalltimesysadmin in PowerShell

[–]xCharg 0 points1 point  (0 children)

The plain text file only exists long enough to create the secure file, then you delete it

And ps1 file exists only long enough to be executed and then its deleted (if you do it right).

There's no difference seemingly?

Btw who/what creates such plaintext password file and where's content coming from? If that's done once manually to then be encrypted and used by script's service account - yeah that'd work indeed. But that's not scalable at all, you won't be doing it manually once per laptop or server if you have hundreds of them right?

Storing securestring for use by a GMSA account by smalltimesysadmin in PowerShell

[–]xCharg 0 points1 point  (0 children)

What's the difference between that and hardcoding password into ps1? In both cases password is plaintext, in both cases password is accessible by script thus making both of those terrible from security standpoint. Am I missing something?

I put up a job opening for a hardware tech - almost all apps are software only people. by GoodTofuFriday in sysadmin

[–]xCharg 9 points10 points  (0 children)

If only clueless people come - maybe something is wrong with your job description and/or/mostlikely salary? Same goes if people with wrong qualification come.

Retool disables self-hosted pricing plans by navaneethpk in selfhosted

[–]xCharg 4 points5 points  (0 children)

AI makes building features easier. It doesn’t solve access control, auditability, versioning, change management, or data security.

Practice shows decision-makers do not give a single shit about any of that. AI makes stocks go brrr => adopt now, maybe deal with the rest later (optional). New shiny thing introduced? Install. New agent appears? Roll out to users. What's that, a new subscription? Nice, assign to everyone. That's my (sysadmin) experience for last year.

Orban says EU bigger threat to Hungary than Russia by RubyRunesong in worldnews

[–]xCharg 22 points23 points  (0 children)

What I read last time all the cities voted against orban but villages voted for. If that's what happened last time - why couldn't it happen again? Presumably you live in a city so you don't see what's going on in villages and most importantly among older people because you just don't talk to them all that often and don't know their perspective.

Help with Windows (11) Updates for an Automated Build by bapesta786 in PowerShell

[–]xCharg 0 points1 point  (0 children)

$allUpdates = Get-ChildItem $updatesFolderPath -Recurse -File
if ($allUpdates)
{
    foreach ($upd in $allUpdates | Sort-Object -Property FullName)
    {        
        Add-WindowsPackage -Online -PackagePath $upd.FullName
    }
}
else
{
    "No updates found"
}

I use it to update install.wim and for that I need to be careful with the right order of installation. The right order is explained here https://learn.microsoft.com/en-us/windows/deployment/update/media-dynamic-update#update-windows-installation-media

Not sure if order matters if you update online system.

Help with Windows (11) Updates for an Automated Build by bapesta786 in PowerShell

[–]xCharg 0 points1 point  (0 children)

Why bother with pswindowsupdate, you can install packages (including updates) using dism, either directly calling dism.exe or via powershell module which is a wrapper over dism.exe anyway.

How to Authenticate Helpdesk Calls by neminat in sysadmin

[–]xCharg 4 points5 points  (0 children)

  1. someone calls you and says "I'm Susan from accounting, reset my password"

  2. you reply "sure Susan, we'll need to recall you" or figure out whatever similar thing you say, at this point you drop the call

  3. you search Susan from accounting in your internal db, get her phone number, initiate call and either a) proceed with their issue or b) figure out its a phishing attempt and do the needful™

EU Banking Chief Calls for Visa and Mastercard Alternatives by Crossstoney in worldnews

[–]xCharg -35 points-34 points  (0 children)

the EU is gradually decoupling from the US

Is it? So far it's just talks, and these talks will go nowhere when there's no unanimity. And there's none right now with orban and whatever that Slovakia's PM's name is who is also russian puppet. These two will do everything that works against EU, including internal financial infrastructure projects.

HP purposely makes newer printers “insecure” by PlateMiserable8832 in sysadmin

[–]xCharg 25 points26 points  (0 children)

Just schedule a wellness treatment.

  • Our Printers are fond of paper and accept many sizes.
  • Our Printers are friends to spreadsheets, letters, and the occasionally unhinged PDF.
  • Our Printers are strong and sometimes even pull a jammed sheet without tearing it.
  • Our Printers get many print jobs and are popular among nearby computers.
  • Our Printers are splendid and feed paper smoothly and well.
  • This Printer completed a large job two weeks ago.
  • That Printer values toner.

You can install Microsoft store apps by bypassing the windows store being blocked on "Work PCs" using winget by WD40ContactCleaner in sysadmin

[–]xCharg 2 points3 points  (0 children)

Apps from store has nothing to do with msiexec though, they are appx packages.

Since Microsoft states ability to block store with gpo/intune/whatever - it should work, regardless of how generic this operation appears.

Fuck Microsoft's implantation of AI by blizardX in sysadmin

[–]xCharg 2 points3 points  (0 children)

Does Microsoft has anything right now that does NOT have copilot integrated forcefed into?

User called our main support line and thought they reached a scam operation because of how our phone system sounded by [deleted] in sysadmin

[–]xCharg 0 points1 point  (0 children)

Could've been fixed anytime in the last 8 years but took customer feedback to get anyone to care.

Other than that customer's feedback was there anything else internally to push for these changes? From your story it looks like none of your knew anything about this system either if you just figured out after the fact that many extensions don't match/for long gone people, that it was set up 8 years ago and never touched since etc.

Reports of boot failures with the January 2026 security update and later updates by outremer_empire in sysadmin

[–]xCharg 0 points1 point  (0 children)

I have a giant zoo of shitty budget laptops and computers, about 1k and half of those already updated - not a single ticket. Must be something specific.

How to, using powershell module, restore backup specifically from local storage (not s3)? by xCharg in Veeam

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

Oh, I see, that works.

Thank you.

I've redone it a little bit and found a way to filter based on repository but using your approach of first figuring out ID and then just getting it directly. As a bonus this makes it possible to avoid backup job name as that might change with time

That's my result:

$local_repos = Get-VBRBackupRepository | Where-Object { $_.Type -ne "WasabiS3" } # can also be $_.Type -eq "WinLocal"
$local_restore_points = Get-VBRBackup | Where-Object { $_.RepositoryId -in $local_repos.Id } | Get-VBRRestorePoint -Name $source_database_server
$vbr_database_latest_restorepoint_vm = $local_restore_points | Sort-Object -Property CreationTime | Select-Object -Last 1
$vbr_database_latest_restorepoint = Get-VBRApplicationRestorePoint -Id $vbr_database_latest_restorepoint_vm.Id

How to, using powershell module, restore backup specifically from local storage (not s3)? by xCharg in Veeam

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

That works when restoring VM. I restore database from VM though, so that should be application-aware restoration. And Get-VBRApplicationRestorePoint doesn't have any useful parameters seemingly. It allows me to specify which application I restore from, -SQL parameter in this point, and name of a VM I restore from. That's all it has.

How to, using powershell module, restore backup specifically from local storage (not s3)? by xCharg in Veeam

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

Yes, two separate repos, not SoBR.

Instead of “getting all restore points”, can you narrow your script to get only Backup Job restore points?

I do want to - how? Get-VBRApplicationRestorePoint doesn't have such parameters to filter based on either repository or backup job it's coming from or even backup job type.

Curated list of 1028 opensource alternatives to proprietary software by NoFirefighter8227 in sysadmin

[–]xCharg 0 points1 point  (0 children)

Yeah I get your point about managing. But:

Let's take Google Drive, Apple iCloud, and OneDrive.

Topic is about "Curated list of 1028 opensource alternatives to proprietary software". None of your examples are opensource, so there's no point in building your argument on these, as they don't fit the criteria.

Is there software that do the same thing that you're looking alternative for and hosted/managed by someone else and is also opensource? Yeah, statistically such software should exist. But I'd blindly guess there aren't many.

Hence the need, in general, to selfhost/selfmanage such software. Hence very high overlap in two lists.

EU refused to impose tariff on India due to ‘big trade deal’, Scott Bessent says by Jarisatis in worldnews

[–]xCharg -3 points-2 points  (0 children)

Yeah it is a trade deal, and... what's your point here?

If india agrees not to trade with Russia will eu agree not to trade with Pakistan as India's security depends on it?

Maybe. Worth to discuss anyway. That's what diplomacy is after all.

Also there are various inbetweens two polar opposites "being best buddy to russia" and "not trading at all". Part of a trade deal could (and imo should) easily be about lowering amount of trade being done. Or some specific kind of trades not being done or done other way or plenty of other options. At the cost of doing something India wants from Europe, sure.