How to Schedule TeamBuilds to run on various Schedules

How to Schedule TeamBuilds to run on various Schedules As far as we know, we only have couple of options to schedule to the TeamBuild 2010. a. Manual Builds – Manual Interventionb. Continious Integration – After each Check-Inc. Rolling Builds – After Check-in but on accumulation of Check-Insd. Gated Check-Ins… Read more »

Passing Values Between Build Controller and Agents in TeamBuild 2010

If we are familiar with any of the programming languages, we know the scope of Variables defined in Global/Parent scope and private scope. A Variable defined in Global can be used in Parent implementations and its own child implementations. There will be facility to update the global value inside the… Read more »

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 »

Wix: Custom actions

      No Comments on Wix: Custom actions

Wix code for Calling the Custom Exe’s or System Build-In Exe’s for performing the Action a. Calling CACLS.exe for setting the Permissions <CustomAction Id=”NTPermission” Directory=”TARGETDIR” ExeCommand='”cacls.exe” “[TARGETDIR]*.*” /T /E /G “MyCustomUser:R”‘ Return=”check” />b. Calling CACLS.exe for Removing the Permissions<CustomAction Id=”NTPermissionUninstall” Directory=”TARGETDIR” ExeCommand='”cacls.exe” “[TARGETDIR]*.*” /T /E /R “MyCustomUser”‘ Return=”check” />c. Calling… 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 »

WIX: Create WebSite and Virtual Directory Effective Way

Creating the WebSite using WIX includes some simple issues as we some time cannot expect the QA, UAT and Prod environment Installation and their topology.As we know there is simple way to create WebSite and Virtual Directoy using wix, Extension of this targets creating without any issues irrespective of Website… Read more »