Shutdown -i does not work

MeeM Kade 1 Reputation point
2022-11-28T14:02:48.227+00:00

I have tried to use shutdown -i on my own computer or on another computer and it doesn't work. I usually get Failed to connect to registry.(1326). How do I fix this?

Windows for business | Windows Client for IT Pros | User experience | Other
{count} votes

1 answer

Sort by: Most helpful
  1. Hoekstra Jelle 501 Reputation points
    2022-11-28T15:10:19.653+00:00

    You could try shutdown /i
    Alternatively you could use powershell:
    for remote pc's:
    restart-computer -computername Computer1 -force

    for the local pc:
    restart-computer -force

    ref:
    https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/restart-computer?view=powershell-7.3

    ----------

    If this helps, please accept the answer and upvote

    0 comments No comments

Your answer

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