I would like to let the users decide which language pack should be installed
on "their" system. With Vista this was no problem. But Microsoft doesn't
deliver MUI packs for Windows 7 through WSUS. What other options do I have?
It should be possible for a standard user (_NOT_ admin mit UAC).
I tried importing the language packs but this fails:
--
Dim iUpdateServer As IUpdateServer
Dim proxy As New AdminProxy
iUpdateServer = AdminProxy.GetUpdateServer("wsus", True)
Dim myStrArr() As String = {}
Try
iUpdateServer.ImportUpdateFromCatalogSite("1932080 6-4280-48FC-8AC7-145B5895EA89", myStrArr)
Catch ex As Exception
Console.WriteLine(ex)
Console.ReadKey()
Finally
iUpdateServer = Nothing
End Try
--
Microsoft.UpdateServices.Administration.WsusObject NotFoundException:
requested updates in GetRelatedRevisionsForUpdates do not exist on MU
bei
Microsoft.UpdateServices.Internal.BaseApi.SoapExce ptionProcessor.Deserial
izeAndThrow(SoapException soapException)
bei
Microsoft.UpdateServices.Internal.DatabaseAccess.A dminDataAccessProxy.Cat
alogSiteGetMetadataAndImport(Guid updateId, Byte[][] downloadedFileDigests)
bei
Microsoft.UpdateServices.Internal.BaseApi.UpdateSe rver.ImportUpdateFromCa
talogSite(String updateIdStr, String[] downloadedFilePaths)
bei ConsoleApplication1.Module1.Main() in
ConsoleApplication1\Module1.
vb:Zeile 10.
--