I used powershell prompt. And it worked!
"# Gelen string değer
$stringValue = "%AttributeValue%"
# String değeri DateTime nesnesine dönüştürme
$dateTime = [DateTime]::ParseExact($stringValue, "d MMMM yyyy dddd HH:mm:ss", [System.Globalization.CultureInfo]::GetCultureInfo("tr-TR"))
# Yeni formata göre tarih ve saat değerini string olarak biçimlendirme
$newFormattedString = $dateTime.ToString("dd.MM.yyyy HH:mm:ss", [System.Globalization.CultureInfo]::GetCultureInfo("tr-TR"))
Write-Output $newFormattedString"