Questions tagged [hotfix]

A hotfix is a single, cumulative package that includes information that is used to address a problem in a software product, i.e. a software bug.

During the software development cycle, when in-between regularly scheduled release dates for software upgrades if a problem requiring immediate resolution occurs a development team may release a "hotfix" to resolve the problem.

A hotfix usually is highly targeted at the specific problem requiring the immediate attention. Often times this is accomplished by simply reverting back recent changes so that the issue can be investigated more thoroughly without impeding the production environment, this is often times referred to as "rolling back".

127 questions
1
vote
1 answer

Team Foundation Server : branching by release and hotfixes

I'm asking myself how manage branching by release and hotfixes. For example, if we have a main branch, a release branch V1, and a release branch V2 and development branch for each release branch(developmet V1 and V2) and we find a bug in the…
bobosh
  • 425
  • 5
  • 21
1
vote
3 answers

Get-hotfix on multiple computers and exporting to CSV

How do I properly use $_ in out-file? Here's my code: get-content computers.txt | Where {$_ -AND (Test-Connection $_ -Quiet)} | foreach { Get-Hotfix -computername $_ } | Select CSName,Description,HotFixID,InstalledBy,InstalledOn | …
Dumont
  • 341
  • 3
  • 9
  • 20
1
vote
3 answers

What is the Hotfix with HotfixID= 'File 1'?

I'm creating an application which should retrieve all the Software and Hotfix updates accurately on different windows OS versions which involves many processes of queries. One method in specific is querying the Win32_QuickFixEngineering Class. Now…
user919789
  • 171
  • 4
  • 7
  • 19
0
votes
2 answers

How to including Microsoft Hotfix in our Wix based installers?

We need to deliver Hotfix KB982638 to our clients due to a requirement in our products. Our installers are based on WIX. How can we launch Hotfix KB982638 from our installers, at the end of installation? What we tried: We tried to launch its .exe…
Farrukh Waheed
  • 2,163
  • 2
  • 29
  • 59
0
votes
1 answer

What do you call a modification that is made on a Environment that is not DEV?

In application life-cycle management, it's common to have some environments. For example: DEV -> Staging -> Production Normally, you would develop in the DEV environment and stage your developments to Staging and Production. But it's possible to…
John Assymptoth
  • 8,227
  • 12
  • 49
  • 68
0
votes
1 answer

Handling hotfixes when working only with git master branch

I keep reading how people are forgoing the develop git branch and doing all work on master - and how this makes everything simpler. I tried it: I have a master branch (with linear history) and many short-lived feature branches. I merge features…
lonix
  • 14,255
  • 23
  • 85
  • 176
0
votes
0 answers

Drupal 10 - Gutenberg Editor undefined

I'd like to share a bug I had with the Gutenberg Editor in Drupal 10 and also my solution. Upon installing the editor, on my article edit page I encountered this error: Uncaught TypeError: Drupal.editors[format.editor] is undefined I did not…
0
votes
0 answers

Issue with Release-Please Workflow for Generating Git Tags and Release Notes

I am currently utilizing the Release-Please GitHub Action workflow for creating SemVer Git Tags, GitHub Releases, and changelog files. In my GitHub repository, I have separate branches for development, staging, and production. The workflow is…
0
votes
1 answer

Unable to connect to TFS from Visual Studio 2017, getting TF31002: Unable to connect to this Team Foundation Server error

I wonder if anyone could assist me with that. I am unable to connect to TFS from Visual Studio 2017, I get the error specified below TF31002: Unable to connect to this Team Foundation Server: http://tfs.**************** Team Foundation Server…
James
  • 1,081
  • 4
  • 15
  • 34
0
votes
0 answers

Not able to hotfix/patch an application built with .NET6

We have an application built with .net 6.0 and released for users (say version 5.0). Recently we are coming up with a hotfix/patch for the existing 5.0 users (calling this version 5.1). However, due to some reasons, we will not be giving the entire…
Athena_92
  • 29
  • 5
0
votes
1 answer

Fetching a KB hotfix in C#

I'm trying to fetch a certain hotfix (KB976477) from a C# program. Using the WUApi (Windows Update Agent Api) is not working so far because the IUpdateSearcher.Search method only provides Software and Drivers which would be available via the normal…
Christoph Grimmer
  • 4,210
  • 4
  • 40
  • 64
0
votes
0 answers

Git hotfix branches

i'm trying to find a solution for a git/github related problem i couldn't find anywhere else. First, some assumptions: Your team uses 2 branches, development and release (release here is just master). There's the hotfix-* branch too. Your team uses…
0
votes
4 answers

PowerShell - get-hotfix on multiple servers - error handling

I have a problem with my script to check multiple hotfixes on multiple servers. Sometimes I don't have a rpc connection to a server, in this case I want to log this information to the same output file. Can someone please help me? thanks $computers =…
vespavbb
  • 27
  • 2
  • 9
0
votes
0 answers

Create a Function 'find_port' which takes port id as input and returns the count of transportation

Create a Function named 'find_port' which takes port id(i.e, p_id) as input and returns the count of transportation(i.e, transportation_count') that could be made using that port. Function name : find_port Input Parameter : p_id in int Output…
0
votes
1 answer

How can I get parent branch detail in Microsoft VSTS API when I have only Pull request I'd

I am working on patch release. I am getting change list from vsts using Microsoft VSTS API. I have 3 branches like A -> B -> C. A is base branch and b is created sub branch from A and c is created sub branch from B. So whatever changes I made in A…
Manu
  • 7
  • 1
  • 4
1 2 3
8 9