Line 24318 ошибка

C:UsersxGenemosUHCxDesktopSocial-RPgamemodessocialgm.pwn(24318) : error 017: undefined symbol "Info" C:UsersxGenemosUHCxDesktopSocial-RPgamemodessocialgm.pwn(24318) : warning 215: expression has no effect C:UsersxGenemosUHCxDesktopSocial-RPgamemodessocialgm.pwn(24318) : error...

OfficialGenemos

Нуль

Регистрация
11 Июн 2017
Сообщения
8
Лучшие ответы
0
Репутация
0

  • #1

C:UsersxGenemosUHCxDesktopSocial-RPgamemodessocialgm.pwn(24318) : error 017: undefined symbol «Info»
C:UsersxGenemosUHCxDesktopSocial-RPgamemodessocialgm.pwn(24318) : warning 215: expression has no effect
C:UsersxGenemosUHCxDesktopSocial-RPgamemodessocialgm.pwn(24318) : error 001: expected token: «;», but found «]»
C:UsersxGenemosUHCxDesktopSocial-RPgamemodessocialgm.pwn(24318) : error 029: invalid expression, assumed zero
C:UsersxGenemosUHCxDesktopSocial-RPgamemodessocialgm.pwn(24318) : fatal error 107: too many error messages on one line

Вот Код:

CMD:leaders(playerid)
{
foreach(Player, i)
{
if(Info[pleader] > 0)
{
static const fmt_str[] = «&s — &s[&d]»
new string[sizeof(fmt_str) — 6 + sizeof(frac_name) + MAX_PLAYER_NAME + 3];
format(string, sizeof(string), fmt_str

frac_name[Info, [pleader]],
GN(i),
i
);
SCM(playerid, COLOR_WHITE, string);
}
}
return true;
}

Please make sure that this is a build/installation issue. As per our GitHub Policy, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:build_template

System information

  • Ubuntu 18.04
  • TensorFlow installed from source
  • TensorFlow version: git master
  • Python version:
  • Bazel version (if compiling from source): 0.19.2
  • GCC/Compiler version (if compiling from source): 7.3.0
  • CUDA/cuDNN version: CUDA 10.0/ cuDNN 7.3
  • GPU model and memory: GTX980Ti

Describe the problem
Buit fail
Provide the exact sequence of commands / steps that you executed before running into the problem

