Oh, and check your execution setting with Get-ExecutionPolicy if you are running scripts - the default is Restricted which does not allow scripts to be executed, including any you have written yourself (you will get an error message to that effect if you try).You can change it using Set-ExecutionPolicy, usually to RemoteSigned but obviously choose whatever's most suitable for your environment.Cheers