In Windows Server 2008 Server Core, only a command prompt is present as the user interface. You still have access to some of the GUIs. For example, type taskmgr and press Enter. The Task Manager will pop up. For most of the administration of server core, you will either use an MMC snap in that is redirected to the Server Core, our via command line directly on the Server Core box. The Start /W command is used before you initiate an action, like installing a role, that will take some time. This will cause the user interface to "wait" until the installation is completed. This prevents you from taking actions that will failure if done before an installation is completed.
In the past, to run the GPResult command, you would need to either physically visit this client, have the user do it, or use and RDP connection. In all cases, this will disrupt the user. First, you need PowerShell remoting enabled on the target machine. You can do this via Group Policy . Open PowerShell and type this command. Invoke-Command –ScriptBlock {GPResult /r} –ComputerName <ComputerName> Replace <ComputerName> with the name of the target. Remember, the target needs to be online and accessible to you.
Comments