Windows 10: Windows Admin Center - Centrally manage all your Windows 10 PCs

Discus and support Windows Admin Center - Centrally manage all your Windows 10 PCs in Windows 10 Tutorials to solve the problem; How to: Windows Admin Center - Centrally manage all your Windows 10 PCs [img] Information According to Microsoft, Windows Admin Center (WAC) is "a... Discussion in 'Windows 10 Tutorials' started by techshawnee, Mar 7, 2016.

  1. Windows Admin Center - Centrally manage all your Windows 10 PCs


    How to: Windows Admin Center - Centrally manage all your Windows 10 PCs

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]
    Information According to Microsoft, Windows Admin Center (WAC) is "a lightweight, browser-based GUI platform and toolset for IT admins to remotely manage Windows Server and Windows 10 machines". As so often with tools intended for enterprise IT management, WAC can also be used by private users to manage a single Windows 10 computer or all Windows 10 computers on home network.

    WAC contains Certificate management, Device Manager, Event Viewer, Windows Defender Firewall, local users and groups management, Task Manager (Processes), Registry editor, Task Scheduler, Services and Storage management. In addition, if Hyper-V is enabled and setup, WAC can replace Hyper-V Manager and Virtual Switch Manager offering complete Hyper-V and virtual machine management.

    WAC also allows running elevated PowerShell on remotely managed computer, and can connect to it with built-in Remote Desktop client.

    WAC is available as stable official release which at the moment is version 1804.25, and as Insider Preview version. WAC is free to download and use and can be used in all editions of Windows 10.

    For more details about Windows Admin Center, see:
    This tutorial will show how to install and use WAC on Windows 10 computers in a workgroup. Regardless if you only have one laptop or a fleet of Windows 10 machines on your home network and workgroup, I sincerely recommend using WAC. It is Windows 10 PC management on steroids *Wink

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]
    Note Please notice: Windows Admin Center can only be installed on Windows 10 version 1709 or later. Equally, remote management is only available on remote computers running version 1709 or later.
    WAC showing computer overview:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]

    (Click to open in pop-up, click pop-up twice to enlarge.)



    Contents [/i] Use links to go to any part of tutorial, back button of your browser to return to this list.

    [table][tr][td]Part One:[/td] [td]Prerequisites[/td] [/tr] [tr][td]Part Two:[/td] [td]Install Windows Admin Center[/td] [/tr] [tr][td]Part Three:[/td] [td]Add Windows 10 Computers to WAC[/td] [/tr] [tr][td]Part Four:[/td] [td]Computer Overview[/td] [/tr] [tr][td]Part Five:[/td] [td]Certificate Management[/td] [/tr] [tr][td]Part Six:[/td] [td]Device Manager[/td] [/tr] [tr][td]Part Seven:[/td] [td]Event Viewer[/td] [/tr] [tr][td]Part Eight:[/td] [td]Windows Defender Firewall[/td] [/tr] [tr][td]Part Nine:[/td] [td]Local Users & Groups[/td] [/tr] [tr][td]Part Ten:[/td] [td]PowerShell[/td] [/tr] [tr][td]Part Eleven:[/td] [td]Processes (Task Manager)[/td] [/tr] [tr][td]Part Twelwe:[/td] [td]Registry Editor[/td] [/tr] [tr][td]Part Thirteen:[/td] [td]Remote Desktop[/td] [/tr] [tr][td]Part Fourteen:[/td] [td]Task Scheduler[/td] [/tr] [tr][td]Part Fifteen:[/td] [td]Services[/td] [/tr] [tr][td]Part Sixteen:[/td] [td]Storage[/td] [/tr] [tr][td]Part Seventeen:[/td] [td]Hyper-V[/td] [/tr] [/table]


    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]
    Note WAC is self-explanatory and quite easy to understand and use once installed and set up. Therefore, tutorial will cover installation and setup, parts One, Two and Three more detailed but covers only basics of parts Four through Seventeen.

    In case you will have any questions, we are happy to answer them. Just post in this thread.

    Notice that you can click / tap screenshots to open them in a pop-up, and click / tap again to enlarge them, click again to enlarge more. All screenshots from WAC Insider Preview version 1806.01002.



    Part One [/i] Prerequisites 1.1) Windows Remote Management service (WinRM) must be running for WAC to work. Start Services (WIN + R, type Services, hit Enter), browse to WinRM service, right click it and select Properties.

    1.2) Set WinRM Startup type to Automatic, click Start, click OK:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    Notice that if Start button is greyed out, WinRM is already running. Just set start to Automatic and click OK.

    1.3) Windows by default has an empty TrustedHosts list, a list that contains those remote computers (hosts) that you can remotely manage from a client without authentication. WAC is a remote management client running on localhost (127.0.0.1) and needs permission to connect to computers it manages, even when managed computer is the same where WAC is running.

    Open an elevated PowerShell and enter following command to see your current TrustedHosts list:

    Get-Item WSMan:\localhost\Client\TrustedHosts

    Trusted computers (or domains) are listed under Value. List is as mentioned empty by default:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    1.4) If the list is empty, add your computer to it with following command in elevated PowerShell, replacing ComputerName with actual NetBIOS name of your computer and when asked, press Y and Enter to confirm:

    Set-Item WSMan:\localhost\Client\TrustedHosts -Value 'ComputerName'

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    You can add multiple computers by separating them with comma:

    Set-Item WSMan:\localhost\Client\TrustedHosts -Value 'Computer1,Computer2,Computer3'

    Alternatively, if you so prefer, you can use an asterisk (*) to trust all hosts:

    Set-Item WSMan:\localhost\Client\TrustedHosts -Value '*'

    1.5) Whenever you use Set-Item cmdlet to add trusted hosts, it overwrites previous list. In case your TrustedHosts already contains some hosts you do not want to remove from list, you can append the list in elevated PowerShell by first reading current list to a variable, then adding new hosts to said variable, and finally writing the variable content as new TrustedHost list.

    Read current TrustedHosts list to variable, for instance $TrustedHosts:

    $TrustedHosts=(get-item WSMan:\localhost\Client\TrustedHosts).value

    Append list:

    $TrustedHosts+=",NewHost1,NewHost2,NewHost3"

    Notice that because comma separates hosts on the list, you must add a comma in the beginning of hosts you are adding to separate first newly added host from last on current list.

    Finally, tell system to use contents of variable $TrustedHosts as TrustedHosts list:

    Set-Item WSMan:\localhost\Client\TrustedHosts -Value $TrustedHosts

    In screenshot I first checked my TrustedHosts list (#1), then appended it with two new hosts / computers as told above (#2), and when done checked the list once again (#3), being satisfied that list was appended exactly as I wanted:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]
    Tip TrustedHosts list can also be enabled and edited in Group Policy Editor (not available in Home and Single Language editions):

    Computer Configuration > Administrative Templates > Windows Components > Windows Remote Management (WinRM) > WInRM Client > Trusted Hosts
    1.6) In elevated PowerShell, add this registry entry (exactly as written):

    REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System /v LocalAccountTokenFilterPolicy /t REG_DWORD /d 1

    Notice: the above is a single line command, although shown as two lines in some forum skins. Copy full command and paste in PS.

    1.7) Still in elevated PS, add a new firewall rule with following command:

    Set-NetFirewallRule -Name WINRM-HTTP-In-TCP -RemoteAddress Any

    1.8) Especially if you intend to manage multiple computers with WAC, rename all computers with a to you logical name (tutorial).



    Part Two [/i] Install Windows Admin Center 2.1) Download WAC:

    Download

    Select WAC Insider Preview (#1 in screenshot) or latest general release (#2):

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    If downloading WAC Insider Preview, select Additional downloads > Windows Admin Center:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]
    Note Version 1809 officially released today, September 20, 2018:
    At the moment there is no preview version available.

    Geeks, do not forget that although WAC is designed for server management, it works as well in normal home or business workgroup based network. I use it to manage my home network computers.

    WAC is an excellent management tool even if you only have one PC.
    WAC is very small, under 50 MB, and takes no resources when not running.

    2.2) Run the installer. If you already modified the TrustedHosts list as told in steps 1.3 through 1.5, be sure to unselect the preset selection in Configure Gateway Endpoint prompt, highlighted yellow in screenshot:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    If you leave it selected, TrustedHosts list will be reset to '*', all hosts trusted.

    In same prompt, leave the default port number (6516) as it is.

    2.3) Last prompt in installer shows example of a certificate which WAC requires. When starting WAC first time, you might be prompted for this. In that case, be sure to select Windows Admin Center Client:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    2.4) WAC can be found and run from Start > W > Windows Admin Center



    Part Three [/i] Add Windows 10 computers to WAC 3.1) Run WAC. It opens in your default browser using secure URL https://localhost:6516/. Your computer will be added automatically, subject to WinRM and TrustedHosts being correctly configured as told in Part One:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    3.2) Click the computer name, click Yes and accept possible UAC prompt to start managing it:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    3.3) Overview of your computer will be shown:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    3.4) To add other computers on your network to WAC, you must configure WinRM and TrustedHosts on each of them as told in Part One. On TrustedHosts list, use either '*' for all hosts, or NetBIOS (computer) name of the computer to be used to manage other computers, and the NetBIOS name of the managed computers.

    For instance, if you will use computer MyMainDesktop to remotely manage computers MyLaptop and MyGamingRig, TrustedHosts list on all computers should be set to all hosts '*' or to contain at least both managing computer MyMainDesktop and all managed computers MyLaptop and MyGamingRig:

    Set-Item WSMan:\localhost\Client\TrustedHosts -Value '*'

    --OR --

    Set-Item WSMan:\localhost\Client\TrustedHosts -Value 'MyMainDesktop,MyLaptop,MyGamingRig


    3.5) Go back to Admin Center by clicking Windows Admin Center top left, then click Add:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    3.6) Select Add Windows PC connection:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    3.7) Enter the computer name you want to add to WAC. If computer is online and correctly configured, you will get notified that it was found. Click Submit button on bottom right of the page:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    3.8) If computer you are adding is offline or not configured correctly, it is not found:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    3.9) Troubleshooting:

    If computer is not found, check that it is on and online. If yes, check that WinRM service is running and TrustedHosts list contains all hosts '*' or the NetBIOS names of both computer you are using to manage it, and its own computer name.

    If this does not help, computer is still not discovered, install WAC (Part Two) on target computer and run it once, connecting to local computer (step 3.1). Close WAC on target computer and try connecting from your management computer.

    Last but not least, if connection cannot be established after above steps, set following additional services on target computer to start automatically and start them:
    • Remote Access Auto Connection Manager
    • Remote Access Connection Manager
    • Remote Procedure Call (RPC)
    • Remote Procedure Call (RPC) Locator
    • Remote Registry
    Restart target computer, check that WinRM and above mentioned additional services are running and try again.



    Part Four [/i] Computer Overview 4.1) Computer Overview shows information about the computer in question.

    The top pane:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    4.2) Using buttons on top, you can restart or shutdown computer, edit its ID (NetBIOS name) and edit some Settings:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    4.3) Lower pane shows detailed information about CPU, Memory, all connected network adapters, and all present disks.

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]




    Part Five [/i] Certificates 5.1) Selecting Certificates from navigation pane on left, you to check all present certificates and events related to them:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    5.2) You can browse, export and renew certificates:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]




    Part Six [/i] Device Manager 6.1) Select Devices on navigation pane to open Device Manager. It has not all functions of original Device Manager, for instance you cannot enable or disable power options (WOL and such). Anyway, you can enable and disable devices, update drivers and see very detailed device and driver information:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]




    Part Seven [/i] Event Viewer 7.1) Selecting Events opens Event Viewer:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]




    Part Eight [/i] Windows Defender Firewall 8.1) Select Firewall to get full control of Windows Defender Firewall:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    8.2) You can add, edit and remove all Firewall rules:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]




    Part Nine [/i] Local Users & Groups 9.1) In Local Users & Groups you can add and remove users and change user passwords:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    9.2) To change user account type, select a user, Manage Membership and add / remove groups:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]




    Part Ten [/i] PowerShell 10.1) Option PowerShell is only available on navigation pane when managing remote hosts:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    10.2) PowerShell in WAC is elevated. You can run all PowerShell cmdlets and commands in it as if you were using PowerShell directly on remote host.



    Part Eleven [/i] Processes 11.1) Processes will show a huge amount of data from any process currently running in Windows:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]




    Part Twelwe [/i] Registry Editor 12.1) Select Registry to get full access to Windows Registry Editor:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]




    Part Thirteen [/i] Remote Desktop 13.1) Remote Desktop option on navigation pane is only available when managing remote hosts and should allow Remote Desktop connection to remote host.

    I've used WAC and its predecessor Project Honolulu for months now and never got WAC Remote Desktop to work, it being the only non-functioning part of WAC I have found.

    When it connects, it only shows remote host's desktop at the moment connection was made and then freezes completely. Usually it does not work at all.

    New WAC Insider Preview version 1807, released today July 18th 2018, has fixed Remote Desktop issue. It is now working as it should:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]




    Part Fourteen [/i] Remote Desktop 14.1) Navigation pane option Scheduled Tasks completely replaces traditional Task Scheduler, being in my subjective opinion, in addition to Hyper-V management, the best part of WAC:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    14.2) Notice that I am using the Insider Preview version of WAC. Some task functions might not be available in latest official version.



    Part Fifteen [/i] Services 15.1) Services will show all present services:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    15.2) It allows you to disable and enable services, edit them and set recovery mode:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]




    Part Sixteen [/i] Storage 16.1) Storage effectively replaces Disk Management. It allows full control of all present physical and virtual disks:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]

    ]


    Part Seventeen [/i] Hyper-V 17.1) Last two items on navigation pane, Virtual Machines and Virtual Switches are only shown if Hyper-V is enabled and set up.

    Hyper-V Management with WAC is such a wide topic it requires its own tutorial, I will do it in near future.

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    Bug: Regardless if you select Dynamic Memory or not, virtual machines will be created with dynamic RAM. This selection has no effect:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    WAC really makes Hyper-V Management easy!
    That's it geeks. Post your questions about WAC in this thread.

    Kari

    :)
     
    techshawnee, Mar 7, 2016
    #1
  2. cereberus Win User

    Windows Admin Center - Centrally manage all your Windows 10 PCs  

    I fell over at first hurdle - see last picture

    The winrm service is running

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]

    I have the trusted app set


    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]



    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    I made sure after uninstalling and reinstalling a couple of times, I was using right account


    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]



    No matter what I try, I always get this with 1809. I cannot try earlier versions as they are no available on web.


    So any ideas



    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]
     
    cereberus, Oct 27, 2019
    #2
  3. Eagle51 Win User
    Windows Admin Center - Centrally manage all your Windows 10 PCs  

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    I installed WAC on my Laptop and I get that error on it as well.

    UPDATE: It generates that error/warning every time I go to Overview
     
    Eagle51, Oct 27, 2019
    #3
  4. Kari Win User

    Windows Admin Center - Centrally manage all your Windows 10 PCs

    Windows Admin Center - Centrally manage all your Windows 10 PCs  

    Managing your Ubuntu, or any other VM from WAC, please notice that selection shown in below screenshot is remote connection, which only works if your VM is on same subnet than Hyper-V host:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    If you are using Default Switch, you cannot connect from there. BTW, look Ubuntu's RAM demand on the above screenshot!

    Instead, when you started VM in WAC, press WIN + R to open Run prompt, type vmconnect and press Enter to open VM Connection.

    Select the VM you started from drop down list, and click OK to connect:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]
     
  5. Kari Win User
    Windows Admin Center - Centrally manage all your Windows 10 PCs  

    I have 1809, too, having no issues.

    Yes, built-in admin needs to be enabled and have password, if used in WAC. That is worth testing: Enable it, sign in once and set password for it, sign out and back in once to "activate" new password. Sign out, sign back to your local admin account, start WAC and select the computer you want to manage, then Manage as:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]


    Remember to enter account as PC_NAME\Username, enter password, click Continue:

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]
     
  6. cereberus Win User
    Windows Admin Center - Centrally manage all your Windows 10 PCs  

    Hi @Kari

    I finally got it working by using Manage As, and entering my current admin account and password. I had done this several times but it just did not work. I think it was messing with GPE that did it - specifically after I did this - I enabled this and then set to not configured. Manage As then accepted my credentials and it is now working.

    Only minor detail, is I seem to have to do it after each restart but it at least allows me to pick the credential rather than type it in.

    Now to try and look at unbuntu how we first stated!


    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]



    So here it is- Yippee!

    Windows Admin Center - Centrally manage all your Windows 10 PCs [​IMG]
     
    cereberus, Oct 27, 2019
    #6
