Die Suche ergab 145 Treffer

von bourhis
07 Sep 2026, 10:03
Forum: Free Support
Thema: [resolved] Howto use a "winget" command via "Opsi" ?
Antworten: 3
Zugriffe: 99411

Re: Howto use a "winget" command via "Opsi" ?

Hello,

I can work around the problem by running a “PowerShell” script in a “Dosbatch” section:

PowerShell.exe -ExecutionPolicy Unrestricted -command “%ScriptPath%\widgets.ps1”

where the script simply contains (for example):

winget uninstall “Windows Web Experience Pack” --silent --accept ...
von bourhis
03 Sep 2026, 13:25
Forum: Free Support
Thema: [resolved] Installation of "msix" package
Antworten: 2
Zugriffe: 887

Re: [resolved] Installation of "msix" package

In this case (one line PowerShell script) you can execute it directly in the "Dosbatch" section :

Code: Alles auswählen

PowerShell.exe -ExecutionPolicy Unrestricted -command "Add-AppxProvisionedPackage -Online -SkipLicense -PackagePath '\\myserver\myshare\myfile.msix'"
von bourhis
03 Sep 2026, 11:37
Forum: Free Support
Thema: [resolved] Installation of "msix" package
Antworten: 2
Zugriffe: 887

Re: Installation of "msix" package

I find a solution by creating a PowerShell script containing :

Code: Alles auswählen

Add-AppxProvisionedPackage -Online -SkipLicense -PackagePath "\\myserver\myshare\myfile.msix"
and, in a Dosbatch section :

Code: Alles auswählen

PowerShell.exe -ExecutionPolicy Unrestricted -command "%ScriptPath%\myscript.ps1"
von bourhis
03 Sep 2026, 10:03
Forum: Free Support
Thema: [resolved] Installation of "msix" package
Antworten: 2
Zugriffe: 887

[resolved] Installation of "msix" package

Hi,

how do I silently install an "msix" package using "Opsi" ?
I tried this in a "Dosbatch" or "Winbatch" section :

Add-AppxProvisionedPackage -Online -SkipLicense -PackagePath "C:\tmp\mypackage.msix"

but it doesn't works because "Add-AppxProvisionedPackage" is not a recognized command (only ...
von bourhis
04 Mai 2026, 12:01
Forum: Free Support
Thema: JavaVM License: migration to OpenJDK?
Antworten: 1
Zugriffe: 6042

JavaVM License: migration to OpenJDK?

Hi,

It seems the terms of use for the "Oracle Java Runtime Environment" have changed and now require a license in most cases.

In any case, my university is asking me to replace it as soon as possible with "OpenJDK" (https://openjdk.org/) in order not to have to pay a "site license".

Here's my ...
von bourhis
09 Apr 2026, 09:31
Forum: Free Support
Thema: [resolved] "opsi-client-agent": startup timeout issue ("Waiting for certified installer")
Antworten: 1
Zugriffe: 16487

[resolved] "opsi-client-agent": startup timeout issue ("Waiting for certified installer")

Hello,

Since updating "opsi-client-agent" to version 4.3.17.10-1, it seems to regularly freeze on "Waiting for certified installer": it can take several minutes to start (after which everything works normally).

Is this a problem on my server or with this version of the client?
If it's a local ...
von bourhis
31 Mär 2026, 16:20
Forum: Free Support
Thema: [resolved] Error with opsi-package-updater
Antworten: 1
Zugriffe: 98237

Re: Error with opsi-package-updater

Hi,

I found a solution; instead of running:

Code: Alles auswählen

opsi-package-updater -v update
I first downloaded the new version of the package, before forcing its installation:

Code: Alles auswählen

opsi-package-updater -v download
opsi-package-manager --force --install win11-x64_4.3.0.6-1.opsi
Regards
von bourhis
31 Mär 2026, 14:19
Forum: Free Support
Thema: [resolved] Problem with "invalid main GPT header" installing netboot product
Antworten: 1
Zugriffe: 33254

[resolved] Problem with "invalid main GPT header" installing netboot product

Hi,

when I try to install "win11-x64" netboot product, during the step "Create new partition table on /dev/sda", I frequently obtain this error message :

RuntimeError("Command '/usr/sbin/sgdisk --clear -g -p /dev/sda' failed (2):
Caution: invalid main GPT header, but valid backup; regenerating ...
von bourhis
30 Mär 2026, 14:30
Forum: Free Support
Thema: [resolved] Error with opsi-package-updater
Antworten: 1
Zugriffe: 98237

[resolved] Error with opsi-package-updater

Hi,

when I tried to update my package with "opsi-package-updater -v update" I have this error :
Opsi rpc error: Backend error: Failed to install package '/var/lib/opsi/repository/win11-x64_4.3.0.6-1.opsi' on depot 'bropsi.iutb.univ-brest.fr': Backend temporary error: Product 'win11-x64' currently ...
von bourhis
10 Mär 2026, 13:51
Forum: Free Support
Thema: Autodesk 2026 instalations
Antworten: 4
Zugriffe: 151409

Re: Autodesk 2026 instalations

Hi,

I don't have any problems installing AutoCAD 2026 except that, sometimes, the installer seems to freeze and I have to reboot the PC and manually set the installation status to "installed" (via "opsi-configed").

I'm performing a standard installation with:
setup.exe -q

Regards.