Month: May 2023

Just another Tech site

PowerShell API Wrapper Links

API Wrapper links from online sources. A module for simple integration with Atlassian HipChat via the HipChat API. This PowerShell module contains commands to manage GitHub through its REST API. Powershell cmdlets that expose the GitHub API. PowerShell cmdlets for interacting with GitHub Gist. A PowerShell module to work with GitHub Gists. A PowerShell Module…
Read more

Welcome

This is another tech site… I am working on and learning new skills, creative ways to get scripts/codes to work and sharing what I have come up with or have learned from others that work.

System Information

Working to get system information in the Batcave.  I wanted to create a way to gather system information as part of log file when working with application installations and troubleshooting systems. $CurrDate = $(Get-Date) $CompName = $Env:COMPUTERNAME $IPAddress = ([System.Net.Dns]::GetHostByName($Inputmachine).AddressList[0]).IpAddressToString $IPMAC = Get-WmiObject -Class Win32_NetworkAdapterConfiguration -ComputerName $CompName $MACAddress = ($IPMAC | Where-Object { $_.IpAddress -eq…
Read more