Sizden Gelen Sorular – PowerShell ile sehir ismi girerek hava durumunu nasil sorgularim?
function get-havadurumu ($location) {
    $Url = "https://wttr.in/$($Location)?format=%C\n%t\n%T\n"
    $WeatherData = Invoke-RestMethod $Url
    $WeatherData

}