$pid = Run(@ComSpec & ' /c route print', '', @SW_HIDE, 0x2)
$s = ''
While 1
$line = StdoutRead($pid)
If @error Then ExitLoop
If StringLen($line) > 0 Then $s &= $line
WEnd
$s = _Encoding_OEM2ANSI($s)
$sPattern = '.*?Постоянные'
$sRes = StringRegExpReplace($s, $sPattern, 'Постоянные')
$route_print = GUICtrlCreateLabel($s, 20,45,650,200)