Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Empfohlene Antworten

Veröffentlicht

Wie kann ich ein Ordner in der Registry mit Befehl erstellen? 

Folgendes Problem, ich kann diesen Befehl: 

New-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" -Name NoTaskGrouping -Value 1

nicht ausführen, da der Ordner "Explorer" in dem Pfad nicht vorhanden ist:

New-ItemProperty : Der Pfad "HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" kann nicht gefunden werden, da er nicht vorhanden ist.
In Zeile:1 Zeichen:1
+ New-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersi ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (HKCU:\Software\...licies\Explorer:String) [New-ItemProperty], ItemNotFoundException
    + FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.NewItemPropertyCommand

Ich benötige also ein Skript, womit ich den Ordner Explorer vorher erstellen kann unter "HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies".

  • Autor

Vielen Dank, aber wie kann ich damit an dieser Stelle:2023-08-2511_25_02-Window.png.fd10e7c60eae2e7de2f7c09f59102d69.png
einen Unterordner erstellen?
Ich finde die Parameter nicht, welche angeben, dass in der Registry ein Ordner erstellt werden soll. 

  • Autor
vor 36 Minuten schrieb _n4p_:

Test-Path und New-Item werden dir helfen 

Okay habe es herausgefunden: 


New-Item -ItemType directory -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer

Vielen Dank, Problem gelöst. 😅

  • Autor

Lösung: 

if(!(Test-Path -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer ))
{
New-Item -ItemType directory -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
}
New-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" -Name NoTaskGrouping -Value 1

Erstelle ein Konto oder melde dich an, um einen Kommentar zu schreiben.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.