Hi ya
If any one needs bios password reset,
1. All you need to do is type in bios password wrong three time to get the above message
2. Type the code except the bracket and paste in the following website
3.Then reset the BIOS to factory setting
Hi ya
If you are trying to migrate your print server from old server to new one, you have come to the right place.
STEP 1 - INSTALLING PRINT SERVER ROLE TO NEW SERVER
Write-Host -ForegroundColor Yellow "Input the no of inactive days : " -NoNewline
$staledays = Read-Host
$staledays = (Get-Date).AddDays(-$staledays)
Get-ADComputer -Property Name,lastLogonDate -Filter {lastLogonDate -lt $staledays}| Select-Object -Property Name,LastLogonDate,Distinguishedname,Enabled|Sort-Object -Property Name | Out-GridView -Title 'List of stale computers'
Get-ADuser -Property Name,lastLogonDate -Filter {lastLogonDate -lt $staledays}| Select-Object -Property Name,LastLogonDate,Distinguishedname,Enabled|Sort-Object -Property Name | Out-GridView -Title 'List of stale users'