Reading the command line arguments using C#.net//foreach(string arg in args)//{// Console.WriteLine(arg);//} foreach (string arg in Environment.GetCommandLineArgs()){Console.WriteLine(arg);}Console.ReadLine();
Here are the common stsadm properties commonly used in our applications for Automating the deployment.we can get this each snippet to each cmd files and call accordingly with properties ————————————————ECHO Creating web…”%STSADM_PATH%STSADM.EXE” -o createweb -url %WEB_URL% -sitetemplate %SOLUTION_NAME% -title %TITLE% -description “%DESCRIPTION%” %ARGUMENTS%————————————————ECHO Deleting web…”%STSADM_PATH%STSADM.exe” -o deleteweb -url %WEB_URL% %ARGUMENTS%————————————————ECHO… Read more »
Leveraging the Windows API In Previous posts we learned about how to Validate the User using LDAP. Now we areconcentrating on how to impersonate the user with simple code. One of the best way isleveraging the Windows API. The responsible agent is advapi32.dll and kernel32.dllKERNEL32.dll: This provides the basic functionalities… Read more »
Problem: We normally face so many difficulties in having the spaces inside our directory paths and our code gets failed because of this. Solution: To target this, simple and easy way to attack the problem is use of kernel.dll for getting the windows help.Windows exposes the kernel.dll for performing many… Read more »
Batch file Macro getting the Current File and Path of Batch file. Batch File Macro for pulling out the complete Path of the directory of the batch file, its path, File NameThis better can be very much felt while writing the postbuild scripts @echo offSET MyPath=%~dp0ECHO Path of the File:… Read more »