Zend certified PHP/Magento developer

Run PS1 script as admin

I need a PS1 script that will ask for domain admin credentials and then run elevated all in 1 window without using a shortcut.

This is as close as I have been able to get:

Start-Process powershell.exe -Verb runAs Get-Credential "Domainadmin.account"
Unlock-ADAccount -Identity "account"
Read-Host -Prompt "Press Enter to exit"

The current problem is that it opens another window. I need it to prompt for domain admin creds and then elevate the window it’s in OR bring the script into the new admin window.

The objective here is to allow certain system admins to unlock there test/non-elevated accounts by running this script with their limited-admin accounts without having to go into AD or bug me BUT still require them to enter their proper limited-admin password.