hier nimm meinen window renamer, damit kannst du dein fenster wieder umbenennen.
hier der code, oder falls du damit net klakommst ist im anhang die exe.
Code:
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
Opt("WinTitleMatchMode", 3)
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("kknb´s window renamer", 254, 174, 192, 124)
$Group1 = GUICtrlCreateGroup("name vorher", 10, 8, 233, 53)
$Input1 = GUICtrlCreateInput("Guild Wars", 20, 28, 213, 21)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$Group2 = GUICtrlCreateGroup("name nachher", 10, 74, 233, 53)
$Input2 = GUICtrlCreateInput("Guild Wars1", 20, 94, 213, 21)
GUICtrlCreateGroup("", -99, -99, 1, 1)
$Button1 = GUICtrlCreateButton("lets do it", 42, 138, 161, 25, 0)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
go()
func go()
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
case $Button1
rename()
EndSwitch
WEnd
endfunc
func rename()
$vorher=GUICtrlRead($Input1)
$nachher= GUICtrlRead($Input2)
if $vorher = "" Then
MsgBox(0,"achtung","es wurde kein name zum ändern angegeben!")
go()
EndIf
if not WinExists($vorher) Then
MsgBox(0,"achtung","diese fenster gibt es nicht! bitte genaue rechtschreibung beachten!")
go()
EndIf
WinSetTitle ( $vorher, "", $nachher)
go()
EndFunc
bei vorher "guild wars2" und bei nachher "guild wars" rein und fertig ist die sache.