Category Archives: Windows Internal

Accessing/Manipuate Remote Registry

During Automation, we normally encounter some scenarios writing vbscripts using which we try to update the registry values.Below is the snippet provided just to give the foot step to proceed further activities. ‘PolicyEdit.vbs‘Version: 2.0 Set objFSO = CreateObject(“Scripting.FileSystemObject”) ‘ CONSTANTS‘REGISTRYconst HKEY_CURRENT_USER = &H80000001const HKEY_LOCAL_MACHINE = &H80000002 ‘FILESYSTEMConst ForAppending = 8Const… Read more »

Outlook: Remove the Addin Button Created in OutLook Controls

If anyone of you working on Outlook 2003/2007 and creating Addin’s using VS2003/vs2005 would have faced this issue previously. Everyone will try to see some workaround for this problem Following is one of the solution in my hand a. Get the Outlook.exe location. this will be in the Registry once… 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 »

Invoking the Process using ProcessStartInfo

Description: During our regular coding, Sometimes we want to invoke the other process to perform some actions like for example: i have the command which performs some predefined task I have already developed and stabilized exe In that case, use the follwoing code to call that in Process and execute.You… Read more »