On the load event of the form, put the following code:
[php]For Each argument As String In Environment.GetCommandLineArgs()
Console.WriteLine(argument)
Next argument[/php]
This will display every argument passed to the application and you can decide how to handle them.
For example if the parameter is " -u" then you can use it to call an update for your application. Depends upon you.