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

New Post: How To Update von WPP

$
0
0
Das ZIP downloaden, entpacken. Ist eine Options.xml enthalten, die nicht mitkopieren, den Rest kannst Du einfach bei geschlossenem WPP per Copy and Paste aktualisieren.

New Post: Java 8 updates

$
0
0
for me, the last Java release 8 update 91 msi (from %userprofile%\AppData\LocalLow\Oracle\Java) works with the commandline Switch REMOVEOLDERJRES=1.

All Switches together does not work.

INSTALL_SILENT=Enable AUTO_UPDATE=Disable WEB_ANALYTICS=Disable EULA=Disable REBOOT=Disable NOSTARTMENU=Enable WEB_JAVA=Enable WEB_JAVA_SECURITY_LEVEL=H SPONSORS=Disable REMOVEOLDERJRES=1

New Post: Java Uninstall2Install -> Client restart

$
0
0
Diesmal scheint mit dem Eintrag kein Neustart erfolgt zu sein.
Ich habe das neue Java Update noch nicht auf alle Gruppen ausgerollt, aber bis jetzt ist alles gut.

New Post: Wmi query Rule

$
0
0
Hello!

I'm back only to explain my action in waiting to have time for fix the query problem in WPP.

The computers is organized by GPOs (Enable client-side targeting).
For no-stop the deploy of the new release of Java and preserve the 3 client with the old version { :-( }. I have worked in AD creating a Group "3PC-NoJavaUpd" and i have put it in the delegation of the standard Wsus-GPo with deny on 'Apply group policy'. In meantime, another Gpo client-side targeting "3PC-NoJavaUpd" with a WMI Filter i have redirect the 3 computer in a new group in Wsus and isolated them.

Roberto

New Post: Identifying new updates from catalog

$
0
0
I have 7 catalogs in my WPP installation. One of them is the PacthMyPC catalog and supplies several hundred product updates. When I am notified that there are new updates available, I can see the specific products that have updates within the catalog. When I select to open the catalog, the list goes away.

Is there a way to identify new updates from the catalog after that initial window is closed?

Since you can't navigate between the main WPP window and the Catalog window, there is no way to identify new updates from ones that are already published without going in and out of the catalog for each of the 100 products in the catalog. I also cannot open two instances of WPP so one can be on the main window and one on the catalog window.

What am I missing?

New Post: How To Update von WPP

$
0
0
Hallo Winfried,
perfekt, vielen Dank und nochmals sorry, das Forum mit solchen Basics zu "beglücken" :-)

New Post: Problem to deploy custom update on windows server 2012R2

$
0
0
Hello,
Sorry for this long absence.

Thanks WinfriedSonntag for the idea. I've write a PowerShell script to deploy any feature from the cloud or another source. And I write a bat script to install framework3.5 by a GPO at the strating of Windows.

This is my little contribution ^^

Here is the enable_feature.ps1
# author : 
# version : 1.3
# date : 31/03/2016
# description : Enable feature for windows 2012 by GPO
# Warning you can't use the c$ or d$ for the source, it fail because of the '$' caracter

Param([string]$feature,[string]$source)

$logfile=$env:temp+"/enable_feature_$feature.log"
#$virtual_drive="S:"

# Import ServerManager Module
Import-Module ServerManager
$returnCode=0

try {
    $checkFeature = Get-WindowsFeature | Where-Object {$_.Name -eq $feature}
}
catch [System.Exception] {
    "Error to get windows feature $_.Exception.Message" | Out-File -Append $logfile
    $exitCode=2
}

#check and instal feature
If ($checkFeature.Installed -ne "True" )  {  
    if ($source -ne "") {
        try {
            "Adding $feature" | Out-File -Append $logfile
            # Add-WindowsFeature $feature -source $virtual_drive+"\sxs" | Out-File -Append $logfile
            Add-WindowsFeature $feature -source $source | Out-File -Append $logfile
        }
        catch [System.Exception] {
            "Error to add Windows feature with alternative source $virtual_drive - $_.Exception.Message" | Out-File -Append $logfile
            $exitCode=22
        }
    }
    else {
        try {
            Add-WindowsFeature $feature | Out-File -Append $logfile
        }
        catch [System.Exception] {
            "Error to add Windows feature $_.Exception.Message" | Out-File -Append $logfile
            $exitCode=24
        }
    }
    #check if install correct
    $checkFeature = Get-WindowsFeature | Where-Object {
        $_.Name -eq "$feature"
    }
    If ($checkFeature.Installed -ne "True") {
        "Error to install $feature" | Out-File -Append $logfile
        $returnCode=1
    }
}
else {
    "$feature always installed!" | Out-File -Append $logfile
}

