#Import AD modules import-module servermanager Add-WindowsFeature -Name "RSAT-AD-PowerShell" -IncludeAllSubFeature #List AD user accounts and show DisplayName, Email, Title and export to CSV Get-ADUser -Filter * -Properties DisplayName, EmailAddress, Title |…
Get a list of inactive computers which have not logged on to the domain in the last 12 weeks
# Inactive computers ( this will include systems not regularly used) # Launch command prompt as administrator and run the following commands Dsquery computer -inactive 12 -limit 500 # Lists…
Get a list of active computers which have logged on to the domain in the last 7 days
# Trying to work out is servers, laptops or desktops have been decommissioned # Try this script # Get a list of active computers which have logged on to the…
Hide Folders Under Share with Access Based Enumeration
So todays challenge. Hide visible folders under share to users who don't have access. Example We create some new shares. Folders are then created under the share and NTFS permissions…
Implementing Azure Infrastructure Solutions

Successfully completed the training course “Implementing Azure Infrastructure Solutions” @ the Microsoft Partner, Silver Learning, MTC Training #Azure #Microsoft #Sunderland #Training #AlwaysLearning
OMS – Azure Automation
What is OMS? . Is it.. System Center Online rebranded? OMS is used to gather logs centrally and make decisions upon this information. What can you do with Operations Management…
Azure and Containers
What is a container? A container is a live and running copy of an image which may have been customised. An image is a read only copy of an image…
Set Up Your Microsoft Azure Environment With PowerShell
Step 1 : Install Command Line Tool For PowerShell https://azure.microsoft.com/en-in/downloads/ Step 2: Launch PowerShell as Administrator Type in the following # get the Azure RM module installed first Install-Module AzureRM…
Microsoft Azure PaaS – Web Apps, Storage and Site Recovery
PaaS / App Service Check out the Azure App Service gallery of applications Most Web Apps would use Autoscaling When deploying web apps, consider integration and deployment options.. GitHub, DropBox,…
Microsoft Azure Virtual Machines and Networking
Azure VMs VMs types and sizes https://docs.microsoft.com/en-us/azure/virtual-machines/windows/sizes Only supported virtual machine type in Azure is "VHD". VHDX is not currently supported. Note : Managed disks are now preferred to use…