How to prevent users from a domain network to connect from another pc

We have a domain based LAN with 6 users with individual workstations and a server (windows server 2003).
Is it possible to configure a workstation in such a way that they would make newspaper-on the system using only a user ID?
Currently all users can connect from any workstation using his ID and password. I want to avoid this.
 
For example:
The USER is a user who uses a WS-1 station,
B the USER is a user who uses WS-2 workstation,
USER-C is a user using the workstation WS-3
then currently USER 1, USER 2 and USER-3 can log - on the system from any workstation using a credential.
 
I want to avoid this.
 
What I want is, WS-1 workstation can only be connected to the USER-A credentials, the WS-2 workstation can only be connected by the credentials of the USER-B and so on.
 
Is this possible?

Hello Chetan,

You're in the wrong Forum for this type of question which is one most appropriate for the ad server and group policy (with possibly the local policy on the workstations).  I would move this if I could, but we do not have this feature in our magic Toolbox.

To start, see if the information contained in this TechNet article help: http://social.technet.microsoft.com/Forums/windowsserver/en-US/3639e354-3a41-41b9-bf2e-74abc49e23d6/user-permision-on-workstations.

If not, then open a new question/thread in this same forum http://social.technet.microsoft.com/Forums/windowsserver/en-US/ and ask your question there.  I am sure that you will get detailed advice covering both sides of the situation (Server and workstation) better than here where there is a tendency to focus only on client computers, not servers, unless that quite simple (and being an MCSE, I know that's not really simple - but it also isn't really very difficult if you understand the basics - and even then they should be able to help) to find articles or provide instructions to pass you this part).  I have no doubt that they can also bring about changes, you need to establish which are specific to the workstation (and maybe even have a model of batch file to semi-automate the process - but now I'm guessing / hoping).

