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

PowerShell Legacy Versions: How to Check Connection of Servers on Certain Ports?

A more updated version is available here. function Check-NetConnection($server, $port) { $session = New-Object System.Net.Sockets.TcpClient;…

PowerShell: Running Commands on Remote Computers

# runCommandsOnRemoteComputers.ps1 # User defined variables $computernames=@( 'SERVER001', 'SERVER002' ) $expectedExecutable='racadm.exe' $expectedInstallPath='C:\program files\Dell\SysMgt\iDRACTools\racadm' # Execution…

Server PDC Time Clock Synchronization 

Configuring the Windows Time service to use an external time source To configure an internal…