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
0
votes
1 answer

Replace in Powershell

I am trying to print out Microsoft update hot fix URLs and change them $link=Get-MSHotfix|Where-Object {$_.Installedon -gt ((Get-Date).Adddays(-20000))}|Select-Object -Property KBArticle foreach($line in $link){ [String]$line = $line…
mehnihma
  • 169
  • 2
  • 3
  • 11
0
votes
2 answers

Checkout a new master avoiding commited changes in local master (in GIT)

I cannot find the right answer maybe because I don't know how to make the right question, but I will try to explain myself: To make a new feature I forgot to make a new branch and I was working and commiting (not pushing) to my local master branch…
aleksdj
  • 145
  • 3
  • 10
0
votes
0 answers

Git Flow - Weird behavior merging hotfix to develop

I'm getting a strange behavior when merging a hotfix into the develop branch. It rearranges all the release branches into the develop branch. Is it right? Here is a example Before merging the hotfix After merging the hotfix
0
votes
1 answer

Hotfix vs Patch vs Update - Game development

I was wondering if someone could help me sort this out. Hotfix vs Patch vs Update. I have look around the website but it only mentions about programs. From what I understood, Hotfix is to fix a certain bug and not always will be public…
Metalbreath
  • 119
  • 1
  • 14
0
votes
0 answers

How to merge specific git commits from a branch to another?

Good day, Here's the situation: I have a master branch which is similar to production. I have a develop branch which contains all tested work and ready to be deployed in the next release. I develop new features on feature branches, based on the…
gael
  • 55
  • 1
  • 1
  • 8
0
votes
1 answer

Is it possible to have a hotfix at runtime with executable memory heaps and a distributed system?

I've been looking over a few tutorials for JIT and allocating heaps of executable memory at runtime. This is mainly a conceptual question, so please correct me if I got something wrong. If I understand it correctly, a JIT takes advantage of a…
CinchBlue
  • 6,046
  • 1
  • 27
  • 58
0
votes
1 answer

ColdFusion 9.0.1 trouble adding hot fix

I'm trying to add the cumulative hotfix to ColdFusion 9.0.1. The instructions say to click on the 'i' in CFAdministrator and In the "Update File" text box, browse and select chf9010004.jar located under CF901/lib/updates. The issue seems to be that…
jeb
  • 49
  • 4
0
votes
0 answers

SQL Server 2012 SP2 hotfix error message

At the end of applying the Microsoft SQL Server 2012 - 11.0.5343 hotfix, I got the error below (the hotfix apply went successfully). SQL Server Setup has encountered the following error: The NT service 'MSSQLSERVER' could not be started. Error code…
0
votes
1 answer

Test if Windows Hotfix is needed

In a comment to Windows API equivalent to "WMIC QFE Get", Raymond Chen wrote that it is incorrect/useless to test if a hotfix is installed. The correct approach is to ask Windows Update if the hotfix is needed (because the fix might be in a roll-up…
Ian Goldby
  • 5,609
  • 1
  • 45
  • 81
0
votes
2 answers

How to view the contents or the changes done in a msu file

I got an hotfix from microsoft (msu file). How can i find the contents or the changes done in that file?
SyncMaster
  • 9,754
  • 34
  • 94
  • 137
0
votes
1 answer

Powershell to get Hotfix information

I'm looking to get Windows Hotfix information from 2003 servers. For this im using the following PowerShell script as Get-Hotfix does not return all the installed dates. What I would like to do is get only updates applied after a certain date. How…
user1890242
  • 69
  • 1
  • 10
  • 19
0
votes
1 answer

Determine if a hotfix has been applied to a machine using .NET

Is it possible to use the .net framework (v4.0) to determine if particular hotfix is made to machine? I've not come across any information on this so far.
Andez
  • 5,588
  • 20
  • 75
  • 116
0
votes
1 answer

Hot-fix Project in Advanced Installer

I am new to Advanced Installer, since I am using a trial version, I want as much as I can about it. I have an installer, already created. One of the files it installs is InvoicePro.exe (version 1.0.0.0). I found some bugs in that version so I built…
Victor
  • 13,914
  • 19
  • 78
  • 147
0
votes
1 answer

VS2010 opens website in notepad? bad hotfix?

I am using VS2010 on Windows XP pro (sp3, x86), and I just installed the hotfix kb2106584. This fix was reported by some people, example here, as having a fix for an issue I had with Asp.Net Development Server not getting opened properly from VS,…
FireSBurnsmuP
  • 923
  • 10
  • 28
-1
votes
1 answer

How to avoid version number conflict between master and bugfix branch when using semantic versioning

A master branch in git following semantic versioning has released below versions in its lifecycle till date. 1.0.0 -> 1.0.1 -> 1.1.0 -> 1.2.0 A hotfix branch is cutoff named hotfix\1.0.0 for a bug fix/compatible extension, which will necessitate a…
Nitesh
  • 31
  • 4
1 2 3
8
9