In any case it is really where you should start and return only if explain you what it is about the customers that they cannot handle and need us to help you (because I can't imagine that happening).

Good luck!

Kosh

Tags: Windows

Similar Questions

  • How to prevent users from installing new programs in Windows 7

    Hello

    I need to prevent users to install (and download) of new programs in Windows 7. I am responsible for three computers. They are not on one network (other than the internet, of course).

    I read the article "How to prevent users from installing new programs in Windows 7" but I'm not sure what choice to make when I get to the choice of Windows Installer. I'm also not quite know how to cancel that so I can install the software when I have to. I've never done this if I want to be very careful.

    Can anyone help?

    Many thanks,

    KK

    Are their accounts 'Administrator' or 'Standard' user level?

    If they are directors of the machine, and then create a new Admin account (only you know the password) and then lower their Standard user accounts. If they attempt to install programs now it should be prompted to enter the Admin password that they won't.

    User accounts - https://support.microsoft.com/en-us/kb/2663817

    Also see http://www.sevenforums.com/tutorials/299-user-account-control-uac-change-notification-settings.html for info UAC - and adjust the required level.

    If their accounts are accounts administrator and for some reason must be a competent user, then will probably be able to undo everything you put up anyway.

    PS - what specific article?

  • How to use family security to block streaming video photos etc. on Windows Media Player. Or how to prevent users from video straeming

    How to use family security to block streaming video photos etc. on Windows Media Player. Or how to prevent users from video straeming

    Hello

    Please go through this article, change settings for streaming media streaming in Windows Media Player , and you will be able to solve this problem.

  • How to add user from another computer as a Local user for file sharing permissions

    Hello, I'll put up for two computers to share files on a network.

    I just need to figure out how to add a user from another computer as a local user, I can change its permissions of file sharing.

    Here's where I'm stuck:

    I am trying to add a new user, but:

    How can I add a user somewhere else on my network to this list?

    I tried to add one here in the computer management:


    How can I add my network user?  I tried to do it in this format:

    Thank you!

    Sure thing. You can add a list in the registry with the name of the account that you want to hide from the login screen.  This site explains how: http://www.tech-recipes.com/rx/6222/windows-7-vista-xp-hide-user-account-from-welcome-screen-login-screen/

    Windows XP and beyond.

  • How to prevent users from changing the network connection?

    Hi all

    I have a weird problem. I set up my HP ThinPro T610, I have to say is simple enough. I want users just to turn on the computer, wait a few minutes and log into the Terminal Server Services on the Server RDP connection, so I basically blocked every user of things could possibly click - they have no taskbar, etc. Connection Manager.

    Now, there's one thing I can't block - 10 seconds, users can see "Network connection" pop up, in which they can - at my enormous disbelief -change the connection settings.

    I can't find a way to block this... everyone can share their experience with this issue?

    Hello

    Hope you use thinpro 5 OS

    Could you please try these step

    1 log in administrator mode

    2 Goto advanced - Xterminal regeditor and type

    3. go in config wizard

    4. change the value to enablenetworkcheck and save and reboot

    ====================================================

    Although I am an employee of HP, I speak for myself and not for HP. ===

    * Click on the star of CONGRATULATIONS on the left say "thank you."

  • How to prevent users from installing new programs in windows 7 Home premium

    I see that if you have full or professional that there is a thing called Local Group Policy Editor but I can't find it in the Home Premium edition. Y at - it something I can do on Home Premium to disable other users to install software on my computer. I have three children and they constantly put unwanted programs on the computer. Help, please. Thank you

    It would be good!

    Well seems the only thing to do is to spend the money, you will need to upgrade your version of Windows to the professional or ultimate edition:-

    http://Windows.Microsoft.com/en-in/Windows7/products/features/Windows-Anytime-Upgrade

    I also suggest to make a new profile user limited to children and put a password on your.

  • How to prevent users from inserting letters to varchar2 column

    ALTER table emp
    Add tel_no varchar2 (15) constraint emp_tel_no_ch check (to_number (tel_no) > 0)


    It works well, but I wonder

    When I do this

    Suppose that the emp table has 2 columns name, tel_no

    insert into the emp
    values ('ahmed', "10e2")

    the user can insert and check constraint does not
    Why when e inserted between numbers constraint does not work?

    user12087786 wrote:

    and use my code when I want to stop to insert characters (just insert numbers)

    If you mean, by numbers, numbers:

    SQL> create table t1(s varchar2(10));
    
    Table created.
    
    SQL> alter table t1
      2  add constraint t1_chk1
      3  check(regexp_like(s,'^\d*$'))
      4  /
    
    Table altered.
    
    SQL> insert into t1 values('10e2');
    insert into t1 values('10e2')
    *
    ERROR at line 1:
    ORA-02290: check constraint (SCOTT.T1_CHK1) violated
    
    SQL> insert into t1 values('AbC');
    insert into t1 values('AbC')
    *
    ERROR at line 1:
    ORA-02290: check constraint (SCOTT.T1_CHK1) violated
    
    SQL> insert into t1 values('123x');
    insert into t1 values('123x')
    *
    ERROR at line 1:
    ORA-02290: check constraint (SCOTT.T1_CHK1) violated
    
    SQL> insert into t1 values('123');
    
    1 row created.
    
    SQL> 
    

    SY.

  • prevent users from deleting any other data

    I have a table

    create table T)
    infoID number primary key,
    Info varchar2 (4000).
    user varchar2 (1)
    );

    and users a, b, c with privileges of object on table T.

    What is the best way to prevent users from deleting any other data?

    1. create a view for each user to interacat with (where user = 'a') and to revoke the privileges of table T.
    2. use the procedures or trigers to catch a bad user.
    3.

    you will have 1 table T shared between 3 users a, b and c and the need of the user a power manage only his own lines (manage is meaning insert/update/delete/select)

    so the solution could be seen with trigger 'instead of', but Oracle has developed functionality especially for this DTV: [virtual private database | http://download.oracle.com/docs/cd/B28359_01/network.111/b28529/intro.htm#i1010494 |] VPD]

  • Is there a setting that I can activate to prevent users from turning off the computer?

    How prevent we Shut Down

    How do you define a computer or a user to prevent shutting down the computer. ?
    I had an account with complete administration and he's doing a backup of Windows, but the other user is allowed to force closing down since the other user is always log-in (locked).

    Is it possible to prevent users not to shut down the computer if another user is connected? I know it is the settings where you can change the Start Menu, but it is not good enough.

    Alan

    Hello

    I suggest you follow these methods and check.

    If you have Windows 7 Ultimate or Professional Editions follow method 1, if you have Windows 7 Home Premium or lower editions go to method 2

    Method 1: Change the settings of group policy and see.

    You can configure the policy setting determines which users can shut down the local computer. Navigate to the following location in the Management Console (GPMC, Group Policy),

    Click the Start button, type gpedit.msc in the search field.

    Navigate to the following location:

    Computer Configuration\Windows Settings\Security Settings\Local Policies\User Rights Assignment\ Shut down the system

    Double click stop the system, select the user group you want to disable and click Remove > apply > OK.

    Simply restart your PC and connect users to check if the function disable and remove Shutdown account works.

    Method 2:

    a. must turn off and remove Shutdown option by using the registry editor.  Open the registry editor, navigate to the following path: HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer

    b. Select Explorer in the left pane, right-click in the right pane and select new > DWORD; then name it as NoClose.

    c. double-click NoClose, and replace the value Hex 1; Click OK, and then close the registry editor.

    d. restart, you'll be able to disable and remove the Windows 7 Edition stop Home Premium or less in this way.

    I hope this helps!

  • prevent users from deleting files [Android]

    I use the Adobe on Android app and was trying to prevent users from deleting files when using it.

    Samsung Tab installed Pro 4.4.2 and Adobe version 15.1.1

    We currently have all of the features that disables file deletion functionality.

    Thank you

    Adobe Acrobat Reader team

  • How to copy contact from another list? No traveling.

    How to copy contact from another list? No traveling.

    Same way you do in most of the applications when you use slide it / move. You hold down the CTRL key while dragging the file or contact. You will see a sign more seem to indicate a copy and not move. Hold the control key until releasing the contact in the new location.

  • How to import cookies from another computer?

    import and export cookies in Vista

    How to import cookies from another computer. My partner sent me a text file of his coolies that would allow me to make my most effectively. But I can't understand how do. Could someone please help?

    Thank you

    Robert

    Robert

    Go to Internet Explorer > file (press Alt if the menu is not displayed) > Import/Export > import from file and choose Cookies, etc.

  • How to add users from a different domain?

    I have 3 ESXi hosts and a server vCenter on "area A". I have a separate domain, 'area B' set up with a confidence of 2-way "area A".

    How can I add users 'domain' B to vCenter server on 'area A' so that they can connect? When I go to add permissions in vCenter, I can select appear 'area B' but not the users in the list and I can't manually, type in a 'domain' user B and add it. But I can add users from domain A, since the hosts and vCenter server on this domain.

    I don't know if it's important, but the approval of 2 lanes between these areas is not a transitive trust relationship.

    Thank you in advance for any help you can offer.

    -Joey

    Create a group in domain B, add users to this group. Create a group in domain A, and then add the domain group B. Now assign the Group of features in vSphere. You could use the built-in course examples or create new ones.

  • How to prevent users to access network of comments?

    Hello everyone,

    I have a business network (users are using NAM, User and Pass of AD and chaining EAP) and a network of comments (authentication Web portal, local database ISE).

    I don't want my corporate users to access the network of comments (to assume she got a user and pass for this). How I do that?

    I know that it is possible to block connections on NAM, but I would like to know if we can control it at the ISE, and not on the client.

    Thank you.

    Unfortunately no, unless you have an identity store that contains the machine of the company mac addresses, you cannot differentiate between comments and pc peripheral companies. Your users don't take their machines outside the corporate network normally?

  • The TrustedInstaller user took possession of most of my WINDOWS files! How to restore my computer and how to prevent this from happening?

    I noticed that the user TrustedInstaller took possession of my PC. He is the owner of most of my Windows files. How to restart my computer and how

    prevent this happening again?

    I know that I can change of ownership and then each individual file permissions, but it would take two days or something, I can stop this in a simple way or how do I restart my computer?

    This user is logged on to Microsoft? I mean if this is the case, then I guess I don't have to worry?

    I would appreciate an answer so =)

    This is how it is supposed to be.

    TrustedInstaller is a built-in account that allows to modify Windows itself, for example during the installation of the updates.

    This is to prevent the Windows system files or inadvertently or maliciously crushed.

