Call other programs in Silverlight OOB Mode

Source: Internet
Author: User

In Silverlight OOB mode, you can call other programs as follows:

1. Introduce Microsoft. CSharp. DLL in the system

2. Program:

Dynamic cmd = AutomationFactory. CreateObject ("WScript. Shell ");
Cmd. Run (@ "corresponding program", 1, true );

2.1 call URL:

Dynamic cmd = AutomationFactory. CreateObject ("WScript. Shell ");
Cmd. Run (@ "http://www.badu.com", 1, true );

2.2 call a common Exe file

Dynamic cmd = AutomationFactory. CreateObject ("WScript. Shell ");
Cmd. Run (@ "notepad.exe" 1, true );

2.3 call other Silerlight OOB modules.

I wrote a ProgStart program by myself. The Code is as follows:

 

[Csharp]
Namespace ProgStart
{
Class Program
{
Static void Main (string [] args)
{
String ext = args [0];
String para = "";
If (ext. ToLower () = "sllauncher.exe ")
{
Ext = @ "C: \ Program Files \ Microsoft Silverlight \" + ext;
}
If (args. Length> 1)
{
Para = args [1];

}
Console. WriteLine (ext + "," + para );
Process. Start (ext, para );
}
}
}

Put proststart.exe in the Windows directory

The call code is as follows: www.2cto.com

Dynamic cmd = AutomationFactory. CreateObject ("WScript. Shell ");
Cmd. Run (@ "prostart.exe sllauncher.exe 3559137000. localhost", 1, true );

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.