Azure Function Devops

Let’s work with Azure Functions and Create our 1st Function To Setup your enviroment you need: VSCODE Installed Azure Functions Installed (extension) Powershell Core NET SDK 2.2 Azure Functions Core Tools https://docs.microsoft.com/azure/azure-functions/functions-run-local#v2?WT.mc_id=docs-azuredevtips-micrum Goal – Build a REST API and simple web page to display the information using powershell and Azure Read more…

Hybrid Runbook Worker

Runbooks in Azure Automation might not have access to resources in other clouds or in your on-premises environment because they run on the Azure cloud platform. You can use the Hybrid Runbook Worker feature of Azure Automation to run runbooks directly on the computer that’s hosting the role and against Read more…

Powershell – Get IP Details

Hi folks, this is a script to help you get network information from remote servers or clients. You can use get-content to a list of server names or you can run to a single machine. The information,includes,ComputerName,IPAddress,SubnetMask,Gateway,IsDHCPEnabled,DNSServers,WINSServers,MACAddress. Here is the code #How to run you can target one single machine Read more…

Active Directory Health Check

Quick Active Directory Health Check sending to your email , you can setup this script via schedule task and have it daily in your mailbox ! Function Getservicestatus($service, $server) { $st = Get-service -computername $server | where-object { $_.name -eq $service } if($st) {$servicestatus= $st.status} else {$servicestatus = "Not found"} Read more…