Showing posts with label user. Show all posts
Showing posts with label user. Show all posts

Wednesday, May 18, 2022

Last users’ login data with PowerShell


Get-ADUser -Identity username -Properties "LastLogonDate"

output:

DistinguishedName : CN=SomeName,CN=SomeGroup,DC=DomainName,DC=local
Enabled           : True
GivenName         : AccountName
LastLogonDate     : 7/18/2022 7:48:24 PM
Name              : AccountName
ObjectClass       : user
ObjectGUID        : 2d348557-ff9b-4452-8f3b-96e820df570s
SamAccountName    : AccountName
SID               : S-1-5-21-453637392-373859473-1311905769-2573
Surname           :
UserPrincipalName : AccountName@DomainName.local

or it is the PowerShell command with filter:

Get-ADUser -Identity username -Properties LastLogon | Select Name, @{Name='LastLogon';Expression={[DateTime]::FromFileTime($_.LastLogon)}}

output:

Name  LastLogon
----  ---------
AccountName 7/18/2022 8:51:00 PM

Monday, December 13, 2021

add a user to the Docker group

 if you got an error like this:

$ docker run hello-world
docker: Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Post http://%2Fvar%2Frun%2Fdocker.sock/v1.39/containers/create: dial unix /var/run/docker.sock: connect: permission denied.

add a user to the Docker group then

$ sudo usermod -a -G docker $USER
$ mkdir “$HOME”/.docker
$ sudo chmod g+rwx “$HOME/.docker” -R
$ sudo chmod 666 /var/run/docker.sock

Add disk image to Windows OS on Proxmox

  1) Enter into the Proxmox console 2) Select the VM -> Hardware -> Add -> Hard Disk: 3) Configure the new disk image: 1. Select th...