How to Change remote computer Local account password using PowerShell

Being Administrators, we will come across the situation where we need to reset the passwords for all the Servers and Workstations Local  administrator Accounts. we can not go to each machine and reset the passwords. In this article, we will see how to reset the Local administrator password. Below command will help in reseting the […]

NTFS Shared Folders

Part1: How to create NTFS Shared Folders in Windows Server 2016?

In this article we see about NTFS sharing folders in Server manager. Open Server manager and file and storage Services Click on share and right side tab click Tasks and click on new Share. Select profile for sharing and select SMB Share -Quick and Click on Next. Select location of server and Volume of the […]

I automate

Part 2:How can I automate the process of sharing new folders in Server 2016?

In this article we see about automate the process of sharing new folders by using PowerShell. You can automate the process of sharing new folders using PowerShell 3.0 .  For example, To create and share folder, We could use the following commands in PowerShell, MD E:\Shares\ITDocuments New-SMBShare -Name ITDocuments -Path D:\Shares\ITDocuments -FolderEnumerationMode AccessBased -CachingModeITDocuments -EncryptData $True -FullAccess Everyone In […]