Ausblenden wie bei einer AD

Antworten
Sarah
Beiträge: 2
Registriert: 19 Feb 2014, 11:52

Ausblenden wie bei einer AD

Beitrag von Sarah »

Hallo zusammen.
Ich mache gerade eine Ausbildung zum FISI und bereite mein Projekt vor.
Möglicherweise habe ich das überlesen aber :

Ist es möglich über OPSI bestimmte Reiter im Windows auszublenden, z.B Spiele oder die Systemsteuerung?

Ich danke euch schon mal ganz herzlich


Eure

Sarah :)
r.witzel
Beiträge: 74
Registriert: 01 Aug 2011, 14:57
Wohnort: Melle

Re: Ausblenden wie bei einer AD

Beitrag von r.witzel »

Du müsstest die entsprechenden Registry-Einträge setzen bzw. über DISM die nicht gewollten Features deaktivieren.
Carpe Opsi :)
Benutzeravatar
n.wenselowski
Ex-uib-Team
Beiträge: 3194
Registriert: 04 Apr 2013, 12:15

Re: Ausblenden wie bei einer AD

Beitrag von n.wenselowski »

Hallo Sarah,

in der Regel würde man sich für so etwas ein OPSI-Produkt erstellen.
Das dazugehörige Setup-Script würde die entsprechenden Schritte ausführen (Aufrufe der Windows-API, DOS-Befehle, Registry anpassen, etc...).

Du müsstest also wissen, mit welchen Schritten man das von dir gewünschte umsetzen kann und dann ein entsprechendes Script schreiben. Eine Einführung ins Scripting ist unter http://download.uib.de/opsi_stable/doc/ ... n-tutorial beschrieben.


Gruß

Niko

Code: Alles auswählen

import OPSI
Benutzeravatar
ueluekmen
uib-Team
Beiträge: 1940
Registriert: 28 Mai 2008, 10:53

Re: Ausblenden wie bei einer AD

Beitrag von ueluekmen »

Hallo Sarah,

schau dir mal das Paket:

http://download.uib.de/opsi4.0/products ... 0.1-1.opsi

an. Dieses Paket ist als Vorlage für solche Customizing Aktionen gedacht.

Grüße

PS.: Viel Glück für die Abschlussprüfung.


Vielen Dank für die Nutzung von opsi. Im Forum ist unser Support begrenzt.

Für den professionellen Einsatz und individuelle Beratung empfehlen wir einen Support-Vertrag und eine Schulung.
Gerne informieren wir Sie zu unserem Angebot.

uib GmbH
Telefon: +49 6131 27561 0
E-Mail: sales@uib.de


Benutzeravatar
SisterOfMercy
Beiträge: 1556
Registriert: 22 Jun 2012, 19:18

Re: Ausblenden wie bei einer AD

Beitrag von SisterOfMercy »

I use remove, to remove several windows components before I place the install.wim on my OPSI server. This way you can remove certain features, so they will never be available, and do not take up space in the winsxs folder.

An other option is to change unattended.xml, and you make the beginning of the file look like this:

Code: Alles auswählen

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">

  <servicing>
    <package action="configure">
      <assemblyIdentity name="Microsoft-Windows-Foundation-Package" version="6.1.7601.17514" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="" />
        <selection name="InboxGames" state="false" />
        <selection name="Chess" state="false" />
        <selection name="FreeCell" state="false" />
        <selection name="Hearts" state="false" />
        <selection name="Internet Games" state="false" />
        <selection name="Minesweeper" state="false" />
        <selection name="More Games" state="false" />
        <selection name="PurblePlace" state="false" />
        <selection name="Shanghai" state="false" />
        <selection name="Solitaire" state="false" />
        <selection name="SpiderSolitaire" state="false" />
        <selection name="Indexing-Service-Package" state="false" />
        <selection name="Internet-Explorer-Optional-amd64" state="false" />
        <selection name="NetFx3" state="false" />
        <selection name="Printing-Foundation-Features" state="false" />
        <selection name="MSRDC-Infrastructure" state="false" />
        <selection name="TabletPCOC" state="false" />
        <selection name="TelnetClient" state="false" />
        <selection name="TelnetServer" state="false" />
        <selection name="TIFFIFilter" state="false" />
        <selection name="WindowsGadgetPlatform" state="false" /> 
        <selection name="Xps-Foundation-Xps-Viewer" state="false" />
        <selection name="Printing-XPSServices-Features" state="false" />
        <selection name="SearchEngine-Client-Package" state="false" />
    </package>
  </servicing>
I think the servicing part of the xml can not be in a different position. I'm not sure, but why bother. Of course you would have to edit the assemblyIdentity line to your own version.

Also an option is to use 'group policies', and a registry scanner. This way you can find a lot of the registry settings for different policies. For example:

Code: Alles auswählen

; Disable Location and location sensors
openkey [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\LocationAndSensors]
set "DisableLocation" = REG_DWORD:00000001
set "DisableSensors" = REG_DWORD:00000001
Bitte schreiben Sie Deutsch, when I'm responding in the German-speaking part of the forum!
Antworten