Hi.
I have solved some problems in the past by making small
commandline-utils witch I integrate with the right-click menu. This has
worked great for many users in win2000 and XP.
In windows7 I meet
limitations. When I mark more than 16 files, the menu-extension will
not show. I found a registry-hack to fix this(
http://support.microsoft.com/kb/2022295/ ), but still the command is
only executed on one file ( when I mark over 16.. )
Is it just me?
I have this small app to test this behaviour:
using System; using System.Collections.Generic; using System.Linq; using System.Text;
using System.Diagnostics;
namespace ConsoleApplication1 { class Program { static void Main(string[] args) { int i=1; foreach (string s in args) { System.Console.WriteLine(i++ + "\t" + s); }
Console.ReadKey(); } } }
|
I hope some of you can give me some tips on how to fix this.
Best regards.
kjell