Share via

wanting to restart the whole computer

Jayden Flores 0 Reputation points
2026-02-22T17:46:09.4866667+00:00

we logged into my sons account who is 11 and now he is administrator who want to just restart everything


Moved from Windows for home | Previous Windows versions | Desktop, Start, and personalization

Windows for home | Other | Desktop, Start, and personalization
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Jess-Q 8,130 Reputation points Microsoft External Staff Moderator
    2026-02-23T14:54:43.77+00:00

    Hi @Jayden Flores

    Thank you for posting your question in the Microsoft Q&A forum.    

    Regarding your issue, may I kindly ask a few questions to help understand it better:

    • Which Windows version is your device running (for example, Windows 10 or Windows 11)?
    • Is your son’s account a Microsoft account (child account) or a local account?
    • When you say you want to “restart everything,” do you mean:
      • Removing admin rights from the child account
      • Resetting account permissions only
      • Or fully resetting Windows and starting fresh?
    • Are there other administrator accounts on the PC that you can still sign into?

    Hope to hear back from you soon.

    The initial response may not fully address your needs, but it will help me better understand your situation. Once I get the information, I will try my best to find the next steps.


    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


  2. Q&A Assist
    2026-02-22T17:46:16.9966667+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    To restart the computer, you can use the Restart-Computer cmdlet in PowerShell. This cmdlet allows you to restart the operating system on local and remote computers. Here’s how you can do it:

    1. Open PowerShell: You can search for PowerShell in the Start menu and open it.
    2. Run the Command: Type the following command and press Enter:
         Restart-Computer
      
      This will restart the computer immediately.

    If you want to restart a remote computer or specify additional parameters (like credentials), you can use:

    Restart-Computer -ComputerName "ComputerName" -Credential (Get-Credential)
    

    Replace ComputerName with the name of the remote computer you wish to restart.

    Additionally, if you want to ensure that the restart completes before running the next command, you can use the -Wait parameter:

    Restart-Computer -Wait
    

    Make sure that the user account has the necessary privileges to perform a restart, especially if you are trying to restart a remote machine.


    References:

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.