Home
Operating System
Windows
Linux
Tutorial
Windows Server
About
☰
Create User Profile (windows server)
# Create Folder Profile
New-Item -ItemType Directory -Path "W:\Profile\sopuol"
✏️ Edit
📋 Copy
Copied!
# Share Folder Profile to user
New-SmbShare -Name "Profile" -Path "W:\Profile" ` -FullAccess "Administrator" ` -ChangeAccess "Sopuol"
✏️ Edit
📋 Copy
Copied!
# Find DomainName
(Get-Domain).DNSRoot
✏️ Edit
📋 Copy
Copied!
# Give permission to the folder
icacls "W:\Profile\sopuol" /grant "server\sopuol:(OI)(CI)(M)"
✏️ Edit
📋 Copy
Copied!
# Apply user profile
Set-ADUser "sopuol" ` -ProfilePath "\\server-computer\profile\sopuol"
✏️ Edit
📋 Copy
Copied!
Labels
all
(31 )
autocad
(3 )
css
(2 )
linux
(5 )
op_system
(18 )
website
(4 )
windows
(14 )
windowsServer
(27 )