Passing a file to Security Essentials for scanning [closed] - delphi

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
Does anyone have an idea on how to pass a file to Security Essentials (SE) for scanning?
When SE is installed it adds a line to the Explorer popup menu, "Scan with MS SE" and I'd like to be able to scan a specific file if SE has been installed on the host PC.
I can check for msseces.exe to see if it is installed but I can't find any command line information that will scan a specific file passed to it.
Thanks.

You want to look at MPCMDRUN.EXE. Run it with /? to get all the options.
It sits in "C:\Program Files\Microsoft Security Client" on my current system.

Related

Tcl script for getting windows service is exist or not [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I want to check whether windows service is already installed or not by using tcl script.
note that i am using ActiveTcl.8.6.7 version.
Thanks in advance.
The registry package (standard on Windows) can be used to look in the place where the services are actually set.
package require registry
set services [registry keys {HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services}]
if {$yourServiceName in $services} {
puts "It is installed"
} else {
puts "No $yourServiceName in [join $services ,]"
}
(Check that this works for you! I'm on the wrong OS to test it for you…)

Can I run Sublime Text 2 from SSH on Ubuntu? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I'm trying to find the best way I can program using my iPad, I'm relatively new to ubuntu and I don't no it's limitations over SSH but I was curious to know if it were possible to install a text editor for instance Sublime Text 2 and open it using a SSH terminal from my iPad using iSSH.
Thanks a lot
iSSH ($9.99 on the US store) has an X server built in. You can install Sublime on your Ubuntu box and use iSSH to access it.

Debugging ASP.NET app results in "Unable to start program 'http://localhost:xxx'. The system cannot find the file specified" [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I'm using Visual Studio 2012 on Windows 8. When I try to interactively debug any web project using IE10 this error message is shown:
Unable to start program 'http://localhost:9999'. The system cannot find the file specified.
The app is configured to run under IIS Express. The same error message is shown when trying to use Visual Studio Development Server.
When debugging with Chrome and Firefox everything is fine. The problem only presents when using IE.
How can this be solved?

TFS 2012 Express does not seem to work out of the box if I install VS2010? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I get this error when I attempt to add a new project to Source control after a fresh installation... It seems when I am not installing VS2010 I do not get this..
Can anyone help ? I suppose I need permissions.. but WHO needs permission to what exactly ?
TF206018: The items could not be added to source control because either no team projects have been set up, or because you do not have permission to access any of the team projects in the current collection.
Sorry.. I am a dummy.. A COLLLECTION.. needs a TEAM PROJECT and THEN you add the project to source control.

Is it possible to interact with your computer through Lua? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I was wondering if it is possible to interact with your computer through Lua (Through SciTE or Sublime Text, I suppose...)? For instance, can you play a .mp3, or open a file with Lua?
Yes, through the use of the operating system library os.
You can use os.execute([command]) to run any command from the host operating system's shell (think terminal or command prompt).
There's more information on using this library in the Lua online reference manual.

Resources