en de fr
Forum

Can we turn off new version notice?

21 Antworten [Letzter Beitrag]
fredrated
Offline
Beigetreten: 06/03/2010

I have an M$ Access application which automatically generates PDF documents, attaches them to emails and sends them out.  Twice now users have complained that the system was broken, it wouldn't create documents and send the emails.  Each time there was an unnoticed message notifying the user that a new update to pdf creator was available, and did they want to download it?  Once the message was cleared the automatic process ran successfully.

Is there any way to turn off this 'new version available' message?  I searched for this issue and the closest I came was mention of a registry setting for "UpdateInterval", but I don't have that registry entry.

Any suggestions are greatly appreciated.

\Fred

 

digit
Offline
Beigetreten: 09/07/2010

 Agreed. Right now, the update process is:

  1.  Return to computer and realize the PDF process hasn't started because an update is available.
  2. Click OK to open page to download new version.
  3. Download the program installer.
  4. Launch the installer.
  5. Get the error message that you have to uninstall the thing first.
  6. Go to the Uninstall interface in Windows and uninstall.
  7. Read the text and click Yes then No after squinting and reading.
  8. Finish uninstallation.
  9. Rerun installer.
  10. Install.

Look at what they do for cups-pdf on Linux: 

  1. Open your update manager
  2. Click Check for Updates
  3. Click Install Updates
__________________

 I eat waffles for breakfast.

ToomasAas
Offline
Beigetreten: 09/14/2010

There is a setting for how often to check for updates in program options under 'General settings 2' (sorry, I'm using non-English version, not sure how it actually is in English). Does this not help? I have it set to 'Never' and I've never seen the new version notification on my PC.

For our internal use, I put up an update.txt file with the version number we have deployed to our own website and using SquidGuard I redirect all requests for  http://www.pdfforge.org/products/pdfcreator/update.txt to http://oursite.com/pdfcreator/update.txt. This solves the problem even for these computers where this setting is accidentally left on. Our users don't have administrator rights on their PCs, so they can't do anything about the message anyway.

jsaa
Offline
Beigetreten: 10/05/2010

I use PDFCreator via COM and it would be really handy to have an option in the COM interface to turn the update checker off. Or maybe there already is one and I'm too dumb to find it.

muggins
Offline
Beigetreten: 10/20/2010

Hi jsaa,

Actually, I just ran into this issue myself. I did some poking around and found out how to set the update interval via the COM interface.

 Here's some quick VBA code for how to do it that I use to programmatically set the update interval to never:

Sub SetUpdateFreq()
    Dim pdC As Object

    Set pdC = CreateObject("PDFCreator.clsPDFCreator")
    
    pdC.cStart

    'Update intervals: 0 = never, 1 = once a day, 2 = once a week, 3 = once a month
    pdC.cOption("UpdateInterval") = 0
    pdC.cSaveOptions
   
    pdC.cClose
    
    Set pdC = Nothing
End Sub

 

AnotherTechnician
Offline
Beigetreten: 10/21/2010

We have pdfcreator installed in a TS environment, which is having issues with the update prompt.

We can disable it, but only on a per user basis.  Which is a pain. 

What we'd love is a registry edit that stopped it looking, at all.

 

ANother Technician

windfire
Bild von windfire
Offline
Beigetreten: 12/25/2009


Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\PDFCreator\Program]
"UpdateInterval"="0"

 

Copy the above text and save it to a .txt file, then change the file association from ".txt" to ".reg" mannually, double click the .reg file, click "Yes" , this will make your installed PDFCreator no longer check for update.
 

Hope this will help. :)

 

AnotherTechnician
Offline
Beigetreten: 10/21/2010

That works for individual users - but I have ~7,000 users who might log on to the server.

Doing this for each one would be a problem; I could change the log on scripts to include this, but this would involve a non-trivial amount of change management paperwork.

Is there a reg hack that can be used on a per machine basis, not per user?

windfire
Bild von windfire
Offline
Beigetreten: 12/25/2009

I just use PDFCreator on my personal PC. I don't have such large scale corporate environment software deployment experience.

Some previous posts in this forum have long hoped for a .msi installer that can do such job.

If you want to automate the PDFCreator deployment process on a corporate environment, a .msi installer package is the best solution. You may need installaware or installshield to build a .msi installer package.

AnotherTechnician
Offline
Beigetreten: 10/21/2010

The problem is when you have pdfcreator installed on a server - a couple of dozen/hundred/thousand users can log on... changing each users registry by hand would be a nightmare.

Better to just change a server setting, if possible.

Frank
Bild von Frank
Offline
DeveloperTranslator
Beigetreten: 05/05/2006

Read the help file please -> settings.

or use

[HKEY_LOCAL_MACHINE\Software\PDFCreator\Program]
"UpdateInterval"="0"

__________________

Frank Team pdfforge

AnotherTechnician
Offline
Beigetreten: 10/21/2010

Thanks for that.

I'm now going to hit the technical specialists with a clue-by-four - it's their fault that it's the standard install is used on the 60-odd TS servers, rather then the server install.

Looks like they're going to spend a weekend re-installing this on the farm. 

Oh well :)

Frank
Bild von Frank
Offline
DeveloperTranslator
Beigetreten: 05/05/2006

On a terminal server farm you must use the standard instalation!!! Set the HKLM setting manually.

__________________

Frank Team pdfforge

AnotherTechnician
Offline
Beigetreten: 10/21/2010

And HKLM will overwide HKCU?

windfire
Bild von windfire
Offline
Beigetreten: 12/25/2009

HKLM has higher priority than HKCU.

swhite78
Offline
Beigetreten: 10/05/2010

This registry key under HKLM no longer works for version 1.2.0 (this morning I was prompted for 1.2.1).

I have added the key under HKCU instead. Is this going to be enough?

Thanks.

bugmenot (nicht überprüft)

 the same with 1.3.1.

the key in HKLM don't work anymore!

 

can you solve in next update?

bugmenot (nicht überprüft)

You can set the value in the HKCU hive via group policies, as you do with any user specific setting. That also works for 7000 users.

bugmenot (nicht überprüft)

 a free software that require expensive windows server licences for a domain to change a reg key???

 
instead to fix the executable???
 
LOL
bugmenot (nicht überprüft)

 a simple unattended installation that require a domain infrastructure???

 
ROTFL
 
Troga
Offline
Beigetreten: 03/23/2012

It would be nice to have a command line setting, like -X that disables the Update Function for the whole installation.

We have the same problem on our Terminal Servers and the pop up's are annoying for our users,

because they can't update or download the lastest pdf creator.

 

Regards

Troga

Frank
Bild von Frank
Offline
DeveloperTranslator
Beigetreten: 05/05/2006
If you use the setup parameter /Regfile you can import each setting you want. For example if you want that no user get the update interval messagebox than create a regfile with this setting.

 

On 32 bit machines:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\Software\PDFCreator\Program]
"UpdateInterval"="0"
On 64 bit machines:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\PDFCreator\Program]
"UpdateInterval"="0"
Save the file as UpdateInterval.reg and try:
PDFCreator-1_3_2_setup.exe /RegFile="D:\UpdateInterval.reg"

Best regards,

 

__________________

Frank Team pdfforge