Browsed by
Month: January 2013

PowerShell: Get the hostname, mac, and IP remotely

PowerShell: Get the hostname, mac, and IP remotely

Normally I look around and find scripts to do things I need right away, sadly today, that was not the case! So, I looked at a few websites and was able to come up with this: $machines = Get-Content feedme.txt foreach($machinename in $machines) { get-wmiobject win32_networkadapterconfiguration -computer $machinename -filter “IPEnabled=’True'” | Select DNSHostname,MACAddress,IPAddress } Basically how it works is, you put your script and feedme.txt file in the same folder, the feedme.txt file has all of the machine names, then…

Read More Read More

US Embassy in Abu Dhabi

US Embassy in Abu Dhabi

Generally I have a decent experience at most of the places I go to, however recently I had a need for extra pages to be put into my passport within 24 hours and there wasn’t too much choice here in Kuwait as far as appointments, the next appointment was Sunday, so I deiced to look around. So curiosity struck, which consulate could do it fastest in the region? Here is my review: Abu Dhabi – Easy to get an appointment…

Read More Read More