Click here to Skip to main content
15,885,365 members
Home / Discussions / C#
   

C#

 
QuestionHow to make REST requests with C# Pin
Member 1090638630-Jun-16 10:24
Member 1090638630-Jun-16 10:24 
AnswerRe: How to make REST requests with C# Pin
ZurdoDev30-Jun-16 10:29
professionalZurdoDev30-Jun-16 10:29 
Questionnot save my the data Pin
antonio_dsanchez29-Jun-16 10:43
antonio_dsanchez29-Jun-16 10:43 
AnswerRe: not save my the data Pin
Pete O'Hanlon29-Jun-16 11:28
mvePete O'Hanlon29-Jun-16 11:28 
AnswerRe: not save my the data Pin
OriginalGriff29-Jun-16 19:02
mveOriginalGriff29-Jun-16 19:02 
QuestionTrouble With .Net XmlSerializer Pin
Jacob Himes28-Jun-16 22:24
professionalJacob Himes28-Jun-16 22:24 
AnswerRe: Trouble With .Net XmlSerializer Pin
Gerry Schmitz29-Jun-16 5:13
mveGerry Schmitz29-Jun-16 5:13 
QuestionHow do you import and secure a file? Pin
SolJohnston77728-Jun-16 6:21
professionalSolJohnston77728-Jun-16 6:21 
I have a Bat file that I can load outside of C# but wanted to have it inside of C# to be more secure(load it inside of the exe of C# code).

I can't wrap it out my head on how you would load a batch file inside from C#. Here is my code on how to load it outside of C#:

C#
try
            {
                var newProcessInfo = new System.Diagnostics.ProcessStartInfo();
                newProcessInfo.FileName = @"C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe";
                newProcessInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
                newProcessInfo.Verb = "runas";
                newProcessInfo.Arguments = @"-executionpolicy unrestricted -Command "".\power\gwx\uninstallgwx.bat""";
                System.Diagnostics.Process.Start(newProcessInfo);
                MessageBox.Show("Windows 10 Updater uninstalled");

            }
            catch
            { }

AnswerRe: How do you import and secure a file? Pin
Eddy Vluggen28-Jun-16 7:02
professionalEddy Vluggen28-Jun-16 7:02 
AnswerRe: How do you import and secure a file? Pin
Dave Kreskowiak28-Jun-16 12:20
mveDave Kreskowiak28-Jun-16 12:20 
GeneralRe: How do you import and secure a file? Pin
SolJohnston77730-Jun-16 9:34
professionalSolJohnston77730-Jun-16 9:34 
PraiseWhy don't use C#6 code for ASP.Net MVC application? Pin
Hein Pauwelyn28-Jun-16 3:40
Hein Pauwelyn28-Jun-16 3:40 
AnswerRe: Why don't use C#6 code for ASP.Net MVC application? Pin
Dave Kreskowiak28-Jun-16 3:42
mveDave Kreskowiak28-Jun-16 3:42 
GeneralRe: Why don't use C#6 code for ASP.Net MVC application? Pin
Richard Deeming28-Jun-16 4:01
mveRichard Deeming28-Jun-16 4:01 
GeneralRe: Why don't use C#6 code for ASP.Net MVC application? Pin
BillWoodruff29-Jun-16 8:43
professionalBillWoodruff29-Jun-16 8:43 
QuestionEWS Managed API : "The SMTP address has no mailbox associated with it." Pin
Kuthuparakkal28-Jun-16 2:16
Kuthuparakkal28-Jun-16 2:16 
AnswerRe: EWS Managed API : "The SMTP address has no mailbox associated with it." Pin
OriginalGriff28-Jun-16 2:25
mveOriginalGriff28-Jun-16 2:25 
QuestionFloating window implementation using c# Pin
srikrishnathanthri27-Jun-16 19:49
srikrishnathanthri27-Jun-16 19:49 
QuestionNeed Help with Assignment board logic. Pin
Aspylacide27-Jun-16 15:38
Aspylacide27-Jun-16 15:38 
AnswerRe: Need Help with Assignment board logic. Pin
Gerry Schmitz27-Jun-16 19:52
mveGerry Schmitz27-Jun-16 19:52 
AnswerRe: Need Help with Assignment board logic. Pin
Nathan Minier28-Jun-16 1:49
professionalNathan Minier28-Jun-16 1:49 
AnswerRe: Need Help with Assignment board logic. Pin
BillWoodruff28-Jun-16 4:39
professionalBillWoodruff28-Jun-16 4:39 
GeneralRe: Need Help with Assignment board logic. Pin
Aspylacide28-Jun-16 13:34
Aspylacide28-Jun-16 13:34 
AnswerRe: Need Help with Assignment board logic. Pin
Aspylacide28-Jun-16 14:02
Aspylacide28-Jun-16 14:02 
SuggestionRe: Need Help with Assignment board logic. Pin
Aspylacide29-Jun-16 12:25
Aspylacide29-Jun-16 12:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.