Just got mine after 10 months wait, I love it.
- 0 Posts
- 8 Comments
cheet@infosec.pubto
Steam Hardware@sopuli.xyz•The one accesory I would recommend with the Deck
11·2 years agoI wish it would have 2 ports, top and bottom, so I can be more creative with my accessories.
Yeah this is a good analogy, except it comes from tooling that would allow any n64 game to be converted with some work.
Like an openmw generator for any Bethesda game.
cheet@infosec.pubto
Linux@lemmy.ml•TL;DR You can manage Linux Machines with group policy
1·2 years agoI think you could boil it down to something like
Set-ADUser bob -otherattributes {uidNumber=1005, gidNumber=1005}
cheet@infosec.pubto
Linux@lemmy.ml•TL;DR You can manage Linux Machines with group policy
1·2 years agosorry I don’t have any real documentation but I have a snippet of powershell that explains it pretty well here this comes from a user creation script I wrote back when they removed the unix UI.
I was using Get-AdUser and discovered that the properties still existed but you have to manually shove those in, when an sssd “domain bound” linux machine has a user with these props login, they get the defined UID and GID and homefolder etc.
$otherAttributes = @{} Write-Host -ForegroundColor Yellow "Adding Linux Attributes" # get the next numeric uid number from AD $uidNumber=((get-aduser -Filter * -Properties * | where-object {$_.uidNumber} | select uidNumber | sort uidNumber | select -Last 1).uidNumber)+1 $otherAttributes.Add("unixHomeDirectory","/homefolder/path/$($samAccountName)") $otherAttributes.Add("uid","$($samAccountName)") $otherAttributes.Add("gidNumber","$($gidNumber)") $otherAttributes.Add("uidNumber","$($uidNumber)") $otherAttributes.Add("loginShell","$($loginShell)") $UserArgs = @{ Credential = $creds Enabled = $true ChangePasswordAtLogon = $true Path = $usersOU HomeDirectory = "$homeDirPath\$samAccountName" HomeDrive = $homeDriveLetter GivenName = $firstName Surname = $lastName DisplayName = $displayName SamAccountName = $samAccountName Name = $displayName AccountPassword = $securePW UserPrincipalName = "$($aliasName)@DOMAIN.COM" OtherAttributes = $otherAttributes } $newUser = New-ADUser @UserArgsbasically the “OtherAttributes” on the ADUser object is a hashtable that holds all the special additional LDAP attributes, so in this example we use $otherAttributes to add all the fields we need, you can do the same with “Set-Aduser” if you just wanna edit an existing user and add these props
the @thing on New-ADuser is called a splat, very useful if you’re not familiar, it turns a hashtable into arguments
lemme know if you have any questions
I like ydotool, uses a systemd user service, but fulfills my needs of KB shortcuts to paste text into vnc sessions
cheet@infosec.pubto
Linux@lemmy.ml•TL;DR You can manage Linux Machines with group policy
71·2 years agoMicrosoft pulled those from the UI, but if you’re adventurous you can just shove those attributes in to user with power shell and it works the same.
Then just use sssd instead of NIS, surprised me at work when this worked.


I dunno, I found it easier to move my family to JF.
I made them a bunch of accounts and sent them via signal.
For my mum I logged in as her and configured everything how she would want.
I didnt have to explain to anybody that remote stream needs to be unlimited bandwidth for better performance.
If mum forgets her password I can reset it.
To log her TV in we used quick connect where I had her enter the 6 digit code on the tv.
We used SyncPlay to watch a movie together.