Maybe you are looking for

  • Do split screen have a system of farm, in

    Please make the split screen function in iOS a parameter that can be enabled or disabled.  I read on my iPad and very annoyed when I accidentally drag too far to the right and the split screen window opens.  I have never use the screen solit function

  • The Pixma iP8720 print on paper of lb 61 230 g /?

    Can Pixma iP8720 printer power supply & print paper 8.5 x 11 230gsm/61 lbs without rejection or interference? Use this paper for photo printing photo soft cover on an Epson WF 30 book covers. I need a printer better, and I am committed to buy this Ca

  • WRT54GS V7 can not get my wep key

    When I log into the router using 192.168.1.1 Select the wireless tab it tries to load and stops at 98%. I can't recover my wep key to add other currencies. Reset to the factory settings let me the Info? I can't upgrade the firmware either. Any help i

  • Recover password of the IPCC business database officer?

    Hi, I'm looking for a way to read the password of the agent of the IPCC Enterprise directly to the Person table. The password field is encrypted, someone knows the encryption algorithm and key? Thanks in advance!

  • 10 - no recovery Windows?

    Then, when I bought my Hp Pavilion n005sp, it came with Windows 8. I installed Windows 10 Technical Preview, but I want to come back to the original Windows 8 I had, with all the drivers and the software of HP (now disappeared). I still have this on