Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
# Windows Server Scripts
## File Server Scripts
The following scripts are used for various functions on a windows file server.
### [**New-UserShares.ps1**][1]
The New-UserShares function will create a shared folder for each user from a specified group. See `Get-Help .\New-UserShares -Full` for more information.
**Example:**
```powershell
.\New-UserShares -GroupName TEST_AD_GROUP -Directory D:\UserShares
```
### [**Get-IsGroupMember.ps1**][2]
Run this script to check if a user is in a specified group.
---
[1]: New-UserShares.ps1 "Create users shared folders"
[2]: Get-IsGroupMember.ps1 "Check Group Membership of user"