Category Archives: Automation

Getting the Computer Name, Domain, more using powershell

Getting the Computer Name, Domain, more using powershell a. gc env:Computername    $computer = get-content env:ComputerNameUse the WMI objects to get computer name and other details$Computer = Get-WmiObject -Class Win32_ComputerSystem -ComputerName $computer -namespace “rootCIMV2”for Machine domain: $computer.Domain# Print Computer Name  “Computer Name is: {0}” -f $Computer.Name  If you want to get… 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 »

Disconnect Open Files and Folders /Shares

Description: There is normal issue that we write some automation scripts and during that phase if there is something like clean some folders in some location and populate with latest files. Generic Scenario: During Source control, Clean adn Get Latest, we will encounter this issue.There might be other scenarios where… Read more »

Mage.exe: Updating the Manifest File for ClickOnce Deployment

While working on ClickOnce Deployment, i was intended to update the Manifest and application[vsto] files for updating the file references and Paths. Manifest file holds the files references and Path for the resources it tries to pick during running the ClickOnce application. So during deployment they need to changed. We… Read more »

Windows Installer Error Codes [ExitCode]

Following are the common Error Codes OR Exit Codes generated while running the Windows installer using msiexec command. Value Description Error Code 0 Action completed successfully. ERROR_SUCCESS 13 The data is invalid. ERROR_INVALID_DATA 87 One of the parameters was invalid. ERROR_INVALID_PARAMETER 120 This function is not available for this platform…. Read more »

Console App returing ExitCode

      No Comments on Console App returing ExitCode

Console app exit code: int code = 2;Environment.Exit( code );OR Environment.ExitCode = code; enum ExitCode : int { Success = 0, InvalidLogin = 1, InvalidFilename = 2, UnknownError = 10} int Main(string[] args) { return (int)ExitCode.Success;} Refer this link for more info on ExitCodes:http://msdn.microsoft.com/en-us/library/system.environment.exitcode.aspx Optional: Calling from MSBUILD and Looking… Read more »