Powershell - Non-standard update service on host

I started HTB Academy a few weeks ago and started some of the Fundamentals Modules. In Windows Fundamentals, one of the questions there is to “Identify one of the Non-standard update service running on host”,but the module did not mention anything about a command line looking for it and I do not know what a non-standard update service is. From what I understand is that it’s something that didn’t come with the OS.

If someone can explain it to me further, that would be lovely.

Thank you

1 Like

Is this any help?

1 Like

Type your comment> @TazWake said:

Is this any help?

Window non-standard application concept - #2 by TazWake - Off-topic - Hack The Box :: Forums

I have a clearer understanding of it now, I will try it again. Thank you so much!

ScriptKiddy Giving away the answer does not direct your associates to discover the means of obtaining the answer by learning the right technique… lol

So true. Post removed.

So, the answer is there on youtube but I do not like the way it was approached since the hint does say to use powershell, and also it didn’t use the ways academy explained. There are many ways that you can get the answer but I did it like HTB thought me. First I wanted to see what services are running and what of those services have something about update: Get-Service |? {$.Status -eq ‘Running’} | ? {$.DisplayName -Match ‘Update’}
Since it is good to type on the web names of services just to make sure what are standard services in windows. Non-standard service in this case was “FoxitReaderUpdateService”. After that I went to the Resource Monitor to see what was the file name and would you guess it is just service name + .exe(FoxitReaderUpdateService.exe)

answer is :FoxitReaderUpdateService.exe

1 Like

Please, @alex222 don’t just give away the answer. As explained in the post I responded to.

Hoo Thanks i Got The Same Answer But i did’t read question carefully so it ends with .exe