tensorflow/core/common_runtime/eager/execute.cc: In function 'tensorflow::Status tensorflow::{anonymous}::ValidateInputTypeAndPlacement(tensorflow::EagerContext*, tensorflow::Device*, tensorflow::EagerOperation*, const tensorflow::OpKernel*, tensorflow::RunMetadata*)':
tensorflow/core/common_runtime/eager/execute.cc:179:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int i = 0; i < op->Inputs().size(); ++i) {
                   ~~^~~~~~~~~~~~~~~~~~~~~
tensorflow/core/common_runtime/eager/execute.cc: In function 'tensorflow::Status tensorflow::{anonymous}::EagerRemoteExecute(tensorflow::EagerOperation*, tensorflow::TensorHandle**, int*)':
tensorflow/core/common_runtime/eager/execute.cc:490:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int i = 0; i < op->Inputs().size(); i++) {
                   ~~^~~~~~~~~~~~~~~~~~~~~
tensorflow/core/common_runtime/eager/execute.cc:524:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   if (*num_retvals != output_dtypes.size()) {
       ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
tensorflow/core/common_runtime/eager/execute.cc: In lambda function:
tensorflow/core/common_runtime/eager/execute.cc:565:33: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
               for (int i = 0; i < retvals.size(); i++) {
                               ~~^~~~~~~~~~~~~~~~
tensorflow/core/common_runtime/eager/execute.cc: In function 'tensorflow::Status tensorflow::{anonymous}::MaybeUpdateOpDevice(tensorflow::EagerOperation*)':
tensorflow/core/common_runtime/eager/execute.cc:626:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int i = 0; i < op->Inputs().size(); ++i) {
                   ~~^~~~~~~~~~~~~~~~~~~~~
tensorflow/core/common_runtime/eager/execute.cc:622:8: warning: variable 'device_set_for_resource_variable' set but not used [-Wunused-but-set-variable]
   bool device_set_for_resource_variable = false;
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
tensorflow/core/common_runtime/eager/execute.cc: In function 'tensorflow::Status tensorflow::EagerExecute(tensorflow::EagerContext*, tensorflow::Device*, const absl::InlinedVector<tensorflow::TensorHandle*, 4>&, tensorflow::KernelAndDevice*, tensorflow::NodeExecStats*, tensorflow::StepStats*, tensorflow::GraphCollector*, tensorflow::TensorHandle**, int)':
tensorflow/core/common_runtime/eager/execute.cc:716:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int i = 0; i < op_inputs.size(); ++i) {
                   ~~^~~~~~~~~~~~~~~~~~
tensorflow/core/common_runtime/eager/execute.cc:753:43: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
       while (step_stats->dev_stats_size() < ctx->devices()->size()) {
              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
tensorflow/core/common_runtime/eager/execute.cc:758:25: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
       for (int i = 0; i < ctx->devices()->size(); ++i) {
                       ~~^~~~~~~~~~~~~~~~~~~~~~~~
tensorflow/core/common_runtime/eager/execute.cc:713:27: warning: variable 'output_memory_types' set but not used [-Wunused-but-set-variable]
   const MemoryTypeVector* output_memory_types = nullptr;
                           ^~~~~~~~~~~~~~~~~~~
In file included from ./tensorflow/core/platform/default/logging.h:24:0,
                 from ./tensorflow/core/platform/logging.h:25,
                 from ./tensorflow/core/lib/core/refcount.h:22,
                 from ./tensorflow/core/platform/tensor_coding.h:21,
                 from ./tensorflow/core/framework/resource_handle.h:19,
                 from ./tensorflow/core/framework/allocator.h:24,
                 from ./tensorflow/core/common_runtime/device.h:35,
                 from ./tensorflow/core/common_runtime/eager/execute.h:18,
                 from tensorflow/core/common_runtime/eager/execute.cc:16:
./tensorflow/core/util/tensor_format.h: In instantiation of 'T tensorflow::GetTensorDim(tensorflow::gtl::ArraySlice<T>, tensorflow::TensorFormat, char) [with T = long long int; tensorflow::gtl::ArraySlice<T> = absl::Span<const long long int>]':
./tensorflow/core/util/tensor_format.h:452:47:   required from here
./tensorflow/core/util/tensor_format.h:420:29: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   CHECK(index >= 0 && index < dimension_attributes.size())
./tensorflow/core/platform/macros.h:87:47: note: in definition of macro 'TF_PREDICT_FALSE'
 #define TF_PREDICT_FALSE(x) (__builtin_expect(x, 0))
                                               ^
./tensorflow/core/util/tensor_format.h:420:3: note: in expansion of macro 'CHECK'
   CHECK(index >= 0 && index < dimension_attributes.size())
   ^
./tensorflow/core/util/tensor_format.h: In instantiation of 'T tensorflow::GetFilterDim(tensorflow::gtl::ArraySlice<T>, tensorflow::FilterTensorFormat, char) [with T = long long int; tensorflow::gtl::ArraySlice<T> = absl::Span<const long long int>]':
./tensorflow/core/util/tensor_format.h:461:54:   required from here
./tensorflow/core/util/tensor_format.h:435:29: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   CHECK(index >= 0 && index < dimension_attribute.size())
./tensorflow/core/platform/macros.h:87:47: note: in definition of macro 'TF_PREDICT_FALSE'
 #define TF_PREDICT_FALSE(x) (__builtin_expect(x, 0))
                                               ^
./tensorflow/core/util/tensor_format.h:435:3: note: in expansion of macro 'CHECK'
   CHECK(index >= 0 && index < dimension_attribute.size())
   ^
ERROR: /home/xx/tensorflow/tensorflow/core/kernels/BUILD:762:1: C++ compilation of rule '//tensorflow/core/kernels:broadcast_to_op' failed (Exit 4)
gcc: internal compiler error: Killed (program cc1plus)
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-7/README.Bugs> for instructions.
Target //tensorflow/tools/pip_package:build_pip_package failed to build
Use --verbose_failures to see the command lines of failed build steps.
INFO: Elapsed time: 1255.664s, Critical Path: 397.27s, Remote (0.00% of the time): [queue: 0.00%, setup: 0.00%, process: 0.00%]
INFO: 5547 processes: 5547 local.
FAILED: Build did NOT complete successfully

Please make sure that this is a build/installation issue. As per our GitHub Policy, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:build_template

System information

  • Ubuntu 18.04
  • TensorFlow installed from source
  • TensorFlow version: git master
  • Python version:
  • Bazel version (if compiling from source): 0.19.2
  • GCC/Compiler version (if compiling from source): 7.3.0
  • CUDA/cuDNN version: CUDA 10.0/ cuDNN 7.3
  • GPU model and memory: GTX980Ti

Describe the problem
Buit fail
Provide the exact sequence of commands / steps that you executed before running into the problem

tensorflow/core/common_runtime/eager/execute.cc: In function 'tensorflow::Status tensorflow::{anonymous}::ValidateInputTypeAndPlacement(tensorflow::EagerContext*, tensorflow::Device*, tensorflow::EagerOperation*, const tensorflow::OpKernel*, tensorflow::RunMetadata*)':
tensorflow/core/common_runtime/eager/execute.cc:179:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int i = 0; i < op->Inputs().size(); ++i) {
                   ~~^~~~~~~~~~~~~~~~~~~~~
tensorflow/core/common_runtime/eager/execute.cc: In function 'tensorflow::Status tensorflow::{anonymous}::EagerRemoteExecute(tensorflow::EagerOperation*, tensorflow::TensorHandle**, int*)':
tensorflow/core/common_runtime/eager/execute.cc:490:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int i = 0; i < op->Inputs().size(); i++) {
                   ~~^~~~~~~~~~~~~~~~~~~~~
tensorflow/core/common_runtime/eager/execute.cc:524:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   if (*num_retvals != output_dtypes.size()) {
       ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
tensorflow/core/common_runtime/eager/execute.cc: In lambda function:
tensorflow/core/common_runtime/eager/execute.cc:565:33: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
               for (int i = 0; i < retvals.size(); i++) {
                               ~~^~~~~~~~~~~~~~~~
tensorflow/core/common_runtime/eager/execute.cc: In function 'tensorflow::Status tensorflow::{anonymous}::MaybeUpdateOpDevice(tensorflow::EagerOperation*)':
tensorflow/core/common_runtime/eager/execute.cc:626:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int i = 0; i < op->Inputs().size(); ++i) {
                   ~~^~~~~~~~~~~~~~~~~~~~~
tensorflow/core/common_runtime/eager/execute.cc:622:8: warning: variable 'device_set_for_resource_variable' set but not used [-Wunused-but-set-variable]
   bool device_set_for_resource_variable = false;
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
tensorflow/core/common_runtime/eager/execute.cc: In function 'tensorflow::Status tensorflow::EagerExecute(tensorflow::EagerContext*, tensorflow::Device*, const absl::InlinedVector<tensorflow::TensorHandle*, 4>&, tensorflow::KernelAndDevice*, tensorflow::NodeExecStats*, tensorflow::StepStats*, tensorflow::GraphCollector*, tensorflow::TensorHandle**, int)':
tensorflow/core/common_runtime/eager/execute.cc:716:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int i = 0; i < op_inputs.size(); ++i) {
                   ~~^~~~~~~~~~~~~~~~~~
tensorflow/core/common_runtime/eager/execute.cc:753:43: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
       while (step_stats->dev_stats_size() < ctx->devices()->size()) {
              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
tensorflow/core/common_runtime/eager/execute.cc:758:25: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
       for (int i = 0; i < ctx->devices()->size(); ++i) {
                       ~~^~~~~~~~~~~~~~~~~~~~~~~~
tensorflow/core/common_runtime/eager/execute.cc:713:27: warning: variable 'output_memory_types' set but not used [-Wunused-but-set-variable]
   const MemoryTypeVector* output_memory_types = nullptr;
                           ^~~~~~~~~~~~~~~~~~~
In file included from ./tensorflow/core/platform/default/logging.h:24:0,
                 from ./tensorflow/core/platform/logging.h:25,
                 from ./tensorflow/core/lib/core/refcount.h:22,
                 from ./tensorflow/core/platform/tensor_coding.h:21,
                 from ./tensorflow/core/framework/resource_handle.h:19,
                 from ./tensorflow/core/framework/allocator.h:24,
                 from ./tensorflow/core/common_runtime/device.h:35,
                 from ./tensorflow/core/common_runtime/eager/execute.h:18,
                 from tensorflow/core/common_runtime/eager/execute.cc:16:
./tensorflow/core/util/tensor_format.h: In instantiation of 'T tensorflow::GetTensorDim(tensorflow::gtl::ArraySlice<T>, tensorflow::TensorFormat, char) [with T = long long int; tensorflow::gtl::ArraySlice<T> = absl::Span<const long long int>]':
./tensorflow/core/util/tensor_format.h:452:47:   required from here
./tensorflow/core/util/tensor_format.h:420:29: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   CHECK(index >= 0 && index < dimension_attributes.size())
./tensorflow/core/platform/macros.h:87:47: note: in definition of macro 'TF_PREDICT_FALSE'
 #define TF_PREDICT_FALSE(x) (__builtin_expect(x, 0))
                                               ^
./tensorflow/core/util/tensor_format.h:420:3: note: in expansion of macro 'CHECK'
   CHECK(index >= 0 && index < dimension_attributes.size())
   ^
./tensorflow/core/util/tensor_format.h: In instantiation of 'T tensorflow::GetFilterDim(tensorflow::gtl::ArraySlice<T>, tensorflow::FilterTensorFormat, char) [with T = long long int; tensorflow::gtl::ArraySlice<T> = absl::Span<const long long int>]':
./tensorflow/core/util/tensor_format.h:461:54:   required from here
./tensorflow/core/util/tensor_format.h:435:29: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   CHECK(index >= 0 && index < dimension_attribute.size())
./tensorflow/core/platform/macros.h:87:47: note: in definition of macro 'TF_PREDICT_FALSE'
 #define TF_PREDICT_FALSE(x) (__builtin_expect(x, 0))
                                               ^
./tensorflow/core/util/tensor_format.h:435:3: note: in expansion of macro 'CHECK'
   CHECK(index >= 0 && index < dimension_attribute.size())
   ^
ERROR: /home/xx/tensorflow/tensorflow/core/kernels/BUILD:762:1: C++ compilation of rule '//tensorflow/core/kernels:broadcast_to_op' failed (Exit 4)
gcc: internal compiler error: Killed (program cc1plus)
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-7/README.Bugs> for instructions.
Target //tensorflow/tools/pip_package:build_pip_package failed to build
Use --verbose_failures to see the command lines of failed build steps.
INFO: Elapsed time: 1255.664s, Critical Path: 397.27s, Remote (0.00% of the time): [queue: 0.00%, setup: 0.00%, process: 0.00%]
INFO: 5547 processes: 5547 local.
FAILED: Build did NOT complete successfully

#include <Array.au3>

$aAutoItProcList = _ProcessListEx("CompiledScript", "AutoIt", 0)

If @error Then
	MsgBox(48, "_ProcessListEx - Error", StringFormat("There was an error to get ProcessList (@error = %i)", @error))
Else
	_ArrayDisplay($aAutoItProcList, "_ProcessListEx Demo (AutoIt Processes)")
EndIf

;===============================================================================
;
; Function Name:  		   _ProcessListEx()
;
; Function Description:    Gets Process List with extended info, plus can retrieve only a processes with specific resources strings.
;
; Parameter(s):            $sResourceName [Optional] - Resource name of the process filename, i.e. "CompiledScript".
;                          $sInResString [Optional] - String to check in the resource name.
;                          $iWholeWord [Optional] - Defines if the $sInResString will be compared as whole string (default is 1).
;
; Requirement(s):          None.
;
; Return Value(s):         On Success -  Return 2-dimentional array, where:
;                                                                   $aRet_List[0][0] = Total processes (array elements).
;                                                                   $aRet_List[N][0] = Process Name.
;                                                                   $aRet_List[N][1] = PID (Process ID).
;                                                                   $aRet_List[N][2] = Process File Path.
;                          On Failure -  Return '' (empty string) and set @error to:
;                                                                   1 - Unable to Open Kernel32.dll.
;                                                                   2 - Unable to Open Psapi.dll.
;                                                                   3 - No Processes Found.
;
; Author(s):               G.Sandler (a.k.a MrCreatoR) - CreatoR's Lab (http://creator-lab.ucoz.ru)
;
;=====================================================================
Func _ProcessListEx($sResourceName="", $sInResString="", $iWholeWord=1)
	Local $aProcList = ProcessList()
	Local $hKernel32_Dll = DllOpen('Kernel32.dll'), $hPsapi_Dll = DllOpen('Psapi.dll')
	Local $aOpenProc, $aProcPath, $sFileVersion, $aRet_List[1][1]
	
	If $hKernel32_Dll = -1 Then Return SetError(1, 0, '')
	
	If $hPsapi_Dll = -1 Then $hPsapi_Dll = DllOpen(@SystemDir & 'Psapi.dll')
	If $hPsapi_Dll = -1 Then $hPsapi_Dll = DllOpen(@WindowsDir & 'Psapi.dll')
	If $hPsapi_Dll = -1 Then Return SetError(2, 0, '')
	
	Local $vStruct 		= DllStructCreate('int[1024]')
	Local $pStructPtr 	= DllStructGetPtr($vStruct)
	Local $iStructSize 	= DllStructGetSize($vStruct)
	
	For $i = 1 To UBound($aProcList)-1
		$aOpenProc = DllCall($hKernel32_Dll, 'hwnd', 'OpenProcess', _
			'int', BitOR(0x0400, 0x0010), 'int', 0, 'int', $aProcList[$i][1])
		
		If Not IsArray($aOpenProc) Or Not $aOpenProc[0] Then ContinueLoop
		
		DllCall($hPsapi_Dll, 'int', 'EnumProcessModules', _
			'hwnd', $aOpenProc[0], _
			'ptr', $pStructPtr, _
			'int', $iStructSize, _
			'int*', 0)
		
		$aProcPath = DllCall($hPsapi_Dll, 'int', 'GetModuleFileNameEx', _
			'hwnd', $aOpenProc[0], _
			'int', DllStructGetData($vStruct, 1), _
			'str', '', _
			'int', 2048)
		
		DllCall($hKernel32_Dll, 'int', 'CloseHandle', 'int', $aOpenProc[0])
		
		If Not IsArray($aProcPath) Or StringLen($aProcPath[3]) = 0 Then ContinueLoop
		
		$sFileVersion = FileGetVersion($aProcPath[3], $sResourceName)
		
		If $sResourceName = "" Or $sFileVersion = $sInResString Or _
			($iWholeWord = 0 And StringInStr($sFileVersion, $sInResString)) Then
			
			$aRet_List[0][0] += 1
			ReDim $aRet_List[$aRet_List[0][0]+1][3]
			$aRet_List[$aRet_List[0][0]][0] = $aProcList[$i][0] 	;Process Name
			$aRet_List[$aRet_List[0][0]][1] = $aProcList[$i][1] 	;PID (Process ID)
			$aRet_List[$aRet_List[0][0]][2] = $aProcPath[3] 		;Process File Path
		EndIf
	Next
	
	DllClose($hKernel32_Dll)
	DllClose($hPsapi_Dll)
	
	If $aRet_List[0][0] < 1 Then Return SetError(3, 0, '')
	Return $aRet_List
EndFunc

1 / 1 / 0

Регистрация: 15.10.2021

Сообщений: 9

1

15.10.2021, 07:51. Показов 18007. Ответов 16


Доброго времени!
Скачала внуку с торрента Rust. После попытки установки (установку прервала, папку с iso удалила) появилось всплывающее окно с ошибкой Line 25226 (File C:ProgramDataRealtekHDtaskhost.exe): Error: Variable must be of type «Object».
Очень прошу вашей помощи. Логи прилагаю.
Благодарю.

__________________
Помощь в написании контрольных, курсовых и дипломных работ, диссертаций здесь



0



Вирусоборец

19109 / 14734 / 2780

Регистрация: 08.10.2012

Сообщений: 59,861

15.10.2021, 08:24

2

Лучший ответ Сообщение было отмечено luuchia как решение

Решение

Здравствуйте!

Цитата
Сообщение от luuchia
Посмотреть сообщение

Скачала внуку с торрента Rust

Торрент-файл сохранился? Или хотя бы ссылка на его закачку? Если да, сообщите или прикрепите в архиве к следующему сообщению, пожалуйста.

Скачайте AV block remover.
Распакуйте, запустите и следуйте инструкциям. Если не запускается, переименуйте файл AVbr.exe в, например, AV_br.exe
В результате работы утилиты появится отчёт AV_block_remove.log, прикрепите его к следующему сообщению.

После перезагрузки системы соберите новый CollectionLog Автологером.



1



1 / 1 / 0

Регистрация: 15.10.2021

Сообщений: 9

15.10.2021, 10:09

 [ТС]

3

Цитата
Сообщение от Sandor
Посмотреть сообщение

ссылка на его закачку

[ссылка]
логи готовы



0



Вирусоборец

19109 / 14734 / 2780

Регистрация: 08.10.2012

Сообщений: 59,861

15.10.2021, 10:21

4

Лучший ответ Сообщение было отмечено luuchia как решение

Решение

Unchecky v1.2 деинсталлируйте как нежелательное ПО.

Дополнительно подготовьте и прикрепите лог сканирования AdwCleaner.



1



1 / 1 / 0

Регистрация: 15.10.2021

Сообщений: 9

15.10.2021, 10:39

 [ТС]

5

Цитата
Сообщение от Sandor
Посмотреть сообщение

Unchecky v1.2 деинсталлируйте

готово
Mobogenie бы тоже выкорчевать, если можно, подскажите, пожалуйста



0



Вирусоборец

19109 / 14734 / 2780

Регистрация: 08.10.2012

Сообщений: 59,861

15.10.2021, 10:42

6

Лучший ответ Сообщение было отмечено luuchia как решение

Решение

Я видел. Как раз этим сейчас и занимаемся

1.

  • Запустите повторно (если уже закрыли) AdwCleaner (by Malwarebytes) (программу необходимо запускать через правую кн. мыши от имени администратора).
  • В меню Параметры включите дополнительно в разделе Действия по базовому восстановлению:
    • Сбросить политики IE
    • Сбросить политики Chrome
  • В меню Информационная панель нажмите Запустить проверку.
  • По окончании нажмите кнопку Карантин и дождитесь окончания удаления.
  • Когда удаление будет завершено, отчет будет сохранен в следующем расположении: C:AdwCleanerLogsAdwCleaner[Cxx].txt (где x — любая цифра).
  • Прикрепите отчет к своему следующему сообщению.
  • (Обратите внимание — C и S — это разные буквы).

Внимание: Для успешного удаления нужна перезагрузка компьютера!!!

2.
Скачайте Farbar Recovery Scan Tool (или с зеркала) и сохраните на Рабочем столе.

Примечание: необходимо выбрать версию, совместимую с Вашей операционной системой. Если Вы не уверены, какая версия подойдет для Вашей системы, скачайте обе и попробуйте запустить. Только одна из них запустится на Вашей системе.
Запустите программу. Когда программа запустится, нажмите Да для соглашения с предупреждением.

Нажмите кнопку Сканировать (Scan).
После окончания сканирования будут созданы отчеты FRST.txt и Addition.txt в той же папке, откуда была запущена программа. Прикрепите отчеты к своему следующему сообщению.
(Если не помещаются, упакуйте в архив).
Подробнее читайте в этом руководстве.



0



1 / 1 / 0

Регистрация: 15.10.2021

Сообщений: 9

15.10.2021, 11:36

 [ТС]

7

готово



0



Вирусоборец

19109 / 14734 / 2780

Регистрация: 08.10.2012

Сообщений: 59,861

15.10.2021, 11:47

8

Примите к сведению — после выполнения скрипта (возможно) все открытые вкладки браузеров будут закрыты, произойдет выход из аккаунтов, временные файлы, корзина, история браузеров, куки и кэш будут очищены.

  • Отключите до перезагрузки антивирус.
  • Выделите следующий код:

    Код

    Start::
    SystemRestore: On
    CreateRestorePoint:
    HKLMSOFTWAREPoliciesMicrosoftWindows Defender: Ограничение <==== ВНИМАНИЕ
    HKUS-1-5-21-147704507-3435108083-79437218-1000...MountPoints2: {29273c63-677a-11eb-a15d-5e52c2d62820} - F:HiSuiteDownLoader.exe
    HKUS-1-5-21-147704507-3435108083-79437218-1000...MountPoints2: {29273c6d-677a-11eb-a15d-5e52c2d62820} - F:HiSuiteDownLoader.exe
    HKUS-1-5-21-147704507-3435108083-79437218-1000...MountPoints2: {5cb1cee2-5d2d-11eb-a5a7-5e52c2d62820} - F:Startme.exe
    GroupPolicy: Ограничение ? <==== ВНИМАНИЕ
    GroupPolicy-Firefox-x32: Ограничение <==== ВНИМАНИЕ
    Policies: C:ProgramDataNTUSER.pol: Ограничение <==== ВНИМАНИЕ
    Task: {6D55D100-6A0A-4723-8203-643CA3DBAE66} - Maxthon5 Update -> Нет файла <==== ВНИМАНИЕ
    FF NetworkProxy: MozillaFirefoxProfilesbcchhal9.default -> autoconfig_url", 
    AlternateDataStreams: C:ProgramDataTEMP:41ADDB8A [292]
    AlternateDataStreams: C:ProgramDataTEMP:A064CECC [133]
    AlternateDataStreams: C:UsersSLokale Einstellungen:String [148]
    AlternateDataStreams: C:UsersSAppDataLocal:String [148]
    AlternateDataStreams: C:UsersSAppDataLocalAnwendungsdaten:String [148]
    FirewallRules: [{ACD306B8-2B9E-441D-ACF1-C6ECB2045B55}] => (Allow) LPort=8319
    FirewallRules: [{1C29B223-C977-46CF-ADBB-B86D79AD7C56}] => (Allow) C:Program Files (x86)Mobogenie3mobogenieP2sp.exe => Нет файла
    FirewallRules: [{44C27713-C25A-42FC-8EE6-E01F0E0C7821}] => (Allow) C:Program Files (x86)Mobogenie3mobogenieP2sp.exe => Нет файла
    FirewallRules: [{AACDD158-DF07-4E1B-A0B1-634BC37CA887}] => (Allow) C:Program Files (x86)Mobogenie3mobogenieP2sp.exe => Нет файла
    FirewallRules: [{FFE9AABE-0820-41F1-A374-5DE2EB1EE526}] => (Allow) C:Program Files (x86)Mobogenie3mobogenieP2sp.exe => Нет файла
    FirewallRules: [{E28C589D-DEE5-4250-84A0-8E497F1414DF}] => (Allow) LPort=135
    FirewallRules: [{29A84B9F-C199-471F-BF46-8443E46E8F60}] => (Allow) LPort=445
    FirewallRules: [{6D6B6079-DC9D-48AC-827F-462BCD0E0120}] => (Allow) LPort=8320
    ExportKey: HKLMSOFTWAREMicrosoftWindows DefenderExclusions
    EmptyTemp:
    Reboot:
    End::

  • Скопируйте выделенный текст (правой кнопкой — Копировать).
  • Запустите FRST (FRST64) от имени администратора.
  • Нажмите Исправить (Fix) один раз (!) и подождите. Программа создаст лог-файл (Fixlog.txt). Прикрепите его к своему следующему сообщению.

Компьютер будет перезагружен автоматически.



0



1 / 1 / 0

Регистрация: 15.10.2021

Сообщений: 9

15.10.2021, 12:03

 [ТС]

9

готово



0



Вирусоборец

19109 / 14734 / 2780

Регистрация: 08.10.2012

Сообщений: 59,861

15.10.2021, 12:17

10

Проблема решена?



0



1 / 1 / 0

Регистрация: 15.10.2021

Сообщений: 9

15.10.2021, 12:24

 [ТС]

11

Благодарю! Да.
Скажите, пожалуйста, это получается, АВ Grizzly не справился?
и почему я вам не могу больше лайков поставить?



0



Вирусоборец

19109 / 14734 / 2780

Регистрация: 08.10.2012

Сообщений: 59,861

15.10.2021, 12:27

12

Получается не справился. Переходите на более известных производителей антивирусов (можно бесплатные версии).

В завершение:

1. Выполните процедуру, описанную на этой странице.
Ссылку на результат анализа приведите здесь, пожалуйста.

2.

  • Пожалуйста, запустите adwcleaner.exe
  • В меню Параметры прокрутите вниз и выберите Удалить.

Переименуйте FRST.exe (или FRST64.exe) в uninstall.exe и запустите.
Компьютер перезагрузится.

Остальные утилиты лечения и папки можно просто удалить.

3.

  • Загрузите SecurityCheck by glax24 & Severnyj, сохраните утилиту на Рабочем столе и извлеките из архива.
  • Запустите двойным щелчком мыши (если Вы используете Windows XP) или из меню по щелчку правой кнопки мыши Запустить от имени администратора (если Вы используете Windows Vista/7/8/8.1/10)
  • Если увидите предупреждение от вашего фаервола или SmartScreen относительно программы SecurityCheck, не блокируйте ее работу
  • Дождитесь окончания сканирования, откроется лог в блокноте с именем SecurityCheck.txt
  • Если Вы закрыли Блокнот, то найти этот файл можно в корне системного диска в папке с именем SecurityCheck, например C:SecurityCheckSecurityCheck.txt
  • Прикрепите этот файл к своему следующему сообщению.



0



1 / 1 / 0

Регистрация: 15.10.2021

Сообщений: 9

15.10.2021, 12:57

 [ТС]

13

Цитата
Сообщение от Sandor
Посмотреть сообщение

Переходите на более известных производителей антивирусов

из этого списка разве что AVG☺

готово
https://disk.yandex.ru/d/BRloD_Zu_66GZA



0



Вирусоборец

19109 / 14734 / 2780

Регистрация: 08.10.2012

Сообщений: 59,861

15.10.2021, 13:00

14

Указанное ниже примите к сведению и постарайтесь всё обновить/исправить:

——————————- [ Windows ] ——————————-

Extended support has ended 14.01.2020, Your operating system may be vulnerable to new types of threats
Internet Explorer 11.0.9600.17843 Warning! Download Update
User Account Control disabled (Level 1)
^It is recommended to enable (default): Win+R typing UserAccountControlSettings and Enter^
——————————- [ HotFix ] ———————————
HotFix KB3177467 Warning! Download Update
HotFix KB3125574 Warning! Download Update
HotFix KB4012212 Warning! Download Update
HotFix KB4499175 Warning! Download Update
HotFix KB4474419 Warning! Download Update
HotFix KB4490628 Warning! Download Update
HotFix KB4539602 Warning! Download Update
————————— [ OtherUtilities ] —————————-
Notepad++ (64-bit x64) v.7.6.4 Warning! Download Update
Microsoft Office профессиональный плюс 2019 — ru-ru v.16.0.11901.20218 Warning! Download Update
How Install Office updates?
SumatraPDF v.3.2 Warning! Download Update
Microsoft Silverlight v.5.1.50901.0 Warning! This software is no longer supported.
Intel® Driver & Support Assistant v.19.9.38.6 Warning! Download Update
——————————- [ Backup ] ———————————
Яндекс.Диск v.3.2.0.4105 Warning! Download Update
HP Google Drive Plugin v.36.0.41.58587 Warning! Download Update
—————————- [ ProxyAndVPNs ] ——————————
SoftEther VPN Client v.4.28.9669 Warning! Download Update
——————————— [ P2P ] ———————————
uTorrent v.3.5.5.46020 Warning! Ad-supported P2P-client.
——————————— [ Java ] ———————————
Java 8 Update 131 (64-bit) v.8.0.1310.11 Warning! Download Update
Uninstall old version and install new one (jre-8u301-windows-x64.exe).
Java 8 Update 131 v.8.0.1310.11 Warning! Download Update
Uninstall old version and install new one (jre-8u301-windows-i586.exe).
Java 8 Update 271 v.8.0.2710.9 Warning! Download Update
Uninstall old version and install new one (jre-8u301-windows-i586.exe).
——————————— [ Media ] ———————————
HandBrake 1.0.2 v.1.0.2 Warning! Download Update
K-Lite Mega Codec Pack 15.7.0 v.15.7.0 Warning! Download Update
————————— [ AdobeProduction ] —————————
Adobe Flash Player 29 NPAPI v.29.0.0.171 Warning! This software is no longer supported. Please uninstall it.
Adobe Shockwave Player 12.2 v.12.2.5.195 Warning! This software is no longer supported. Please uninstall it.
Adobe Acrobat DC v.21.001.20155 Warning! Download Update
^Please run Acrobat DC and go Help — Check for updates…^
——————————- [ Browser ] ——————————-
Opera Stable 79.0.4143.72 v.79.0.4143.72 Warning! Download Update
—————————- [ UnwantedApps ] ——————————
Freemake Video Converter RePack by CUTA v.4.1.9.80 Warning! Crack, hacktool or keygen.
IObit Unlocker v.1.1.2.1 Warning! Application is distributed through the partnership programs and bundle assemblies. Uninstallation recommended. Possible you became a victim of fraud or social engineering.

Читайте Рекомендации после удаления вредоносного ПО



0



1 / 1 / 0

Регистрация: 15.10.2021

Сообщений: 9

15.10.2021, 13:18

 [ТС]

15

поняла
Sandor, БлагоДарю от всей души



1



Вирусоборец

19109 / 14734 / 2780

Регистрация: 08.10.2012

Сообщений: 59,861

15.10.2021, 13:38

16



0



1 / 1 / 0

Регистрация: 15.10.2021

Сообщений: 9

15.10.2021, 17:25

 [ТС]

17

Благодарю. К сожалению, лайк не могу поставить



0



IT_Exp

Эксперт

87844 / 49110 / 22898

Регистрация: 17.06.2006

Сообщений: 92,604

15.10.2021, 17:25

Помогаю со студенческими работами здесь

Error «Variable uses an Automation type …»???
Обьясните пожалуйста, на одной машине код работает, а на другой машине на строке * выдает ошибку…

В момент закрытия формы выводится сообщение «Run-time error ’91’ Object variable or With-block not set»
Программа запускается — работает — выводит форму. Потом нажимаю крестик на форме (типа закрываю…

Error Traceback (most recent call last): File «C:UsersDekstopDesktopproject by glebnastr.py», line 24, in <module
Добрый день, вечер, утро! Всем! Есть код
вот он:

import vk_api
from vk_api.longpoll import…

Ошибка «Parse error: syntax error, unexpected ‘»‘, expecting identifier (T_STRING) or variable (T_VARIABLE)
Пытаюсь сделать фильтр с помощью eval()
foreach ($podbors as $podbor){

if (isset($podbor)) {

Ошибка «Parse error: syntax error, unexpected $end in shCacheContent.php on line 9406»
Добрый день всем!
Прошу помочь с ошибкой Parse error: syntax error, unexpected $end in…

Выдает ошибку «Parse error: syntax error, unexpected ‘$bdlogin’ (T_VARIABLE) in line 6»
Вот код

$bdlogin = ‘rahim66364_bid’;

Ошибка «Parse error: syntax error, unexpected T_VARIABLE on line 8»
Даны x, y, z.
Определить(представлено на картинке)
Написала код.Но выдает ошибку Parse error:…

Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:

17

  • #1

Каждые несколько минут вылезает ошибка
Line 20800 (File «C:ProgramdataRealtekHDtaskhost.exe»):
Error: Variable must be of type «Object».
необходима помощь в исправлении ошибки (удалении вредоносного ПО

AVZ — настойчиво не хочет создавать лог

  • CollectionLog-2022.05.04-17.17.zip

    85.1 KB
    · Просмотры: 8

akok


  • #2

Скачайте, распакуйте и запустите (от имени администратора) AV block remover.
По окончании всех процедур произойдет перезагрузка системы. Прикрепите созданный утилитой лог AV_block_remove.log к следующему сообщению.

Если не запускается, то переименуйте ее (например в AV_br.exe)

Повторно запустите Autologger и прикрепите новый CollectionLog.

  • #3

Примите запрошенные логи

  • AV_block_remove_2022.05.04-18.29.log

    4.8 KB
    · Просмотры: 1

  • CollectionLog-2022.05.04-18.45.zip

    83 KB
    · Просмотры: 7

akok


  • #4

Закройте все программы, временно выгрузите антивирус, файрволл и прочее защитное ПО.

Выполните скрипт в АВЗ из папки Autologger (Файл — Выполнить скрипт):

  begin
 ExecuteFile('net.exe', 'stop tcpip /y', 0, 15000, true);
if not IsWOW64
 then
  begin
   SearchRootkit(true, true);
   SetAVZGuardStatus(True);
  end;
 QuarantineFile('C:ProgramdataRealtekHDtaskhost.exe', '');
 QuarantineFile('C:ProgramdataRealtekHDtaskhostw.exe', '');
 QuarantineFile('C:ProgramDataWindows Tasks Servicewinserv.exe', '');
 DeleteFile('C:ProgramdataRealtekHDtaskhost.exe', '64');
 DeleteFile('C:ProgramdataRealtekHDtaskhostw.exe', '64');
 DeleteFile('c:programdatawindows tasks servicewinserv.exe', '64');
 DeleteSchedulerTask('MicrosoftWindowsWininetRealtekMO');
 DeleteSchedulerTask('MicrosoftWindowsWininetRealtekOnLogon');
 DeleteSchedulerTask('MicrosoftWindowsWininetTaskhostMO');
 DeleteSchedulerTask('MicrosoftWindowsWininetTaskhostOnlogon');
 DeleteSchedulerTask('MicrosoftWindowsWininetwinser');
 DeleteSchedulerTask('MicrosoftWindowsWininetwinsers');
BC_ImportALL;
ExecuteSysClean;
 ExecuteWizard('SCU', 2, 3, true);
BC_Activate;
RebootWindows(true);
end.

Компьютер

перезагрузится

.

После перезагрузки, выполните такой скрипт:

begin
DeleteFile(GetAVZDirectory+'quarantine.7z');
ExecuteFile(GetAVZDirectory+'7za.exe', 'a -mx9 -pmalware quarantine .Quarantine*', 1, 300000, false);
end.

Файл quarantine.7z из папки с распакованной утилитой AVZ отправьте с помощью этой формы или (если размер архива превышает 10 MB) на этот почтовый ящик: quarantine <at> safezone.cc (замените <at> на @) с указанием ссылки на тему в теме (заголовке) сообщения и с указанием пароля: malware в теле письма.

Скачайте Farbar Recovery Scan Tool (или с зеркала) и сохраните на Рабочем столе.

Примечание: необходимо выбрать версию, совместимую с вашей операционной системой. Если вы не уверены, какая версия подойдет для вашей системы, скачайте обе и попробуйте запустить. Только одна из них запустится на вашей системе.
Когда программа запустится, нажмите Да (Yes) для соглашения с предупреждением.

Нажмите кнопку Сканировать (Scan).
После окончания сканирования будут созданы отчеты FRST.txt и Addition.txt в той же папке, откуда была запущена программа. Прикрепите отчеты к своему следующему сообщению.
Подробнее читайте в этом руководстве.

  • #5

Спасибо за помощь
последние необходимые логи

  • FRST.txt

    39.1 KB
    · Просмотры: 8

  • Addition.txt

    123.5 KB
    · Просмотры: 8

akok


  • #6

Примите к сведению — после выполнения скрипта (возможно) все открытые вкладки браузеров будут закрыты, произойдет выход из аккаунтов, временные файлы, корзина, история браузеров, куки и кэш будут очищены.

  • Отключите до перезагрузки антивирус.
  • Выделите следующий код:
    Start::
    SystemRestore: On
    CreateRestorePoint:
    HKLMSOFTWAREPoliciesMicrosoftWindows Defender: Ограничение <==== ВНИМАНИЕ
    HKLMSOFTWAREPoliciesMozillaFirefox: Ограничение <==== ВНИМАНИЕ
    HKLMSOFTWAREPoliciesGoogle: Ограничение <==== ВНИМАНИЕ
    ContextMenuHandlers1: [Advanced SystemCare] -> {2803063F-4B8D-4dc6-8874-D1802487FE2D} =>  -> Нет файла
    EmptyTemp:
    Reboot:
    End::
  • Скопируйте выделенный текст (правой кнопкой — Копировать).
  • Запустите FRST (FRST64) от имени администратора.
  • Нажмите Исправить (Fix) один раз (!) и подождите. Программа создаст лог-файл (Fixlog.txt). Прикрепите его к своему следующему сообщению.

Компьютер будет перезагружен автоматически.

Подробнее читайте в этом руководстве.

После проверяйте, что с проблемой.

  • #7

Проблема решена ещё на прошлом шаге, оповещений об ошибке больше нет

  • Fixlog.txt

    2 KB
    · Просмотры: 7

akok


  • #8

Тогда завершаем

Подготовьте лог лог SecurityCheck by glax24

Чтобы автоматически удалить все файлы и папки, созданные FRST, в том числе сам инструмент, переименуйте FRST/FRST64.exe в uninstall.exe и запустите его. Процедура требует перезагрузки

Понравилась статья? Поделить с друзьями:

Читайте также:

  • Line 20973 ошибка
  • Line 20973 file c programdata realtekhd taskhost exe error variable must be of type object
  • Line 20958 autolt error
  • Line 19381 error variable used without being declared
  • Line 19363 file c programdata realtekhd taskhost exe error variable used without being declared

  • 0 0 голоса
    Рейтинг статьи
    Подписаться
    Уведомить о
    guest

    0 комментариев
    Старые
    Новые Популярные
    Межтекстовые Отзывы
    Посмотреть все комментарии