Hi
After publishing website exe file is not running, But in the task manager the file is running

I am using following code

Dim startInfo As New ProcessStartInfo("notepad.exe")
startInfo.WindowStyle = ProcessWindowStyle.Maximized
Process.Start(startInfo)


Regards
Pranav

try this

ProcessStartInfo startInfo = new ProcessStartInfo();

startInfo.FileName = "NOTEPAD.EXE";

startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Maximized ;

startInfo.CreateNoWindow = false ;
startInfo.Verb = "open";
Process.Start(startInfo);

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.