Hi,
I think the currect user might have execution policy set, can you confirm with the working admin and with the affected admin the execution policy by this command ?
Get-ExecutionPolicy -List
If the execution policy is set to RemoteSigned or AllSigned you will need to set it to undefined or same as the other admins.
Set-ExecutionPolicy -ExecutionPolicy Undefined -Scope CurrentUser
Get-ExecutionPolicy -List
Scope ExecutionPolicy
----- ---------------
MachinePolicy Undefined
UserPolicy Undefined
Process Undefined
CurrentUser Undefined
LocalMachine RemoteSigned
==
Please "Accept the answer" if the information helped you. This will help us and others in the community as well.