1
Answer

How can I Patch in Vista with. exe?

max kut

max kut

16y
4.1k
1
Ok I have a Program on my Vista and I need to Put a patch for it. And everytime i wana paste it there i get a message saying that

windows found that this file is potentially harmful.: to help protect your computer windows has blocked access to this file

 

And i know  its cause it got the .exe file. Is there away I can go around it?

Answers (1)
0
Vulpes

Vulpes

NA 98.3k 1.5m 12y
Use:

string[] items = fileName.Split('_');

items[0] will be the portion to the first _ and then items[1] will be the portion from the first _ to the second _.

These will exclude the underscores themselves.


Accepted
0
Vulpes

Vulpes

NA 98.3k 1.5m 12y
You could deal with that situation (or even two hyphen delimiters) by replacing this line:

   string[] items = fileName.Split('_');

with this:

   string[] items = fileName.Split(new char[]{'_', '-'});