Support Page
Please Click Here when instructed to do so by a Dynamiq Support Representative.
Please Click Here when instructed to do so by a Dynamiq Support Representative for Quick Support.
**********************************************************************************************
Helpful Info
To check local users to see when password expires:
Powershell as admin:
Get-LocalUser -Name * | Select-Object Name, PasswordwordExpires
To make a local user not expire:
Powershell as admin:
Set-LocalUser -Name "YourUserName" -PasswordNeverExpires $true
To find the Dell Service Tag (or other mfr. serial number)
At the admin prompt type: wmic bios get serialnumber
In the newest Windows 11, go to PowerShell as admin and type:
Get-WmiObject -Class Win32_Bios | Select-Object SerialNumber
or
Get-CimInstance -ClassName Win32_Bios | Select-Object SerialNumber