How to perform 'Get Hostname' in PowerShell.
# Task: Get Hostname
# Language: PowerShell
function get_hostname() {
# Implementation for Get Hostname
$ result = ...; # Initialize variable
# TODO: Implement core logic here
# Step 1: Prepare data
# Step 2: Process Get Hostname
Write-Host("Done");
}