fbpx

Powershell – How To – SID To User

Step 1: Domain User to SID This will give you a Domain User’s SID $objUser = New-Object System.Security.Principal.NTAccount(“DOMAIN_NAME”, “USER_NAME”) $strSID = $objUser.Translate([System.Security.Principal.SecurityIdentifier]) $strSID.Value Step 2: SID to Domain User This will allow you to enter a SID and find the Domain User $objSID = New-Object System.Security.Principal.SecurityIdentifier ` (“ENTER-SID-HERE”) $objUser = $objSID.Translate( [System.Security.Principal.NTAccount]) $objUser.Value Step 3: … Read more

windows script to check Server Uptime

Description Ever wanted a simple HTML report showing you the UP/DOWN status of your servers? And for a little extra flavor how long that server has been up for? Some basic disk information? 1. Download the script to your favorite location and name it Uptime.ps1 2. Open a Powershell prompt and type: Get-Help pathtoscript\Uptime.ps1 –Full … Read more