How to Find Your Public IP Address
A collection of methods to retrieve your public IP address using command-line tools like nslookup, curl, and PowerShell, as well as web-based solutions.

Term Archive
Entries connected to "PowerShell", gathered in one place for quick browsing.
A collection of methods to retrieve your public IP address using command-line tools like nslookup, curl, and PowerShell, as well as web-based solutions.

A comprehensive guide to exporting and visualizing Windows folder permissions using PowerShell and Python, including treemap visualizations of user access rights.

A PowerShell script that generates an HTML diagnostics report for user lockouts in Active Directory, including password age, expiration details, and account status.

Steps to take when N-Central’s Take Control remote access feature isn’t working, including how to restart the necessary services.

Install Windows Updates with the PSWindowsUpdate PowerShell module.

This blog post discusses a PowerShell script that can map a network drive using a Security Identifier (SID), even without being logged in as that user.

A comparison of efficient one-liner commands in both Shell and PowerShell for joining workstations to Active Directory domains with proper credential handling and automatic restart functionality.

A comprehensive collection of PowerShell scripts for managing Windows Access Control Lists (ACLs), including permission enumeration, modification, and analysis tools with detailed permission descriptions.

A comprehensive guide to managing user visibility in the Global Address List (GAL) using PowerShell, covering both on-premises Active Directory and Exchange Online environments with detailed scripts for checking and modifying the msExchHideFromAddressLists attribute.

A comprehensive collection of Windows troubleshooting and repair tools including DISM, SFC, DLL registration commands, and PowerShell scripts for reinstalling Windows apps.

PowerShell scripts for Microsoft Teams stuff. Get all owners of all teams and team channels ## Documentation: https://learn.microsoft.com/en-us/powershell/module/teams/?view=teams-ps # Run the following command to install the latest PowerShellGet: Install-Module -Name PowerShellGet -Force -AllowClobber # Install the Teams PowerShell Module. Install-Module -Name MicrosoftTeams -Force -AllowClobber # To start working with Microsoft Teams PowerShell module, sign in with your Azure credentials. Connect-MicrosoftTeams $user =Read-Host -Prompt 'Input the user name' $teams = Get-Team -User $user $teamMemberships=@() $teamChannels=@() $teamChannelMemberships=@() $i = 1 $teamMemberships = foreach ($team in $teams) { $GroupId = $team.GroupId Get-TeamUser -GroupId $GroupId | Select-Object *,@{Name="GroupId";Expression={$GroupId}} $channels = Get-TeamAllChannel -GroupId $GroupId | Select-Object *,@{Name="GroupId";Expression={$GroupId}} $teamChannels += $channels $teamChannelMemberships += foreach ($channel in $channels) { $channelDisplayName = $channel.DisplayName Get-TeamChannelUser -GroupId $GroupId -DisplayName $channelDisplayName | Select-Object *,@{Name="GroupId";Expression={$GroupId}} } $percent = [Math]::Round((100 * $i) / $teams.Length) Write-Progress -Activity "Search in Progress" -Status "$percent% complete" $i++ } $teams | Export-Csv -Path "teams.csv" -NoTypeInformation $teamMemberships | Export-Csv -Path "team-memberships.csv" -NoTypeInformation $teamChannels | Export-Csv -Path "team-channels.csv" -NoTypeInformation $teamChannelMemberShips | Export-Csv -Path "team-channel-memberships.csv" -NoTypeInformation

Microsoft LAPS (Local Administrator Password Solution) is a tool designed to securely manage local administrator account passwords on Windows domain-joined computers. It automates password generation and rotation, and stores passwords in a secure manner, providing greater control and security over local accounts.

More to Browse
Relationship Map
Use the relationship map to follow related categories, tags, and entries beyond the current list.
Matching entries