Quantcast
Channel: Wsus Package Publisher
Viewing all 3825 articles
Browse latest View live

New Post: How to do custom command line?


Commented Unassigned: Deleted packages not updating on replica server [274]

$
0
0
Hello All,
I have created the package on WSUS server and published it listed on replica..
It has installed on all the clients, now i have deleted the package..it deleted in Upstream server but not on the replica server... Any idea why replica is not updating?

Comments: Hi, Deletion is not a replicate activity. you have to delete old package by your self. Connect to your replica Wsus, right cick on an update and choose "Delete" (The update must NOT be approved)

New Post: How to do custom command line?

$
0
0
Ha! Thanks! I really appreciate your reply. Now I feel really stupid though (through entirely my own fault). :) Somehow I totally missed seeing that Command Line field. Duh!

Commented Unassigned: Deleted packages not updating on replica server [274]

$
0
0
Hello All,
I have created the package on WSUS server and published it listed on replica..
It has installed on all the clients, now i have deleted the package..it deleted in Upstream server but not on the replica server... Any idea why replica is not updating?

Comments: Thanks Courtel, It worked :) But how about the approved ones? As i have deleted from upstream server i am unable to change the status to "not approved". And one more thing, i am try to push the skype update (Skype 7.7.0.102), package listing on replica server but i am not get at client machines, i think nothing wrong with the wpp or with the clients because along with skype i have pushed google chrome. i can see google chrome but not skype.. Please help me..

Commented Unassigned: Deleted packages not updating on replica server [274]

$
0
0
Hello All,
I have created the package on WSUS server and published it listed on replica..
It has installed on all the clients, now i have deleted the package..it deleted in Upstream server but not on the replica server... Any idea why replica is not updating?

Comments: > But how about the approved ones? As i have deleted from upstream server i am unable to change the status to "not approved". Interesting question. Even after synchronising with upstream server, the package is still approved ? > package listing on replica server but i am not get at client machines How this package is reported on the WPP console : Unknown, Installed, Not installed, Not applicable ? What do you have set as IsInstalled/IsInstallable Rules ?

New Post: SCUP Catalog for Reader DC?

$
0
0
Do you know if Adobe will be releasing a SCUP Catalog for Acrobat Reader DC and its professional counterparts so that they can be updated through Package Publisher?

New Post: SCUP Catalog for Reader DC?

Created Unassigned: Workstations not showing online in WPP but are [275]

$
0
0
I currently am having a issue with WPP... I have the recent update, but for some odd reason, almost all of the PC's are showing up as Offline in WPP... I am not sure why this is or if there is a issue. I am unable to push published update for testing first in WPP becuase of this.. Any help would be appreciated... Thanks

~J

Commented Unassigned: Workstations not showing online in WPP but are [275]

$
0
0
I currently am having a issue with WPP... I have the recent update, but for some odd reason, almost all of the PC's are showing up as Offline in WPP... I am not sure why this is or if there is a issue. I am unable to push published update for testing first in WPP becuase of this.. Any help would be appreciated... Thanks

~J
Comments: WPP simply rely on Ping command to test if the computer is online or not. So ensure thatyour Workstation answer to Ping request (firewall, etc...)

Created Unassigned: Possible to update folder's with files [276]

$
0
0
Good Afternoon,

I have been trying to find information on how use WPP to push out files to certain folders, or even push a folder with files to a workstation. Our GPO, unfortunately is causing some issues with slowness on some items.

How, if possible, can you push a folder with files on a Workstation using WPP.

Also could you place new font files in the fonts folder using WPP?

Just looking for other avenues other than GPO.. Thank you.

~J

Commented Unassigned: Deleted packages not updating on replica server [274]

$
0
0
Hello All,
I have created the package on WSUS server and published it listed on replica..
It has installed on all the clients, now i have deleted the package..it deleted in Upstream server but not on the replica server... Any idea why replica is not updating?

