The Wiert Corner – irregular stream of stuff

Jeroen W. Pluimers on .NET, C#, Delphi, databases, and personal interests

  • My badges

  • Twitter Updates

  • My Flickr Stream

  • Pages

  • All categories

  • Enter your email address to subscribe to this blog and receive notifications of new posts by email.

    Join 1,854 other subscribers

Archive for 2020

Why you should not use localised operaring system versions

Posted by jpluimers on 2020/02/10

Using localised operating system versions means you have a really hard time finding the cause of an error.

In my case, a net share command gave me a Dutch “Systeemfout 1332.” “Er is geen toewijzing uitgevoerd tussen accountnamen en beveiligings-id’s.”.

Obviously searching for “net share” “Systeemfout 1332.” and “net share” “Er is geen toewijzing uitgevoerd tussen accountnamen en beveiligings-id’s.” delivered nothing, as a did shorter “net share” “Er is geen toewijzing uitgevoerd” only found [WayBack] Welkom bij ronald.repareert.com ….. sites door vrienden en kennissen which got me the error code 1332:

[WayBack] Error code 1332: No mapping between account names and security IDs was done.

This allowed me to search for “net share” “No mapping between account names and security IDs was done.” which did return some meaningful results:

The command I used was this:

mkdir D:\tmp$
net share tmp$=D:\tmp /unlimited /grant:everyone,full

The adding factor was that this was done on a machine inside a domain.

Since there was no group everyone inside the domain, it could not be bound to a SID.

Replacing the last command with net share vincent$=D:\Vincent$ /unlimited /grant:.\everyone,full or  net share vincent$=D:\Vincent$ /unlimited /grant:.\users,full dit get the same error.

But this succeeded, as gebruikers is the Dutch translation for users:

net share vincent$=D:\Vincent$ /unlimited /grant:.\gebruikers,full

So in the end:

  • use localised group names
  • be careful with group names not existing in the domain

If you wonder why I started with everyone in the first place: [WayBack] The Difference Between Everyone and Authenticated Users

In this case, the group .\everyone did not exist, not even in a translated fashion iedereen. The command net localgroup gives you an overview of existing local groups on the machine:

C:\WINDOWS\system32>net localgroup

Aliassen voor \\MYPCINDOMAIN

-------------------------------------------------------------------------------
*Administrators
*Apparaateigenaars
*Back-upoperators
*Cryptografie-operators
*DCOM-gebruikers
*Externe bureaubladgebruikers
*Gasten
*Gebruikers
*Gebruikers van extern beheer
*Hoofdgebruikers
*Hyper-V-administrators
*IIS_IUSRS
*Lezers van gebeurtenislogboeken
*Netwerkconfiguratieoperators
*Ondersteuningsoperators voor toegangsbeheer
*Prestatielogboekgebruikers
*Prestatiemetergebruikers
*Replicatie
*System Managed Accounts Group
De opdracht is voltooid.

I am still not sure why group iedereen does not exist, as I expected that to be there: [WayBack] Windows Built-in Users and Default Groups – Windows CMD – SS64.com.

It might have to do with newer Windows versions not supporting it (this machine was Windows 10, and it looks like Windows Server 2012 also has a problem: [WayBack] An error occurs while sharing folder on WS 2012 with net share command).

–jeroen

Posted in Power User, Windows | Leave a Comment »

A Map Of Wireless Passwords From Airports And Lounges Around The World (Updated Regularly) – foXnoMad

Posted by jpluimers on 2020/02/10

Way more details at [WayBackA Map Of Wireless Passwords From Airports And Lounges Around The World (Updated Regularly) – foXnoMad.

Short list:

–jeroen

Posted in About, LifeHacker, Personal, Power User, Travel | Leave a Comment »

GitHub – synack/knockknock: Who’s there?

Posted by jpluimers on 2020/02/10

[WayBack] GitHub – synack/knockknock: Who’s there?:

KnockKnock displays persistent items (scripts, commands, binaries, etc.), that are set to execute automatically on OS X. For a comprehensive presentation on OS X malware, persistence, and KnockKnock, see the following slides [WayBack].

Via:

–jeroen

Posted in Apple, Mac, Mac OS X / OS X / MacOS, MacBook, MacBook Retina, macOS 10.12 Sierra, macOS 10.13 High Sierra, Power User | Leave a Comment »

ICY DOCK SATA/SAS Hot Swap Wechselrahmen für 16x: AmazonSmile: Computer & Zubehör

Posted by jpluimers on 2020/02/07

Want: [Archive.isICY DOCK SATA/SAS Hot Swap Wechselrahmen für 16x: AmazonSmile: Computer & Zubehör.

Reasons:

  • 80 mm fan
  • 16 slots for SSD
  • 4x SFF-8643 MiniSAS connector to minimise cabling

 

Posted in Power User, SSD | Leave a Comment »

Wasemkap op ventilatiesysteem? – Installatie.nl

Posted by jpluimers on 2020/02/07

Voor mijn link archief: [WayBackWasemkap op ventilatiesysteem? – Installatie.nl

Ofwel: wat als je een WTW of warmeterugwininstallatie hebt en een afzuigkap zonder motor?

En wat voor filters heb  je er voor nodig?

En welke in de WTW?

Die laatste heb ik gevonden: Artikelnummer Stork: 006040085

–jeroen

Read the rest of this entry »

Posted in LifeHacker, Power User | Leave a Comment »

How to remove a 3M Adhesive Pad Dash-Cam or Helmet-Cam Mount – YouTube

Posted by jpluimers on 2020/02/07

The trick from Techmoan: saw with dental floss.

Be sure to watch his Dash Cam category.

–jeroen

Read the rest of this entry »

Posted in LifeHacker, Power User | Leave a Comment »

Why does HRESULT begin with H when it’s not a handle to anything? – The Old New Thing

Posted by jpluimers on 2020/02/06

Interesting bit of history: [WayBackWhy does HRESULT begin with H when it’s not a handle to anything? – The Old New Thing.

TL;DR:

  1. It used to be a handle
  2. Few programs cared about the underlying objects
  3. Managing the underlying objects was way too expensive
  4. It got trimmed down to a number, but the name stuck

–jeroen

Posted in Development, History, Software Development, The Old New Thing, Windows Development | Leave a Comment »

Delphi Berlin and up without disabled Castalia: Use Ctrl+W to select content in the IDE code editor. Place your curso…

Posted by jpluimers on 2020/02/06

If you have enough guts to keep Castalia enabled and have Delphi Berlin or higher, then you can use this shortcut:

[WayBack] Tip: Use Ctrl+W to select content in the IDE code editor. Place your cursor some random piece of code, preferably deep in code that have nested block… – Lars Fosdal – Google+

–jeroen

Posted in Castalia, Delphi, Development, Software Development | Leave a Comment »

Check your PHP project for known security issues – SensioLabs Security Advisories Checker

Posted by jpluimers on 2020/02/05

If I ever cross a PHP project, this is my first requirement to pass: [WayBack] Check your PHP project for known security issues – SensioLabs Security Advisories Checker

–jeroen

Posted in Development, PHP, Scripting, Software Development | Leave a Comment »

Why Your Team Is Not Working as a Team – The Startup – Medium

Posted by jpluimers on 2020/02/05

Being part of a team can be tough, so this article has Seven ways individualism is getting in their way: [WayBack] Why Your Team Is Not Working as a Team – The Startup – Medium.

Via: [WayBack] “When your top players don’t know how to work together, their individual talents are useless.” – Marjan Venema – Google+ (who is a great coach!)

–jeroen

 

Posted in Agile, Development, Software Development | Leave a Comment »