Posted On December 4, 2019

PowerShell: Enable ISE

kimconnect 0 comments
blog.KimConnect.com >> Windows >> PowerShell: Enable ISE
Import-Module ServerManager;
Add-WindowsFeature PowerShell-ISE

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

On-Premise Exchange 2010 to Office 365 Migration Instructions

Overview: There are several methods of migrating an on premise targeted Microsoft Exchange system, herein…

How to Install & Configure Pihole on Ubuntu 20.04

1. Installation- Run these commands: # sudo apt-get install gamin -ysudo curl -sSL https://raw.githubusercontent.com/pi-hole/pi-hole/master/automated%20install/basic-install.sh |…

PowerShell: Update CSV File Using Active Directory

# adAccountsCsvUpdate.ps1 $originalCsv='C:\Users\rambo\Desktop\kimconnectUsers.csv' $newCsv='C:\Users\rambo\Desktop\kimconnectUsers-processed.csv' $newEmailSuffix='@kimconnect.com' $newOu='OU=Test,DC=kimconnect,DC=com' function adAccountsCsvUpdate{ param( $originalCsv, $newCsv, $newEmailSuffix, $newOu ) function…