Thema:

Windows Admin Center - Centrally manage all your Windows 10 PCs

Loading...
  1. Windows Admin Center - Centrally manage all your Windows 10 PCs - Similar Threads - Admin Center Centrally

  2. Windows Hello managed by your organization I'm IT Admin

    in Windows 10 Gaming
    Windows Hello managed by your organization I'm IT Admin: It all began after my hard drive got replaced and once I unlocked via BitLocker, i no longer could use windows hello. I think other small issues are connected to this in my environment as well but ill confirm once i solve this issue first. Sat on a shared screen with a...
  3. Windows Hello managed by your organization I'm IT Admin

    in Windows 10 Software and Apps
    Windows Hello managed by your organization I'm IT Admin: It all began after my hard drive got replaced and once I unlocked via BitLocker, i no longer could use windows hello. I think other small issues are connected to this in my environment as well but ill confirm once i solve this issue first. Sat on a shared screen with a...
  4. Log all DNS activity on your Windows PCs with DNSLookupView

    in Windows 10 News
    Log all DNS activity on your Windows PCs with DNSLookupView: DNSLookupView is a new portable application by Nirsoft, which logs all DNS activity on Windows devices. DNS is a cornerstone of the Internet, as it translates domain names such as ghacks.net into IP addresses. Communication on the Internet needs DNS, and DNS may reveal a lot...
  5. Windows Admin Center

    in Windows 10 Customization
    Windows Admin Center: Hi, when I try to connect to my server, I get this error Message: "Connecting to remote server ctwo9324s.catwellone.com failed with the following error message : WinRM cannot complete the operation. Verify that the specified computer name is valid, that the computer is...
  6. Virus & threat protection is managed by your Admin windows 10

    in Windows 10 Customization
    Virus & threat protection is managed by your Admin windows 10: Hi, I have this problem when I open up the Virus & threat protection setting on my win 10. [ATTACH] This is my personal computer at home and there is no other Admin besides me, there are only 2 users, 1 is myself, the other is a guest profile. I did a check on my...
  7. Installing Windows Admin Center

    in Windows 10 Installation and Upgrade
    Installing Windows Admin Center: When trying to install Windows Admin Center 1809, the install process fails with the following error message. Windows 10 is up to date and running 'Import-Module Microsoft.PowerShell.LocalAccounts' does not help....
  8. Windows Admin Center under WIndows 10

    in Windows 10 Network and Sharing
    Windows Admin Center under WIndows 10: Install Windows Admin Center in WIndows 10 both 1709/1803. When I run it I never get prompted for the certificate for Edge which is mentioned in all the silly help posts. When I run it logged in as admin on Windows 10 it seems to work. When I am logged in as a general...
  9. Windows Admin Center - Manage Users and Groups

    in Windows 10 Tutorials
    Windows Admin Center - Manage Users and Groups: How to: Windows Admin Center - Manage Users and Groups Windows 10 user and group management can be done in Settings > Accounts. In addition, user management can be done using Command Prompt, PowerShell, and in Local Users and Groups (lusrmgr.exe, not available in Home...
  10. centralized program updates center

    in Windows 10 Software and Apps
    centralized program updates center: Hey guys, I hope i m posting in the correct thread, so my problem is that i m looking for some enterprise level network management tool, to centralize program updates for end user . The basic idea to roll out updates from a controlled environment for programs like...