Comments: Even after synchronising with upstream server, the package is still approved ? Yes, still the same :( How this package is reported on the WPP console : Unknown, Installed, Not installed, Not applicable ? What do you have set as IsInstalled/IsInstallable Rules ? Status "unknown".. I havnt changed any rules, i used the same doc as published in this site for adobe flash player.. It worked for previous version of Skype, i dont know whats wrong with this

Commented Unassigned: Deleted packages not updating on replica server [274]

$
0
0
Hello All,
I have created the package on WSUS server and published it listed on replica..
It has installed on all the clients, now i have deleted the package..it deleted in Upstream server but not on the replica server... Any idea why replica is not updating?

Comments: "unknown" status mean that Workstations haven't reported yet for this package. They might have some difficulties to communicate with your Wsus server or to evaluate logical rules. You can try to turn on Wuauclt debug log and see if you can find more informations.

Commented Unassigned: Possible to update folder's with files [276]

$
0
0
Good Afternoon,

I have been trying to find information on how use WPP to push out files to certain folders, or even push a folder with files to a workstation. Our GPO, unfortunately is causing some issues with slowness on some items.

How, if possible, can you push a folder with files on a Workstation using WPP.

Also could you place new font files in the fonts folder using WPP?

Just looking for other avenues other than GPO.. Thank you.

~J
Comments: You have to create a Custom Update and use either : - Add folder and Cpoy files or - Run a VbScript/Powershell

Commented Unassigned: Deleted packages not updating on replica server [274]

$
0
0
Hello All,
I have created the package on WSUS server and published it listed on replica..
It has installed on all the clients, now i have deleted the package..it deleted in Upstream server but not on the replica server... Any idea why replica is not updating?

Comments: I have pushed this package to more than 100 machines, it didnt hit non of the machine.. the google chrome package which i pushed next to this has hit all the machines.. Where can i enable the debug log ?

New Post: Java 1.8.51 error 0x80070643

$
0
0
Hi, thanks for the log file. It clearly confirm what I was thinking.
The given executable file not a valid Win32 application.
You set :
<ElementType>CustomUpdateElements.ExecutableElement</ElementType> 
<PathToExecutable>jre1.8.0_51.msi</PathToExecutable> 
<Parameters>/i jre1.8.0_51.msi /quiet /norestart AUTOUPDATECHECK=0 WEB_JAVA=1 JAVAUPDATE=0 JU=0 </Parameters> 
But you cannot RUN an .MSI file, you need to OPEN it with MsiExec.exe. As you cannot RUN an .XLS file, you need to OPEN it with Excel.exe.

So you should write :
<ElementType>CustomUpdateElements.ExecutableElement</ElementType> 
<PathToExecutable>%windir%\System32\msiexec.exe</PathToExecutable> 
<Parameters>/i jre1.8.0_51.msi /quiet /norestart AUTOUPDATECHECK=0 WEB_JAVA=1 JAVAUPDATE=0 JU=0 </Parameters>

Commented Unassigned: Settings for Adobe Acrobat Reader DC .msp Patch [277]

$
0
0
Good Morning.

I have built a custom Update for the New Adobe Acrobat Reader DC version.. I do have a issue which may be a setting I did not know about since this is the first .msp I have pushed. Our Test PC's see the package, install it, but then it will keep seeing it and install it again.. Is there a setting that needs to be done for a .msp that after it is installed, it will not try to keep downloading as an update..

Any advice is appreciated..

Thanks

~J
Comments: Hi, First why do you create a Custom Update instead of a classic update ? What "Actions' do you have set in this Custom Update ? Secondly, if clients computers try to install again, that means they have evalued the "IsInstalled" rule to False and the "IsInstallable" to True. So, what do you have set as "IsInstalled"/"IsInstallable" rules ?

New Post: Adobe Flash Plugin stays in 'Not Installed'

$
0
0
Hi, your rules looks like ok. You can try search for these registry key to see if they exists :
<sdp:IsInstallable> 
   <lar:And> 
      <bar:RegSzToVersion RegType32="true" Data="18.0.0.209" Comparison="LessThan" Value="Version" Subkey="Software\Macromedia\FlashPlayerPlugin" Key="HKEY_LOCAL_MACHINE"/>
      <bar:RegKeyExists RegType32="true" Subkey="Software\Macromedia\FlashPlayerPlugin" Key="HKEY_LOCAL_MACHINE"/>
   </lar:And> 
</sdp:IsInstallable>
Also, you can edit the update and look at the metadata of the MSI file. There is some "IsInstallable" rules in it.

Commented Unassigned: Settings for Adobe Acrobat Reader DC .msp Patch [277]

$
0
0
Good Morning.

I have built a custom Update for the New Adobe Acrobat Reader DC version.. I do have a issue which may be a setting I did not know about since this is the first .msp I have pushed. Our Test PC's see the package, install it, but then it will keep seeing it and install it again.. Is there a setting that needs to be done for a .msp that after it is installed, it will not try to keep downloading as an update..

Any advice is appreciated..

Thanks

~J
Comments: I have always used Custom Update which I got from documentation on here.. I do not know where the "isinstall" rule and isinstallable" rule exists... This may be my issue.. Can you let me know where this exist.. This is my first .msp package I have built and rest have been .msi packages.. Thanks

New Post: WPP crashs wen open Adobe Catalog

$
0
0
Hello, i got the same Problem with Flash update 18.0.0.209.

I used WPP release 1.3.1504.15. Changing Language to englisch (from german) doesn´t work.

Are there other ways to solve the problem?

Thank you!

New Post: WPP crashs wen open Adobe Catalog

$
0
0
WPP zwischendurch neu gestartet ?
Und du hast nur das letzte Update angewählt ?
Ich habe 18..0.0.209 vor ein paar Tagen ausgerollt, im "deutschen" WPP. Hatte keine Auffälligkeiten.
Nochmal komplett löschen, von vorne anfangen und neu importieren.
Viewing all 3825 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>