Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

powershell active directory script examples

$NewUserParameters = @{
    'GivenName' = 'David'
    'Surname' = 'Jones'
    'Name' = 'djones'
    'AccountPassword' = (ConvertTo-SecureString 'p@$$w0rd10' -AsPlainText -Force)
    'ChangePasswordAtLogon' = $true
}
New-AdUser @NewUserParameters
Comment

PREVIOUS NEXT
Code Example
Shell :: how to mount windows folder on ubuntu 
Shell :: change remote origin git 
Shell :: react app deploy on github pages 
Shell :: bash path ubuntu 
Shell :: bash printf format 
Shell :: how to uninstall slick-carousel 
Shell :: scp ubuntu 
Shell :: openjdk 1.8 mac brew 
Shell :: password generator bash 
Shell :: conda command to install folium 
Shell :: install oh my zsh! 
Shell :: there are insecure directories /usr/local/share/zsh 
Shell :: how to install tesseract in other language in linux 
Shell :: how to clone a specific branch from github that you are not working 
Shell :: install simplejwt django 
Shell :: jenkins store sh output in variable 
Shell :: distutils.sysconfig install 
Shell :: git how to roll back to a commit 
Shell :: how to push existing project to github 
Shell :: enable apache2 site 
Shell :: rpm extract 
Shell :: github push local branch to remote 
Shell :: bash read file content 
Shell :: laravel version global upgrade 
Shell :: check connected wifi details on kali 
Shell :: batch color escape character 
Shell :: echo ros path 
Shell :: git submodule push current branch to master 
Shell :: add images in readme github file 
Shell :: linux update 
ADD CONTENT
Topic
Content
Source link
Name
5+2 =