Jump to content

Necron

Moderators
  • Gesamte Inhalte

    11.546
  • Registriert seit

  • Letzter Besuch

Beiträge erstellt von Necron

  1. Hi,

     

    ganz wichtig es handelt sich derzeit dabei noch um die Azure Stack Technical Preview 3. Also auf keinen Fall um das fertige Produkt!

     

    Wie man Azure Stack TP3 installiert und einrichtet, findest du hier:

     

    -> https://docs.microsoft.com/en-us/azure/azure-stack/azure-stack-deploy-overview

     

    Um Usern Azure als Spielwiese zur Verfügung zu stellen sind Azure Testaccounts genau das Richtige, wie Nils schon schrieb.

  2. Hi,

     

    ich würde das Script eher mit einem Array aufbauen und mit New-Object arbeiten. Da hast du bei der Ausgabe deutlich mehr Flexibilität.

    $array=@()
    $A = get-distributiongroup
    foreach ($i in $A)
    {
     $G = (Get-DistributionGroup $i).member | measure
      $Info = New-Object PSObject -Property @{
        Name=$i.name
        Count=$G.count
      }
      $array +=$Info
     }
     $array|ft Name,Count
    
  3. Hi,

     

    hast du es schon einmal mit einem manuellen Full Sync probiert?

     

     

    Full sync cycle

    If you have made one of the following configuration changes, you need to run a full sync cycle (a.k.a. Initial):

    • Added more objects or attributes to be imported from a source directory
    • Made changes to the Synchronization rules
    • Changed filtering so a different number of objects should be included

    If you have made one of these changes, then you need to run a full sync cycle so the sync engine has the opportunity to reconsolidate the connector spaces. A full sync cycle includes the following steps:+

    • Full Import on all Connectors
    • Full Sync on all Connectors
    • Export on all Connectors

    To initiate a full sync cycle, run Start-ADSyncSyncCycle -PolicyType Initial from a PowerShell prompt. This command starts a full sync cycle.

    https://docs.microsoft.com/en-us/azure/active-directory/connect/active-directory-aadconnectsync-feature-scheduler#start-the-scheduler

  4. Hi,

     

    Thema im TechNet Guest OS support unter Windows Server 2016 Hyper-V. Die Integration Services müssen nach der Installation aktualisiert werden.

     

    -> https://technet.microsoft.com/en-us/windows-server-docs/compute/hyper-v/supported-windows-guest-operating-systems-for-hyper-v-on-windows

     

    Windows 7 with Service Pack 1 (SP 1): Upgrade the integration services after you set up the guest operating system. 

×
×
  • Neu erstellen...