rss logo

How to Manage Windows Workgroup Machines in an Active Directory Environment

Microsoft Logo

It's quite rare, but we can sometimes find Microsoft Windows Home Edition PC in company networks, or computers that we can't integrate into the domain (machines that aren't fully managed by the IT department). These computers cannot be added to the Active Directory, but they often need access to network resources, such as file shares. Here are a few commands to help you manage this.

The commands

net use X: \\192.168.1.251\share user_password /USER:domainame\my_user /PERSISTENT:YES cmdkey /add:192.168.1.251 /user:my_user /pass:domainame\user_password net user admin_account AdminPass! /add WMIC USERACCOUNT WHERE Name='admin_account' SET PasswordExpires=FALSE net localgroup administrators admin_account /add

Batch Script

We can write a .bat file to automate this operation.

@echo off set USER=domainame\user01 set PASSWD=MyUser01Password net use X: \\192.168.1.251\share %PASSWD% /USER:%USER% /PERSISTENT:YES net use Y: \\192.168.1.251\scans %PASSWD% /USER:%USER% /PERSISTENT:YES cmdkey /add:192.168.1.251 /user:%USER% /pass:%PASSWD% net user admin_account AdminPass! /add net localgroup administrators admin_account /add

Note

Password escape characters

If you want to use special characters for your users passwords, you need to know that you'll need escape characters. Here's a list of some special characters and their escape sequences.

Character Escape Sequence
> ^>
& ^&
" \"
< ^<
| ^|
^ ^^

Example

net user admin ^>^&\"^|asword /add
Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.

Contact :

contact mail address