Click here to Skip to main content
15,891,431 members

Comments by KenBonny (Top 33 by date)

KenBonny 5-Nov-13 3:35am View    
You are right and I will update my question.
KenBonny 14-Aug-13 8:33am View    
I followed the instructions on a website (which I can't seem to find anymore). It basicly said to create a .cer and .pvk file and then use those to create a local certificate and sign the script with that.

But setting the policy to RemoteSigned will work for my company's security rules. Thanks for the information!
KenBonny 13-Aug-13 4:11am View    
No, no I have not. Didn't know I should do that. I'll look into it. Thanks.

Will editing the execution policy to RemoteSigend work? Because it was AllSigned. Or did you refer to something else?
KenBonny 12-Aug-13 1:45am View    
VS2012 has great support for debugging multi threaded apps. I found out that the code in AddStopwatch_OnClick keeps blocking the thread.
{
timer.Time = t;
await Task.Delay(1000);
}

This should be run async, but it's being run on the UI thread, thus blocking the whole UI. I'm looking into fixing this now.
KenBonny 9-Aug-13 3:30am View    
Thanks for the useful info, but I was wondering if I could solve this using the TPL (Task Parallel Library).