Shell hardware mixed content handler

Добро пожаловать в официальное сообщество и получите ответ на вопрос shell hardware mixed content handler что это. Крупнейший бесплатный сервис ответов, быстрый и удобный интерфейс. Всегда есть О Т В Е Т на вопрос.

Качество видео: HDTV

Видео загружено админу от пользователя Агриппа: для срочного просмотра на портале.

Чтобы дать правильный ответ на вопрос нужно посмотреть видео. После просмотра вам не потребуется обращаться за помощью к специалистам. Подробные инструкции помогут вам решить ваши проблемы. Приятного просмотра.

Юмор в теме: – Я честная и порядочная девушка! Я своему в ЗАГСе во время регистрации так и сказала: “Я обещаю любить тебя, хранить тебе верность, уважать и заботиться, беречь тебя и верить тебе… пока какой-нибудь интересный мужчина не разлучит нас”.

Кажется, что работает следующий процесс:

Кто-нибудь знает, что это такое?

Отсканировано с помощью MalwareBytes и Kaspersky Internet Security 2011

Использование 64-разрядных 64-разрядных версий Windows 7.

2 ответа

Это сервер Microsoft Windows DistributedCOM . Насколько я могу судить, это безопасно. Я видел это на других системах, которым было две недели, и у меня не было шансов заразиться:).

Это старый вопрос. Но правильный ответ можно найти здесь: Ссылка

That GUID maps to the "Shell Hardware Mixed Content Handler", which is a COM handler that needs to run as "Interactive User", meaning run in a logged-on user’s session (that’s you ). The reason it needs to run in the context of a logged-on user is that it’s actually the Autorun handler (enabling Autorun on my own Win7 box causes the same process to be spawned).

If you don’t want to see it, go into the control panel and disable Autorun. Otherwise, it needs to run for Autorun to work properly.

Читайте также:  Аватарка для мужчины 50 лет

In April I will be doing a User Group Live Meeting on using COM with PowerShell. It is such a wide topic I thought I’d start a few posts to set some background – it also helps my reasearch

COM is the way applications were built for the Windows platform before .NET appeared. Ugh pre-historic stuff that no one cares about I hear you shout.

Opps. Not really

COM is still around a happily surviving today. For instance the Office applications, IE and the Windows Scripting Host functionality are all COM based

We can discover some information about the COM based applications installed in our systems by using

Get-WmiObject -Class Win32_COMApplication | sort Name | Select Name

This will generate a very long list – don’t be surprised if the early entries have a blank name. Unfortunately the name doesn’t always reflect what we need to use to work with the COM object.

For instance the list of applications generates these examples

Shell ChkdskEx Dialog
Shell Computer Accounts
Shell Computer Groups
Shell Execute Hardware Event Handler
Shell FMIFS Wrapper
Shell Hardware Mixed Content Handler
Shell Hardware Mixed Content Handler Cancelled
Shell Security Editor
ShellWindows

if we search for ShellWindows for instance – http://msdn.microsoft.com/en-us/library/bb773974(VS.85).aspx – we see that it represents a collection of open windows belonging to the shell. In many cases COM objects are based on a hierarchy and we have to start at the top of hierarchy.

If you work around in the documentation you will often find a topic that describes the scripting interface or scripting objects. Scripting is somewhere in the title e.g. http://msdn.microsoft.com/en-us/library/bb773177(v=VS.85).aspx

Читайте также:  Dungeon keeper похожие игры

If we hunt around in the list we find the shell object which “Represents the objects in the Shell. Methods are provided to control the Shell and to execute commands within the Shell. There are also methods to obtain other Shell-related objects.”

This sounds promising so we follow it to http://msdn.microsoft.com/en-us/library/bb774094(v=VS.85).aspx where we find in the properties section a reference to the objects’s Application object. Bingo – just what we want.

Unfortunately we don’t get much in the way of examples so we have to go back to what we can work out. If you have seen any COM based PowerShell you know that we use the New-Object cmdlet and if you look in the help you find this

$shell = New-Object -ComObject “Shell.Application”

This structure is what we will often see – the name of the object followed by .Application. If we are working with Word it becomes

$word = New-Object -ComObject “Word.Application”

Let’s go back to the Shell and find out what it does

It has methods and properties just like .NET so what do we have

$shell.TileHorizontally() supplies a bit of amusement but don’t have too many Windows open when you use them otherwise you will spend a while sorting them out

Some of the other methods look useful so we’ll explore them later

Rate this post

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *