Web update: update script content different from web server
Posted: Wed Dec 09, 2015 10:18 pm
Hi,
I created a web deployment on local environment and everything work great.
After we try to create another web deployment on customer environment, we found its not worked.
We put the update script and Web update installer into customer server.
As mentioned, the update script is what I wrote as below:
The scenario are:
1. They are successful upgrade version into 4.0.88.0
2. Recently there another upgrade which version 4.0.88.1
3. I have to modify update script to cater for version 4.0.88.1
4. I have to put new update script and exe into customer server.
5. Normally I will using Internet Explorer download update script and installer to ensure web update is workable.
6. The both files successful download
7. I found very weird thing is the update script content are different and look outdated which is like
8. Customer unable update newest version 4.0.88.1 due of script still pointing on old version which is (4.0.88.0)
FYI, the customer server using windows server 2012 and using IIS 7.
Does that related problem on my script or IIS setting?
I created a web deployment on local environment and everything work great.
After we try to create another web deployment on customer environment, we found its not worked.
We put the update script and Web update installer into customer server.
As mentioned, the update script is what I wrote as below:
Code: Select all
[Update Packs for Versions]
4.0.87.23=4.0.88.0
[4.0.88.0]
URL=http://www.example.com/update/parkway/installer v4.0.88.0.exe
Description=Update to 4.0.88.0
Reboot=No
Silent=Yes
Parameters=
The scenario are:
1. They are successful upgrade version into 4.0.88.0
2. Recently there another upgrade which version 4.0.88.1
3. I have to modify update script to cater for version 4.0.88.1
Code: Select all
[Update Packs for Versions]
4.0.87.23=4.0.88.0
4.0.88.0=4.0.88.1
[4.0.88.0]
URL=http://www.example.com/update/parkway/installer v4.0.88.0.exe
Description=Update to 4.0.88.0
Reboot=No
Silent=Yes
Parameters=
[4.0.88.1]
URL=http://www.example.com/update/parkway/installer v4.0.88.1.exe
Description=Update to 4.0.88.1
Reboot=No
Silent=Yes
Parameters=
4. I have to put new update script and exe into customer server.
5. Normally I will using Internet Explorer download update script and installer to ensure web update is workable.
6. The both files successful download
7. I found very weird thing is the update script content are different and look outdated which is like
Code: Select all
[Update Packs for Versions]
4.0.87.23=4.0.88.0
[4.0.88.0]
URL=http://www.example.com/update/parkway/installer v4.0.88.0.exe
Description=Update to 4.0.88.0
Reboot=No
Silent=Yes
Parameters=
8. Customer unable update newest version 4.0.88.1 due of script still pointing on old version which is (4.0.88.0)
FYI, the customer server using windows server 2012 and using IIS 7.
Does that related problem on my script or IIS setting?