IT tutorials
 
Technology
 

Windows Small Business Server 2011 : Managing Computers (part 1) - Viewing and Modifying Client Computer Settings

9/30/2013 7:53:50 PM
- Free product key for windows 10
- Free Product Key for Microsoft office 365
- Malwarebytes Premium 3.7.1 Serial Keys (LifeTime) 2019

You can manage the clients that are available on your network, along with many of the settings that control their availability and behavior, from the Windows SBS Console. To see a list of computers joined to your SBS domain, open the Windows SBS Console and click the Network button to open the Computers page, as shown in Figure 1.

Figure 1. The Windows SBS Console Computers page


From the Computers page, you can see a quick status for the computers on your network: which are online, which need updates, and which have other problems or warnings. When you click a computer in the list, a new section of the Tasks pane opens showing you tasks you can perform that are specific to the computer selected, as shown in Figure 2 where we’ve selected computer HP160-WIN7-01.

Figure 2. The Windows SBS Console Computers page with computer HP160-WIN7-01 selected


From here, you can offer remote assistance, connect directly to the computer using Remote Desktop (if the computer supports Remote Desktop), view the properties of the computer, check on update and other security-related status, and even remove the computer from the domain.

If there are problems with a client computer, you can select the computer and then click the Go To Security or Go To Updates links in the Tasks pane to navigate to the appropriate page of the Windows SBS Console.

1. Viewing and Modifying Client Computer Settings

To view or modify the properties and settings of a client computer in SBS, select the computer in the Windows SBS Console Computers page, as shown in Figure 2, and click View Computer Properties in the Tasks pane to open the Properties dialog box for the computer. From here, you can view the name of the computer, set the description of it, view the status of updates assigned to the computer, and control who has remote access to the computer.

To set the remote access to the computer, follow these steps:

  1. Open the Windows SBS Console Computers page, and click the computer you want to change the remote access for in the left pane.

  2. Click View Computer Properties in the Tasks pane.

  3. Click User Access in the left pane of the Properties page, as shown in Figure 3.

    Figure 3. The Assign User Access page of the Computer Properties dialog box

  4. Select the user you want to assign, modify, or remove access from, and then choose the level of access the user will have on the computer from the Access Level drop-down list.

  5. Select the Can Log On Remotely To This Computer check box if the user should be allowed to log on over RWA or from a local Remote Desktop session.

  6. Click OK to close the wizard.

UNDER THE HOOD: Controlling Local Access to a Computer

The SBS wizards allow you to control only remote access to a computer. Any SBS user with physical access to the computer can log on locally with at least Standard User privilege. This is not restricted by SBS in any way, despite what the help files appear to indicate. We think this is a mistake, and one that we frankly don’t understand—especially because the fix to directly control who has access to a computer is fairly easy. So we wrote a little script to do it. This script uses Windows PowerShell to directly edit the ADSI properties for a user account, enabling access to specific computers. If a computer isn’t explicitly granted access, it is denied after this script is run.

# Script Name: set-comprestrict.ps1
# ModHist: 12/07/08 - Initial
# : 02/08/10 - Updated for SBS 2011
#
# Script to restrict a user to one or more computers on an SBS 2011
network
# Expects: two parameters--
# logon name (sAMAccountName)
# client computer names (in a quoted, comma separated list)
#
# With Thanks to Richard Siddaway (Microsoft MVP) for his help.

# Copyright 2011 by Charlie Russel and Sharon Crawford. All rights
reserved.
# You may freely use this script in your own environment, modifying it
to meet
# your needs. But you may not re-publish it without permission.
#

param($UserName, $comp)
$_OU="ou=SBSUsers,ou=Users,ou=MyBusiness,dc=Example,dc=local"
$searchOU=[ADSI]"LDAP://$_OU"
$searcher= New-Object System.DirectoryServices.DirectorySearcher
$searchOU
$searcher.filter = "(&(objectClass=User)(sAMAccountName=$UserName))"

$userResult = $searcher.FindOne()
$user = $userResult.GetDirectoryEntry()

$user.userWorkstations = $comp
"Restricting user account: $UserName to clients: $comp"

$user.SetInfo()
"Computer access for $user has been updated."


You’ll need to run this script, which is on the companion CD, from an elevated PowerShell console.

 
Others
 
- Windows Small Business Server 2011 : Managing Computers on the Network - Using Remote Web Access
- Windows Small Business Server 2011 : Connecting Computers to the Network (part 3) - Connecting Alternate Clients
- Windows Small Business Server 2011 : Connecting Computers to the Network (part 2) - Using the Small Business Server Connect Computer Wizard
- Windows Small Business Server 2011 : Connecting Computers to the Network (part 1) - Establishing Basic Network Connectivity
- Exchange Server 2010 : Understanding Server Roles and Configurations - Possible Role Configurations
- Exchange 2010 Server Roles (part 3) - Unified Messaging Server, Edge Transport Server
- Exchange 2010 Server Roles (part 2) - Hub Transport Server, Client Access Server
- Exchange 2010 Server Roles (part 1) - Mailbox Server
- Windows 8 : Creating Trusted Platforms (part 3) - Clearing the TPM,Changing the TPM Owner Passwor
- Windows 8 : Creating Trusted Platforms (part 2) - Enabling TPM, Initializing and Preparing a TPM for First Use
 
 
Top 10
 
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Finding containers and lists in Visio (part 2) - Wireframes,Legends
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Finding containers and lists in Visio (part 1) - Swimlanes
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Formatting and sizing lists
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Adding shapes to lists
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Sizing containers
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 3) - The Other Properties of a Control
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 2) - The Data Properties of a Control
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 1) - The Format Properties of a Control
- Microsoft Access 2010 : Form Properties and Why Should You Use Them - Working with the Properties Window
- Microsoft Visio 2013 : Using the Organization Chart Wizard with new data
Technology FAQ
- Is possible to just to use a wireless router to extend wireless access to wireless access points?
- Ruby - Insert Struct to MySql
- how to find my Symantec pcAnywhere serial number
- About direct X / Open GL issue
- How to determine eclipse version?
- What SAN cert Exchange 2010 for UM, OA?
- How do I populate a SQL Express table from Excel file?
- code for express check out with Paypal.
- Problem with Templated User Control
- ShellExecute SW_HIDE
programming4us programming4us