Category Archives: Automation

STSADM.exe Command-Line Snippets

      No Comments on STSADM.exe Command-Line Snippets

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 Widows SDK API

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 »

Batch file Macro getting the Current File and Path of Batch file

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 »