Posted On April 8, 2019

Common Windows Maintenance using PowerShell

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Common Windows Maintenance using PowerShell
# Install Windows Features:
Install-WindowsFeature SNMP-Service -IncludeManagementTools
Install-WindowsFeature -name Telnet-Client
Install-Module Posh-SSH -Force

# Disable Service:
sc config "SERVICE_NAME" start=disabled
sc stop "SERVICE_NAME"

# Disable Hibernation & activate "High Performance" power plan:
powercfg /hibernate off
powercfg /s SCHEME_MIN
powercfg /setactive 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c

# Test Connection on Port:
if((Test-NetConnection -ComputerName $REMOTE_SERVER -Port XXXX).tcpTestSucceeded){"execute if true"}else{"execute if false"}

# SSH:
New-SSHSession
Get-SSHSession
Remove-SSHSession

# IP to Hostname
Get-Content C:\Users\rambo\Desktop\ipList.txt | ForEach-Object {([system.net.dns]::GetHostByAddress($_)).hostname}

# Get external IP
Invoke-RestMethod ipinfo.io/ip

Leave a Reply

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

Related Post

PowerShell: Mapping and Unmapping Network Drives

How to Map Network Drive using Dot Net Framework $driveLetter='T' $smbPath='\\FILESERVER\SHARENAME' $username='DOMAIN\USERNAME' $password='PASSWORD' $networkDrivesObject =…

AWS Highlights

Features: 1. Multi-regions: compliance with Section 404 of COBIT requirements 2. Amazon S3 with redundancy,…

PowerShell: Microsoft Exchange to Require that all Senders are Authenticated

In this scenario, the business decision is to limit exposure of certain internal accounts to…
Other project: DragonCoin.com