exit $returnCode
And here is the bat script to specified which feature to install : framework 3.5
@echo off
copy /Y \\YOUR DOMAIN\sysvol\YOUR DOMAIN\scripts\enable_feature.ps1 c:\
powershell c:\enable_feature.ps1 -feature "NET-Framework-Features" -source "\\YOURWSUS.YOUR DOMAIN\Windows-2012R2x64-sxs\sxs"
rem powershell c:\enable_feature.ps1 -feature "NET-Framework-Core" -source "\\YOURWSUS.YOUR DOMAIN\d$\Windows-2012R2x64-sxs\sxs"
del c:\enable_feature.ps1
And I've add a "fake" custom update, only to see if framework3.5 is correctly installed by the GPO :
I check the same registry value in the "installed" and in the "installable" :
SOFTWARE\Microsoft\NET Framework Setup\NDP\v3.5\Install
1
REG_DWORD

Result :
  • when framework3.5 is not installed, the wsus publisher said "not applicable"
  • when framework3.5 is installed, the wsus publisher said "installed"
Here the screenshots :
Image
Image
Image
Image

Regards,
Gaëtan

PS : I see CustomUpdateEngine is compiled in .Net Framework 4.0 in next Version of WPP, thanks to the author!

New Post: Problem to deploy custom update on windows server 2012R2

$
0
0
Thanks Gaëtan for your Posting and your Solution! :)

New Post: Updatefehler Code 800B0109

$
0
0
Hallo,
ich habe das Zertifikat von dem Client gelöscht und über die Policy verteilen lassen, leider weiterhin ohne daß die Updates installiert wurden. Ich habe danach nochmal per gpresult die Einstellungen zwischen dem Client, der die Updates installiert und dem Client der die Updates nicht installiert verglichen und keine Unterschiede festgestellt.

Danach habe ich den Punkt "Signierte Updates aus einem Intranetspeicherort für Microsoft-Updatedienste zulassen" auf aktiviert umgestellt, da dieser Punkt bisher unternehmensweit auf deaktiviert stand.... und siehe da, die Updates wurden ohne weitere Fehler installiert.

Vielen Dank für die Unterstützung. Was ich allerdings nicht verstehe, daß trotz der Einstellung auf "deaktiviert" ein Teil der Clients die Updates installieren konnte...

Viele Grüße
pfeifera

New Post: Updatefehler Code 800B0109

$
0
0
Na wunderbar, Hauptsache es funktioniert jetzt. ;)

Normalerweise installiert ein Client 3rd Party Produkte vom WSUS nur, wenn auch diese Einstellung gesetzt ist. Evtl. habt ihr die Einstellung auf den Clients ja im Image mit GPEDIT.MSC manuell gesetzt.

New Post: How to ....?

$
0
0
Colleagues Good afternoon, tell me whether it is possible to set up WPP so he took the program from the network, and not from the server on which it is installed.

Thank you!

Photo

New Post: How to ....?

$
0
0
Which Version of WPP you are using?

New Post: How to ....?

$
0
0
Good morning, I use last release v1.3.1603.29.

New Post: Desktopverknüpfung verteilen

$
0
0
Ok, da es irgendwie mit der Prüfung ob die Verknüpfung angelegt ist im Regelwerk nicht klappen wollte, habe ich auf die Mechanismen der Konkurrenz zurückgegriffen und verteile die Verknüpfung nun per GPO. Auch nicht verkehrt.

Wäre trotzdem daran interessiert wie eine Regel aussehen muss die auf die Exsistenz einer Desktopverknüpfung prüft.

New Post: Desktopverknüpfung verteilen

$
0
0
GPO ist keine Konkurenz zum WSUS. Und normalerweise nutze ich auch GPPs um Verknüpfungen auf Clients zu erstellen.
Zum Starten der EXE könntest Du ja auch einen Eintrag aus dem Taskplaner verwenden, vorher den Eintrag im Taskplaner per GPP erstellen. ;)

Und wie ich schon schrub, eine Desktopverknüpfung ist auch nur eine Datei im Dateisystem. Prüfe auf deren Existenz, HowTos hab ich dir schon gepostet, umsetzen kann es für dich nicht auch noch.

New Post: How to ....?

$
0
0
Wow, i never use at this place UNC-Path, ok, pls create a issue. I hope the Developer, David, will bring the feature in the next release. ;)

New Post: How to ....?

Created Unassigned: UNC-Path not supported [337]

$
0
0
Good afternoon, a question WPP is it possible in future versions supporting network paths? For example I do not possible to store all the software on a single server with WPP and I would like to work with network storage.


[Screen](http://imgur.com/qI0zHfB)

New Post: Flash Install / Uninstall guide

New Post: Flash Install / Uninstall guide

$
0
0
And don't forget licensing ( fast and free, no problem ) if you use the .msi's from Adobe for deploying.

Not nessasary to create a .bat file if you can use adobes installation files directly, realy.
Viewing all 3825 articles
Browse latest View live


Latest Images