Powershell Werkzeuge eines Admins
Die Tools die ein Admin zur Verwaltung seines Environments benötigt, sind…
Powershell Version 7.5.x
Remote Server Administration Tools
Remote Server Administration Tools per Powershell installieren
Mindestes Windows 10 v1803 wird vorausgesetzt
- Get-WindowsCapability -Online | ? Name -like RSAT* | FT
- Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability -Online
- Get-WindowsCapability -Online | ? ($_.Name -like “RSAT*” -and $_.State -eq “NotPresent”} | Add-WindowsCapability -Online
Powershell-Skripten ausnahmslos in der Ausführung vertrauen
- Set-ExecutionPolicy Unrestricted -Force
PS Paketverwaltung
- Install-Module -Name PowerShellGet -Force -Verbose
- Set-PSRepository -Name ‘PSGallery’ -InstallationPolicy Trusted
- Install-Module PSReadline -Verbose
- Install-PackageProvider -Name NuGet -Verbose
- Install-Module -Name Docker -Verbose
- Register-PackageSource -Name chocolatey -ProviderName Chocolatey -Location https://chocolatey.org/api/v2/
- Install-Package -Name Sysinternals
- Get-PackageSource
Azure Powershell Module
- Install-Module -Name Azure -Repository PSGallery -Force -Verbose
- Install-Module -Name AzureAD -Verbose
- Install-Module -Name Az -AllowClobber
- Install-Module -Name AzureADPreview -Verbose
- Install-Module -Name Microsoft.Azure.ActiveDirectory.PIM.PSModule -Verbose
- Install-Module -Name xPSDesiredStateConfiguration -Verbose
Azure Active Directory Connect
Windows Updates verwalten
- Install-Module -Name PSWindowsUpdate -Verbose
O365
Setzt Windows 10 und das .NET Framework 3.5 voraus
Azure Active Directory Modul
- Install-Module MSOnline -Verbose
Exchange Online
Exchange Online Remote Powershell MFA. Download über das Exchange Admin Center
Windows Remote Management Basic Authentication aktivieren
- winrm get winrm/config/client/auth
- winrm set winrm/config/client/auth @{Basic=”true”}
SharePoint Online
- SharePoint Online Management Shell
- Install-Module SharePointPnPPowerShellOnline
- Install-Module SharePointPnPPowerShell2016
- Update-Module SharePointPnPPowerShell*
Windows Virtual Desktop
- Install-Module -Name Microsoft.RDInfra.RDPowershell
Update Powershell Module
- Update-Help
- Update-Module
Admin Tools
- Active Directory Gruppen Manager
- AuditPol Manager Pro
- Certificate Manager Pro
- CVE Scanner NIST DATABASE
- Exchange SMTP Security Analyzer
- Exchange SMTP Test Tool
- Passwort Generator Pro Enterprise
- GMSA & MSA Management
- GPO Manager Backup & Restore
- GPO Security Filtering Manager
- MS Office zu LibreOffice Konverter bidirektional
- Security Advisory Board
- Security Configuration Manager (BSI/NIST)
- Server Session Manager
- Static Route Manager
- Windows Live-Event-Monitor Remote Edition
- WinRM Management Tool
- Windows Services Manager Pro

